/* ===================================
   ROOT VARIABLES - BROWN MODERN THEME
   =================================== */
:root {
    /* Brown Color Palette */
    --primary-brown: #8B4513;
    --primary-brown-dark: #6B3410;
    --primary-brown-light: #A0522D;
    --secondary-brown: #D2691E;
    --accent-gold: #DAA520;
    --accent-cream: #F5DEB3;
    
    /* Neutral Colors */
    --dark-brown: #3E2723;
    --medium-brown: #5D4037;
    --light-brown: #BCAAA4;
    --cream: #FFF8DC;
    --white: #FFFFFF;
    --black: #1A1A1A;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    --gradient-dark: linear-gradient(135deg, #3E2723 0%, #5D4037 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(210, 105, 30, 0.8) 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
    overflow-x: hidden;

}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-brown);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-brown);
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: var(--medium-brown);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* ===================================
   FLOATING WHATSAPP BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.7);
    }
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(62, 39, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white) !important;
    transition: var(--transition-fast);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-brand:hover {
    color: var(--accent-gold) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    margin-left: 15px;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero-fashion.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.95) 0%, rgba(93, 64, 55, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(218, 165, 32, 0.3);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 36px;
    font-weight: 400;
    color: var(--accent-cream);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    color: var(--accent-cream);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.8s both;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    animation: fadeInUp 1s ease 1s both;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--accent-cream);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-wrapper {
    display: none;
}

.hero-image {
    display: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 32px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.4);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-brown);
    transform: translateY(-3px);
}

/* ===================================
   SERVICES SPLIT SECTION
   =================================== */
.services-split-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.section-header {
    margin-bottom: 60px;
}

.service-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.service-card-brand::before {
    background-image: linear-gradient(rgba(139, 69, 19, 0.7), rgba(139, 69, 19, 0.9)), 
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D2691E" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
}

.service-card-konveksi::before {
    background-image: linear-gradient(rgba(93, 64, 55, 0.7), rgba(93, 64, 55, 0.9)),
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%238B4513" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,208C960,192,1056,160,1152,154.7C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
}

.service-card:hover::before {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(218, 165, 32, 0.2);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--accent-gold);
    color: var(--white);
    transform: rotate(360deg);
}

.service-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--white);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--accent-gold);
    margin-right: 15px;
    font-size: 18px;
}

.btn-brand,
.btn-konveksi {
    background: var(--white);
    color: var(--primary-brown);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    display: inline-block;
    text-decoration: none;
}

.btn-brand:hover,
.btn-konveksi:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateX(10px);
}

/* ===================================
   BRAND VALUE SECTION
   =================================== */
.brand-value-section {
    padding: var(--section-padding);
    background: var(--white);
}

.brand-value-image {
    position: relative;
}

.brand-value-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.image-badge i {
    font-size: 32px;
}

.brand-value-content {
    padding-left: 50px;
}

.products-title {
    font-size: 24px;
    margin: 30px 0 20px;
    color: var(--dark-brown);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-item {
    background: var(--cream);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.product-item:hover {
    border-color: var(--primary-brown);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.product-item i {
    font-size: 32px;
    color: var(--primary-brown);
}

.product-item span {
    font-weight: 600;
    color: var(--dark-brown);
}

/* ===================================
   BRAND PACKAGES SECTION
   =================================== */
.brand-packages-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
}

.package-featured {
    border: 3px solid var(--accent-gold);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.package-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 50px 30px;
    text-align: center;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.package-name {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
}

.package-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.package-price .currency {
    font-size: 20px;
    margin-top: 10px;
}

.package-price .amount {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.package-price .unit {
    font-size: 20px;
    margin-top: 10px;
}

.package-body {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.package-features li {
    padding: 15px 0;
    border-bottom: 1px solid var(--cream);
    display: flex;
    align-items: center;
    color: var(--dark-brown);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary-brown);
    margin-right: 15px;
    font-size: 20px;
}

.btn-package {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
    color: var(--white);
}

/* ===================================
   KONVEKSI SECTION
   =================================== */
.konveksi-section {
    padding: var(--section-padding);
    background: var(--white);
}

.category-section {
    margin-bottom: 80px;
}

.category-title {
    font-size: 32px;
    color: var(--dark-brown);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-brown);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--primary-brown);
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-product-wa {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-product-wa:hover {
    transform: scale(1.2) rotate(360deg);
    color: var(--white);
}

.product-info {
    padding: 25px;
}

.product-info h4 {
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.product-info p {
    font-size: 14px;
    color: var(--medium-brown);
    margin: 0;
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.portfolio-filter {
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-brown);
    color: var(--primary-brown);
    padding: 12px 30px;
    border-radius: 50px;
    margin: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.portfolio-grid {
    margin-top: 40px;
}

.portfolio-item {
    transition: var(--transition-smooth);
}

.portfolio-item.hide {
    display: none;
}

.portfolio-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.2);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.portfolio-info p {
    font-size: 14px;
    color: var(--accent-cream);
}

/* ===================================
   KEUNGGULAN SECTION
   =================================== */
.keunggulan-section {
    padding: var(--section-padding);
    background: var(--white);
}

.keunggulan-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    height: 100%;
}

.keunggulan-card:hover {
    border-color: var(--primary-brown);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
}

.keunggulan-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 48px;
    color: var(--white);
    transition: var(--transition-smooth);
}

.keunggulan-card:hover .keunggulan-icon {
    transform: rotateY(360deg);
}

.keunggulan-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-brown);
}

.keunggulan-card p {
    font-size: 15px;
    color: var(--medium-brown);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    color: var(--accent-cream);
    margin-bottom: 40px;
}

.btn-cta {
    background: var(--white);
    color: var(--primary-brown);
    padding: 18px 50px;
    font-size: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-brown);
    color: var(--light-brown);
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(218, 165, 32, 0.2);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 20px;
    transition: var(--transition-smooth);
    text-decoration: none !important;
    border-bottom: none !important;
}

.footer-social a:hover,
.footer-social a:focus,
.footer-social a:active {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-5px);
    text-decoration: none !important;
    border-bottom: none !important;
}

.footer-title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-brown);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

   @media (min-width: 1000px) {
    .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero-fashion.jpg');
    background-size: cover;
    background-position: 0 -120px !important;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}
   }
@media (max-width: 991px) {
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .brand-value-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .package-featured {
        transform: scale(1);
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-stats {
        justify-content: space-around;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
  
    .service-card-content {
        padding: 30px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .package-price .amount {
        font-size: 48px;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
}
