/* ============================================
   MAP Brokers - Styles
   ============================================ */

/* CSS Variables */
:root {
    --gold: hsl(43, 45%, 59%);
    --gold-light: hsl(43, 50%, 70%);
    --gold-dark: hsl(43, 40%, 45%);
    --charcoal: hsl(0, 0%, 12%);
    --charcoal-light: hsl(0, 0%, 18%);
    --charcoal-dark: hsl(0, 0%, 8%);
    --white: hsl(0, 0%, 100%);
    --off-white: hsl(40, 20%, 98%);
    --cream: hsl(40, 20%, 95%);
    --muted: hsl(0, 0%, 96%);
    --muted-foreground: hsl(0, 0%, 45%);
    --border: hsl(0, 0%, 90%);
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-elegant: 0 4px 20px -2px hsla(0, 0%, 0%, 0.08);
    --shadow-card: 0 10px 40px -10px hsla(0, 0%, 0%, 0.12);
    --shadow-gold: 0 8px 30px -8px hsla(43, 45%, 59%, 0.3);
    
    --gradient-dark: linear-gradient(135deg, hsl(0, 0%, 8%) 0%, hsl(0, 0%, 15%) 100%);
    --gradient-gold: linear-gradient(135deg, hsl(43, 45%, 59%) 0%, hsl(43, 50%, 70%) 100%);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Utility Classes */
.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.mt-12 {
    margin-top: 3rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-elegant);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.02);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: var(--gold);
}

.btn-gold {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 600;
    font-size: 14px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    left: 0;
    transition: all 0.3s ease;
}

.menu-icon::before { top: -8px; }
.menu-icon::after { bottom: -8px; }

.mobile-menu-btn.active .menu-icon {
    background: transparent;
}

.mobile-menu-btn.active .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .menu-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}

.mobile-menu a {
    font-weight: 500;
    padding: 8px 0;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu .btn-gold {
    text-align: center;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.hero-container {
    position: relative;
    z-index: 10;
    padding-top: 128px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

.hero-badge span:last-child {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: scale(1.02);
}

.btn-primary .icon-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .icon-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.feature-icon {
    padding: 12px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 8px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.feature-text {
    text-align: left;
}

.feature-label {
    color: var(--white);
    font-weight: 500;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    animation: scrollBounce 2s infinite;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.section-tag-light {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.section-title-light {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.section-subtitle-light {
    font-size: 1.125rem;
    color: var(--white);
}

/* ============================================
   Services Section (PJ)
   ============================================ */
.services {
    padding: 96px 0 128px;
    background: var(--muted);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.service-icon {
    flex-shrink: 0;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(212, 175, 55, 0.2);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.service-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--gold);
}

.service-content p {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   Services PF Section
   ============================================ */
.services-pf {
    padding: 96px 0 128px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-dark) 50%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.services-pf::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
}

.services-pf .container {
    position: relative;
    z-index: 1;
}

.services-pf-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-pf-card {
    position: relative;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    transition: all 0.5s ease;
}

.service-pf-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.25);
}

.service-pf-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 0 0 12px 12px;
}

.service-pf-card:hover::after {
    opacity: 1;
}

.service-pf-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.service-pf-card:hover .service-pf-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.service-pf-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
}

.service-pf-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.service-pf-desc {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .services-pf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-pf-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* ============================================
   Solutions Section
   ============================================ */
.solutions {
    padding: 96px 0 128px;
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 80px;
}

.solution-card {
    position: relative;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.5s ease;
}

.solution-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow-card);
}

.solution-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 16px 16px 0 0;
}

.solution-card:hover .solution-accent {
    opacity: 1;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.solution-icon {
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: rgba(212, 175, 55, 0.2);
}

.solution-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
}

.solution-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.solution-card:hover .solution-header h3 {
    color: var(--gold);
}

.solution-desc {
    color: var(--muted-foreground);
    margin-bottom: 24px;
    line-height: 1.7;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.solution-features span {
    padding: 6px 12px;
    background: var(--muted);
    color: var(--muted-foreground);
    font-size: 14px;
    border-radius: 50px;
}

@media (min-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Segments */
.segments-container {
    padding: 48px 64px;
    background: var(--gradient-dark);
    border-radius: 16px;
}

.segments-header {
    text-align: center;
    margin-bottom: 40px;
}

.segments-header h3 {
    font-size: clamp(1.5rem, 4vw, 1.875rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.segments-header p {
    color: rgba(255, 255, 255, 0.6);
}

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

.segment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.segment-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.segment-item svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
}

.segment-item span {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

@media (min-width: 768px) {
    .segments-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 96px 0 128px;
    background: var(--muted);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.value-card {
    position: relative;
}

.value-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 16px;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover .value-glow {
    opacity: 1;
}

.value-content {
    position: relative;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.5s ease;
    height: 100%;
}

.value-card:hover .value-content {
    border-color: rgba(212, 175, 55, 0.5);
}

.value-icon {
    display: inline-flex;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.gold-gradient {
    background: var(--gradient-gold);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--charcoal);
}

.value-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.value-content p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 96px 0 128px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

.contact-desc {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:not(.no-hover):hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: var(--muted);
}

.contact-card-icon {
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: rgba(212, 175, 55, 0.2);
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.contact-label {
    font-size: 14px;
    color: var(--muted-foreground);
}

.contact-value {
    font-weight: 500;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.contact-card:not(.no-hover):hover .contact-value {
    color: var(--gold);
}

.consultant-card {
    margin-top: 40px;
    padding: 24px;
    background: var(--gradient-dark);
    border-radius: 12px;
}

.consultant-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.consultant-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-display);
}

/* Contact Form */
.contact-form-container {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.contact-form-container > p {
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--charcoal);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input {
    height: 48px;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    padding: 0 32px;
    background: var(--gold);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--gold-light);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
    border-radius: 50%;
    margin-bottom: 16px;
}

.success-icon svg {
    width: 48px;
    height: 48px;
    stroke: #16a34a;
}

.success-message h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.success-message p {
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-form-container {
        padding: 40px;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 64px 0;
    background: var(--white);
}

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

.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 24px;
}

.footer-brand p {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    max-width: 400px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact-links a {
    color: rgba(0, 0, 0, 0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact-links a:hover {
    color: var(--gold);
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
}

.footer-legal a {
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-credits {
    text-align: center;
    margin-top: 24px;
}

.footer-credits p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
}

.footer-credits a {
    color: var(--gold);
    transition: opacity 0.3s ease;
}

.footer-credits a:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ============================================
   WhatsApp Button
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-align: center;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: var(--gold-light);
}

.btn-decline {
    padding: 10px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cookie-content p {
        text-align: left;
    }
}

/* ============================================
   Scrollbar
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}
