@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&family=Teko:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #ffaa17;
    --primary-rgb: 255, 170, 23;
    --primary-dark: #e19200;
    --secondary: #222429;
    --bg: #ffffff;
    --card-bg: #f8f8f8;
    --text: #686a6f;
    --text-muted: #888888;
    --thm-black: #222429;
    --container-width: 1200px;
    --nav-height: 90px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Rubik', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    color: var(--thm-black);
    font-weight: 500;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 20px;
    height: 100%;
    background: var(--thm-black);
    opacity: 0.1;
    transform: skewX(-20deg);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    right: 0;
    width: 100%;
    transform: skewX(0);
    opacity: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--thm-black);
}

.btn-primary:hover {
    color: #ffffff;
}

.btn-secondary {
    background-color: var(--thm-black);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--thm-black);
}

/* Header & Nav */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    position: fixed;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 80px;
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.header.scrolled .nav-links a {
    color: var(--thm-black);
}

.nav-links a:hover {
    color: var(--primary);
}

.header.scrolled .nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #ffffff;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.dot {
    color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    padding: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.service-image {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem 1rem;
}

.service-info h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 500;
}

.service-info p {
    color: var(--text);
    font-size: 1rem;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin-top: 2rem;
}

.stats li {
    display: flex;
    flex-direction: column;
}

.stats strong {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: 'Teko', sans-serif;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 0 var(--primary);
    margin-right: 20px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 5rem 4rem;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: calc(3.5rem * 1.2 + 1.5rem + 1.8rem * 1.8 + 2rem);
}

.contact-form-wrapper form {
    margin-top: 0;
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0;
}

.contact-details {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--thm-black);
    font-weight: 500;
    font-size: 1.2rem;
}

.contact-details a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 1.2rem;
    color: var(--thm-black);
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-response {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-response.success {
    display: block;
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}

.form-response.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background-color: #f8f8f8;
    color: var(--thm-black);
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--thm-black);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 170, 23, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    background: var(--primary);
    color: var(--thm-black);
    text-decoration: none;
    border-radius: 50px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(255, 170, 23, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    max-width: 60px;
}

.floating-contact:hover {
    max-width: 250px;
    padding-right: 25px;
}

.floating-contact .phone-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.floating-contact .number {
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-left: 15px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.floating-contact:hover .number {
    opacity: 1;
    transform: translateX(0);
}

.floating-contact .pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50px;
    z-index: -1;
    animation: floating-pulse 2s infinite;
}

@keyframes floating-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition);
}

.header.scrolled .nav-toggle span {
    background-color: var(--thm-black);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 968px) {
    :root {
        --nav-height: 70px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        margin-right: 0;
        box-shadow: 15px 15px 0 var(--primary);
        order: -1;
    }

    .stats {
        gap: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--thm-black);
        font-size: 1.8rem;
    }

    .nav-toggle {
        display: flex;
        order: 3;
    }

    .nav-toggle.active span {
        background-color: var(--thm-black);
    }

    .nav-btn {
        display: none;
    }

    .contact-card {
        padding: 3rem 1.5rem;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        /* Further reduced height for small mobile */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .footer {
        padding: 3rem 0;
    }
}

body.no-scroll {
    overflow: hidden;
}

/* SEO Text Section */
.seo-text {
    background-color: #f8f8f8;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: flex-start;
}

.seo-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.seo-text h3 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-text p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text);
}

.seo-text ul {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.seo-text li {
    margin-bottom: 0.6rem;
    color: var(--text);
}

.seo-image {
    position: sticky;
    top: 100px;
}

.seo-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.seo-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .seo-image {
        position: static;
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Service Page Specifics */
.service-hero {
    min-height: 400px;
    height: 60vh;
    padding-top: var(--nav-height);
    overflow: hidden;
}

/* FAQ Section */
.faq {
    background-color: #ffffff;
    padding: 6rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
}

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--thm-black);
    text-transform: none;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
}

.faq-item p {
    color: var(--text);
    margin: 0;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.3rem;
    }
}