/* ===================================
   ROOT VARIABLES (Matching Theme)
   =================================== */
:root {
    --primary-navy: #0F2438;
    --primary-teal: #1A5F7A;
    --accent-emerald: #159895;
    --accent-gold: #D4AF37;
    --accent-mint: #57C5B6;
    --light-cream: #F8F6F0;
    --soft-beige: #EDE8DC;
    --warm-gold: #B8860B;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   CONTACT HERO SECTION
   =================================== */
.contact-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    background: linear-gradient(135deg,
            var(--primary-navy) 0%,
            var(--primary-teal) 40%,
            var(--accent-emerald) 70%,
            var(--accent-mint) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent-gold);
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 40%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; top: 60%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; top: 30%; animation-delay: 1s; }
.particle:nth-child(5) { left: 80%; top: 70%; animation-delay: 3s; }
.particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 5s; }
.particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 40%; top: 90%; animation-delay: 4.5s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -40px) scale(1.1);
        opacity: 0.7;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(87, 197, 182, 0.1), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 20px;
    color: var(--accent-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.badge-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-mint) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature-badge i {
    font-size: 18px;
    color: var(--accent-gold);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===================================
   QUICK CONTACT SECTION
   =================================== */
.quick-contact-section {
    padding: 80px 0;
    background: var(--white);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quick-contact-card {
    background: var(--light-cream);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-emerald);
    background: var(--white);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
    margin: 0 auto 25px;
    transition: var(--transition-fast);
}

.quick-contact-card:hover .card-icon {
    transform: rotateY(360deg);
}

.quick-contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-link {
    display: block;
    font-size: 1.1rem;
    color: var(--accent-emerald);
    font-weight: 600;
    margin-bottom: 10px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-mint);
}

.quick-contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-emerald));
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.card-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(21, 152, 149, 0.4);
}

/* ===================================
   MAIN CONTACT SECTION
   =================================== */
.main-contact-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-cream) 100%);
    overflow: hidden;
}

.contact-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 152, 149, 0.05), transparent 70%);
}

.bg-shape.shape-1 {
    width: 500px;
    height: 500px;
    top: 10%;
    left: -10%;
    animation: float 20s infinite ease-in-out;
}

.bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: -5%;
    animation: float 15s infinite ease-in-out reverse;
}

.bg-shape.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 30%;
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ===================================
   CONTACT INFO AREA
   =================================== */
.contact-info-area {
    position: sticky;
    top: 100px;
}

.info-header {
    margin-bottom: 40px;
}

.info-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.info-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-mint);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.info-card-content h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Social Section */
.social-section {
    padding: 35px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal));
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.social-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.social-section > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.social-link i {
    font-size: 20px;
    width: 25px;
}

.social-link.linkedin:hover { border-color: #0077B5; }
.social-link.youtube:hover { border-color: #FF0000; }
.social-link.whatsapp:hover { border-color: #25D366; }
.social-link.facebook:hover { border-color: #1877F2; }
.social-link.instagram:hover { border-color: #E4405F; }

/* ===================================
   CONTACT FORM AREA
   =================================== */
.form-container {
    background: var(--white);
    border-radius: 30px;
    padding: 50px 45px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-cream);
}

.form-header {
    margin-bottom: 35px;
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group label i {
    color: var(--accent-emerald);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--light-cream);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: var(--transition-fast);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--accent-emerald);
    box-shadow: 0 0 0 4px rgba(21, 152, 149, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Checkbox Group */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--accent-emerald);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-color: var(--accent-emerald);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--white);
    font-size: 12px;
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.submit-btn span,
.submit-btn i {
    position: relative;
    z-index: 1;
}

/* Form Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(21, 152, 149, 0.1), rgba(87, 197, 182, 0.1));
    border-radius: 20px;
    border: 2px solid var(--accent-emerald);
}

.form-success.show {
    display: block;
    animation: successFadeIn 0.5s ease-out;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    margin: 0 auto 20px;
    animation: successPulse 1s infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.form-success h4 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ===================================
   TRUST SECTION
   =================================== */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--light-cream);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-emerald));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    margin: 0 auto 20px;
    transition: var(--transition-fast);
}

.trust-card:hover .trust-icon {
    transform: rotateY(360deg);
}

.trust-card h4 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 600;
}

.trust-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 100px 0;
    background: var(--light-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    background: var(--white);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--light-cream);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    font-size: 18px;
    color: var(--accent-emerald);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal), var(--accent-emerald));
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.cta-particles .particle:nth-child(1) {
    left: 20%;
    top: 20%;
    animation: float 10s infinite;
}

.cta-particles .particle:nth-child(2) {
    left: 80%;
    top: 60%;
    animation: float 12s infinite;
}

.cta-particles .particle:nth-child(3) {
    left: 50%;
    top: 80%;
    animation: float 15s infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--accent-gold);
    margin: 0 auto 30px;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn span,
.cta-btn i {
    position: relative;
    z-index: 1;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-area {
        position: static;
    }

    .form-container {
        padding: 40px 35px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 25px;
    }

    .info-header h2,
    .form-header h3 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .social-links {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-badge,
    .section-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .card-icon,
    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .form-container {
        padding: 25px 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .hero-particles,
    .hero-overlay,
    .scroll-indicator,
    .contact-bg-decoration,
    .cta-particles {
        display: none;
    }

    body {
        background: white;
    }
}