/* ===== ROOT VARIABLES - WHITE, YELLOW, BLACK & BLUE THEME ===== */
:root {
    /* Black Palette */
    --black-900: #000000;
    --black-800: #0a0a0a;
    --black-700: #141414;
    --black-600: #1a1a1a;
    --black-500: #242424;
    --black-400: #333333;
    --black-300: #4a4a4a;
    --black-200: #6b6b6b;
    --black-100: #8c8c8c;
    
    /* Yellow Palette */
    --yellow-900: #78350f;
    --yellow-800: #92400e;
    --yellow-700: #b45309;
    --yellow-600: #d97706;
    --yellow-500: #f59e0b;
    --yellow-400: #fbbf24;
    --yellow-300: #fcd34d;
    --yellow-200: #fde68a;
    --yellow-100: #fef3c7;
    --yellow-50: #fffbeb;
    
    /* Gold */
    --gold: #ffd700;
    --gold-light: #ffed4e;
    --gold-dark: #c9a000;
    
    /* White & Gray Palette */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Blue Palette */
    --blue-950: #0f172a;
    --blue-900: #1e293b;
    --blue-800: #1e40af;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-300: #93c5fd;
    --blue-200: #bfdbfe;
    --blue-100: #dbeafe;
    --blue-50: #eff6ff;
    
    /* Status Colors */
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #fbbf24 50%, #f59e0b 100%);
    --gradient-black: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #242424 100%);
    --gradient-blue: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    --gradient-yellow-blue: linear-gradient(135deg, #fbbf24 0%, #3b82f6 100%);
    --gradient-blue-gold: linear-gradient(135deg, #2563eb 0%, #fbbf24 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 40px rgba(255, 215, 0, 0.4);
    --shadow-gold-sm: 0 4px 15px rgba(255, 215, 0, 0.25);
    --shadow-blue: 0 10px 40px rgba(37, 99, 235, 0.3);
    --shadow-blue-sm: 0 4px 15px rgba(37, 99, 235, 0.2);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--black-600);
    line-height: 1.6;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--gradient-black);
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd700' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Decorative Elements */
.header-decoration {
    position: absolute;
    top: 30px;
    right: 8%;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: pulse-ring 4s ease-in-out infinite;
}

.header-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
}

.header-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 50%;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    color: var(--black-800);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-badge i {
    font-size: 16px;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.page-header h1 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 18px;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--blue-300);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb a:hover {
    color: var(--yellow-400);
}

.breadcrumb span {
    color: var(--yellow-400);
    font-weight: 600;
}

.breadcrumb i.fa-chevron-right {
    color: var(--gray-500);
    font-size: 10px;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-section {
    max-width: 1200px;
    margin: -60px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

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

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-yellow-blue);
    transform: scaleX(0);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue-400);
    box-shadow: var(--shadow-xl), var(--shadow-blue-sm);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-gold-sm);
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-gold);
}

.contact-icon i {
    font-size: 28px;
    color: var(--black-800);
}

.contact-info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black-700);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--yellow-600);
}

/* ===== MAIN CONTACT SECTION ===== */
.contact-main-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ===== CONTACT FORM ===== */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.contact-form-card:hover {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-xl);
}

.form-header {
    background: var(--gradient-black);
    padding: 32px;
    position: relative;
}

.form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 100% 0%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.form-header-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-header-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold-sm);
    flex-shrink: 0;
}

.form-header-icon i {
    font-size: 24px;
    color: var(--black-800);
}

.form-header-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.form-header-text p {
    font-size: 14px;
    color: var(--gray-300);
}

.form-body {
    padding: 36px;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black-600);
    margin-bottom: 10px;
}

.form-group label i {
    width: 28px;
    height: 28px;
    background: var(--blue-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    font-size: 12px;
}

.form-group label span.required {
    color: var(--error);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    font-family: inherit;
    color: var(--black-600);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition);
}

.form-control::placeholder {
    color: var(--gray-400);
}

.form-control:focus {
    background: var(--white);
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 48px;
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    color: var(--black-800);
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit i {
    font-size: 18px;
    transition: var(--transition);
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* Form Status */
.form-status {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    display: none;
    align-items: center;
    gap: 12px;
}

.form-status.success {
    display: flex;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: var(--success);
}

.form-status.error {
    display: flex;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: var(--error);
}

.form-status i {
    font-size: 20px;
}

/* ===== CONTACT SIDEBAR ===== */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Quick Contact Card */
.quick-contact-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.quick-contact-card:hover {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-xl);
}

.quick-contact-header {
    background: var(--gradient-black);
    padding: 24px;
    position: relative;
}

.quick-contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 100% 0%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
}

.quick-contact-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-contact-header h3 i {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-800);
    font-size: 16px;
}

.quick-contact-body {
    padding: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 2px dashed var(--gray-200);
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--blue-50);
    margin: 0 -10px;
    padding: 18px 10px;
    border-radius: var(--radius-md);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
    background: var(--gradient-gold);
}

.contact-item-icon i {
    font-size: 18px;
    color: var(--blue-600);
    transition: var(--transition);
}

.contact-item:hover .contact-item-icon i {
    color: var(--black-800);
}

.contact-item-content {
    flex: 1;
}

.contact-item-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-item-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--black-600);
    line-height: 1.5;
}

.contact-item-value a {
    color: var(--black-600);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-value a:hover {
    color: var(--blue-600);
}

/* Office Hours Card */
.office-hours-card {
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--yellow-50) 100%);
    border: 2px solid var(--blue-200);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: var(--transition);
}

.office-hours-card:hover {
    border-color: var(--blue-400);
    box-shadow: var(--shadow-blue-sm);
    transform: translateY(-4px);
}

.office-hours-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black-700);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.office-hours-card h3 i {
    color: var(--blue-600);
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-800);
}

.hours-list {
    list-style: none;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px dashed var(--blue-200);
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    transition: var(--transition);
}

.hours-item:hover {
    background: var(--blue-50);
    transform: translateX(5px);
}

.hours-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hours-day {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-600);
}

.hours-time {
    font-size: 14px;
    color: var(--blue-600);
    font-weight: 600;
}

.hours-time.closed {
    color: var(--error);
    font-weight: 700;
}

/* Social Links Card */
.social-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

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

.social-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black-700);
    margin-bottom: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 20px;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
}

.social-link.facebook { 
    background: #1877f2; 
}

.social-link.twitter { 
    background: #1da1f2; 
}

.social-link.instagram { 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); 
}

.social-link.linkedin { 
    background: #0a66c2; 
}

.social-link.youtube { 
    background: #ff0000; 
}

.social-link.whatsapp { 
    background: #25d366; 
}

.social-link:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===== MAP SECTION ===== */
.map-section {
    background: var(--gray-50);
    padding: 80px 20px;
}

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

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

.map-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    color: var(--black-800);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold-sm);
}

.map-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--black-700);
    margin-bottom: 12px;
}

.map-header p {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid transparent;
    background: var(--gradient-yellow-blue);
    padding: 4px;
    position: relative;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    border-radius: calc(var(--radius-2xl) - 4px);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--white);
    padding: 80px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    color: var(--black-800);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold-sm);
}

.faq-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--black-700);
    margin-bottom: 12px;
}

.faq-header p {
    font-size: 16px;
    color: var(--gray-500);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 2px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-lg);
}

.faq-item.active {
    border-color: var(--blue-400);
    box-shadow: var(--shadow-blue-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--blue-50);
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-700);
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.faq-question h4 i {
    width: 36px;
    height: 36px;
    background: var(--blue-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    font-size: 14px;
    flex-shrink: 0;
}

.faq-item.active .faq-question h4 i {
    background: var(--gradient-gold);
    color: var(--black-800);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--gradient-blue);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 28px 24px;
    padding-left: 78px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 992px) {
    .page-header h1 {
        font-size: 40px;
    }

    .header-decoration {
        display: none;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .page-header {
        padding: 60px 16px 80px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .contact-info-section {
        margin-top: -40px;
        padding: 0 16px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-info-card {
        padding: 24px 20px;
    }

    .contact-main-section {
        padding: 40px 16px 60px;
    }

    .form-header {
        padding: 24px;
    }

    .form-body {
        padding: 24px;
    }

    .map-section {
        padding: 60px 16px;
    }

    .map-header h2 {
        font-size: 28px;
    }

    .map-wrapper iframe {
        height: 350px;
    }

    .faq-section {
        padding: 60px 16px;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .faq-answer-content {
        padding-left: 20px;
    }
}

@media screen and (max-width: 480px) {
    .page-header {
        padding: 50px 12px 70px;
    }

    .header-badge {
        padding: 10px 18px;
        font-size: 12px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .contact-info-card {
        padding: 20px 16px;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
    }

    .contact-icon i {
        font-size: 22px;
    }

    .form-header-content {
        flex-direction: column;
        text-align: center;
    }

    .form-body {
        padding: 20px;
    }

    .form-control {
        padding: 14px 16px;
    }

    .btn-submit {
        padding: 16px 24px;
        font-size: 14px;
    }

    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .office-hours-card h3 {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hours-item {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

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

.contact-info-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.contact-info-card:nth-child(1) { animation-delay: 0.1s; }
.contact-info-card:nth-child(2) { animation-delay: 0.15s; }
.contact-info-card:nth-child(3) { animation-delay: 0.2s; }
.contact-info-card:nth-child(4) { animation-delay: 0.25s; }

.faq-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }

html {
    scroll-behavior: smooth;
}