/* Base & Tokens */
:root {
    --primary: #ad556e;
    --primary-dark: #8e4559;
    --secondary: #005C97;
    --dark: #1A1A1A;
    --light: #F9F9F9;
    --white: #FFFFFF;
    --gray: #666666;
    --border: #EEEEEE;
    --section-padding: 50px 0;
    --transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

span.logo-main {
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark);
    transform: translateY(-5px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: var(--transition);
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.logo-text {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 20px;
}

.loader-bar {
    width: 0;
    height: 2px;
    background: var(--primary);
    animation: loading 2s linear forwards;
}

@keyframes loading {
    to {
        width: 100%;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    color: var(--white);
}

.navbar.scrolled .logo-main {
    color: var(--dark);
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.navbar.scrolled .logo-sub {
    color: var(--gray);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a:hover,
.navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../img/hero.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h4 {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: 80px;
    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Quick Features */
.quick-features {
    padding: 60px 0;
    background: var(--light);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--gray);
}

/* Services */
.services {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-card.active {
    background: var(--dark);
    color: var(--white);
}

.card-img {
    height: 250px;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.service-card:hover .img-placeholder {
    transform: scale(1.1);
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.card-content p {
    margin-bottom: 30px;
    opacity: 0.7;
}

.read-more {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card.active .read-more {
    color: var(--white);
}

/* Experience */
.experience {
    padding: var(--section-padding);
    background: var(--light);
}

.exp-text span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
}

.exp-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.check-list li {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list i {
    color: var(--primary);
}

.exp-image {
    position: relative;
}

.image-box {
    width: 100%;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1556911220-e15b29be8c8f?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exp-badge strong {
    font-size: 48px;
    font-family: var(--font-heading);
}

.exp-badge span {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Brands */
.brands {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.brand-slider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.brand-item:hover {
    color: var(--primary);
}

/* Contact */
.contact {
    padding: var(--section-padding);
}

.contact-info span {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
}

.contact-info h2 {
    font-size: 48px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    border-radius: 50%;
}

.contact-form-box {
    background: var(--white);
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid var(--border);
    background: var(--light);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
}

.full-width {
    width: 100%;
}

/* Footer */
.footer {
    padding: 50px 0;
    background: var(--dark);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--white);
    font-size: 18px;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--primary);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Popular Services Tags */
.popular-services {
    padding: 60px 0;
    background: var(--light);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-tag {
    background: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(173, 85, 110, 0.2);
}

/* Global Floating CTA (Visible on Desktop) */
.floating-cta {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.cta-icon:hover {
    transform: scale(1.1);
}

.cta-icon.call {
    background: #8e4559;
}

.cta-icon.whatsapp {
    background: #25d366;
}

.cta-icon.scroll-top {
    background: #1e3a8a;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    margin-left: 5px;
}

.cta-icon.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sticky Footer (Hidden on Desktop) */
.mobile-cta-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 15px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    z-index: 3000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-call {
    background: #8e4559;
    color: var(--white);
}

.btn-whatsapp {
    background: #84cc86;
    color: var(--white);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .container-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: auto;
        padding: 150px 0 100px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: var(--white);
    }

    .navbar.scrolled .menu-toggle {
        color: var(--dark);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .exp-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        padding: 20px;
    }

    .exp-badge strong {
        font-size: 32px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .floating-cta {
        display: none;
    }

    /* Hide floating buttons on mobile */
    .mobile-cta-footer {
        display: grid;
    }

    /* Show sticky bar on mobile */
    .footer {
        padding-bottom: 100px;
    }

    /* Prevent overlap */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-social {
        justify-content: center;
        gap: 5px;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

    .logo-main {
        font-size: 20px;
    }
}