/* ===== CSS VARIABLES ===== */
:root {
    --primary-gradient: linear-gradient(135deg, #c4bdac 0%, #c4bdac 100%);
    --secondary-gradient: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    --accent-gradient: linear-gradient(135deg, #c4bdac 0%, #c4bdac 100%);
    
    --color-primary: #c4bdac;
    --color-primary-dark: #c4bdac;
    --color-secondary: #4A90E2;
    --color-accent: #c4bdac;
    
    --color-text-primary: #1A1A2E;
    --color-text-secondary: #64748B;
    --color-text-light: #94A3B8;
    
    --color-bg-primary: #FFFFFF;
    --color-bg-secondary: #F8FAFC;
    --color-bg-tertiary: #F1F5F9;
    
    --color-border: #E2E8F0;
    --color-border-light: #F1F5F9;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== AI RESULT STYLES ===== */
.result-description {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: var(--shadow-md);
}

.result-description h3 {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-description p {
    color: var(--color-text-primary);
    line-height: 1.6;
    font-size: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
button {
    font-family: var(--font-primary);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(196, 189, 172, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 189, 172, 0.4);
}

.btn-secondary {
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
    padding: 12px 24px;
    border-radius: var(--radius-md);
}

.btn-secondary:hover {
    background: var(--color-bg-tertiary);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    padding: 12px 24px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-light);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
    color: var(--color-text-primary);
}

.logo-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-image: url('/static/images/back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 0;
}


.hero-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: white;
    margin: 0 0 2rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 3rem 0;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-hero {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    text-align: center;
}

.footer-text {
    font-size: 16px;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.footer-text:last-child {
    margin-bottom: 0;
}

/* ===== SECTIONS COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(196, 189, 172, 0.1) 0%, rgba(196, 189, 172, 0.1) 100%);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: var(--color-bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 0;
}

.step-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(196, 189, 172, 0.1) 0%, rgba(196, 189, 172, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.step-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--color-bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #FFE5EC 0%, #E5E7FF 50%, #D4F1F9 100%);
    position: relative;
}

.before-after-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-info {
    padding: 16px;
}

.gallery-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.gallery-info p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border-light);
}

.pricing-plan {
    font-size: 24px;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-left: 4px;
}

.pricing-description {
    color: var(--color-text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-primary);
}

.pricing-features li.disabled {
    color: var(--color-text-light);
}

.check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196, 189, 172, 0.1) 0%, rgba(196, 189, 172, 0.1) 100%);
    color: var(--color-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-features li.disabled .check-icon {
    background: var(--color-bg-tertiary);
    color: var(--color-text-light);
}

.pricing-button {
    width: 100%;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
    color: white;
    padding: 100px 0;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-bg-secondary);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.footer-tagline {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-border-light);
    color: var(--color-text-secondary);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
}

/* ===== HAIRSTYLE SECTION ===== */
.hairstyle-section {
    padding: 80px 0;
    background: #c4bdac;
}

.hairstyle-header {
    text-align: center;
    margin-bottom: 60px;
}

.hairstyle-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.hairstyle-divider {
    width: 100px;
    height: 2px;
    background: var(--color-primary);
    margin: 0 auto;
}

.hairstyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.hairstyle-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hairstyle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hairstyle-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.hairstyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #e9ecef;
}

.hairstyle-divider-small {
    width: 100%;
    height: 1px;
    background: #e9ecef;
}

.hairstyle-info {
    padding: 20px;
    text-align: center;
}

.hairstyle-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 8px 0;
}

.hairstyle-info p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hairstyle-section {
        padding: 60px 0;
    }
    
    .hairstyle-title {
        font-size: 28px;
    }
    
    .hairstyle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .hairstyle-info {
        padding: 16px;
    }
    
    .hairstyle-info h3 {
        font-size: 16px;
    }
    
    .hairstyle-info p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hairstyle-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hairstyle-title {
        font-size: 24px;
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.pricing-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: white;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 16px;
    font-weight: 500;
}

.pricing-content {
    padding: 24px 20px;
    background: #f8f9fa;
    text-align: center;
}

.pricing-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-secondary);
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pricing-plan {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 12px 0;
}

.pricing-details {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.pricing-button {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-title {
        font-size: 28px;
    }
    
    .pricing-subtitle {
        font-size: 16px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .pricing-content {
        padding: 20px 16px;
    }
    
    .pricing-plan {
        font-size: 18px;
    }
    
    .pricing-price {
        font-size: 16px;
    }
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 80px 0;
    background: #c4bdac;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 500px;
}

.trust-text {
    background: #c4bdac;
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-align: right;
}

.trust-divider {
    width: 80px;
    height: 2px;
    background: var(--color-text-primary);
    margin-bottom: 30px;
    margin-right: 0;
    margin-left: auto;
}

.trust-description {
    font-size: 16px;
    color: var(--color-text-primary);
    line-height: 1.8;
    text-align: right;
}

.trust-description p {
    margin: 0 0 20px 0;
}

.trust-description p:last-child {
    margin-bottom: 0;
}

.trust-image-container {
    height: 500px;
    overflow: hidden;
}

.trust-image {
    width: 100%;
    height: 100%;
    background-image: url('/static/images/salon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-content {
        min-height: 400px;
    }
    
    .trust-text {
        padding: 40px 30px;
    }
    
    .trust-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 40px 0;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .trust-text {
        padding: 40px 20px;
        order: 2;
    }
    
    .trust-image-container {
        height: 300px;
        order: 1;
    }
    
    .trust-title {
        font-size: 28px;
    }
    
    .trust-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .trust-text {
        padding: 30px 16px;
    }
    
    .trust-image-container {
        height: 250px;
    }
    
    .trust-title {
        font-size: 24px;
    }
    
    .trust-description {
        font-size: 14px;
    }
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    text-align: right;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
}

.footer-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
    text-align: right;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    text-align: right;
    display: block;
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-social {
    text-align: right;
}

.footer-social h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.footer-contact p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .footer-column h4,
    .footer-column a {
        text-align: center;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 24px;
    }
    
    .footer-logo {
        font-size: 28px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .logo-text {
        font-size: 36px;
    }
    
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .logo-badge {
        font-size: 10px;
    }
    
    
    .hero-main {
        padding: 0 1rem;
    }
    
    .btn-hero {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .hero-footer {
        padding: 1.5rem;
    }
    
    .footer-text {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

