/* Master Chef Training Institute - Contact Page CSS */
/* Golden Gradient Theme: #ebc779 + #c88c0c + Black */
/* Body Font: Inter | Heading Font: Poppins */
/* All sizes reduced to 85% of original */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #ebc779;
    --primary-gold-dark: #c88c0c;
    --text-dark: #000000;
    --text-medium: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #fef9f4;
    --shadow-sm: 0 1.7px 6.8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6.8px 21.25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12.75px 29.75px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 21.25px 42.5px rgba(0, 0, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, #ebc779 0%, #c88c0c 100%);
    --tg-body-font-family: 'Inter', sans-serif;
    --tg-heading-font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 13.6px; /* 16px * 0.85 */
}

body {
    font-family: var(--tg-body-font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--tg-heading-font-family);
    font-weight: 700;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.7rem; /* 2rem * 0.85 */
}

/* Navigation - Same as About Page */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.95rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(17px);
    box-shadow: var(--shadow-md);
    padding: 0.7125rem 0;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.9rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.7125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 82.5px;
    height: 82.5px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.7px solid var(--primary-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.375rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.475rem 0;
}

.navbar.scrolled .nav-link {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.85px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
    border-radius: 1.9px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-btn {
    background: var(--gradient-gold);
    color: white;
    padding: 0.7125rem 1.425rem;
    border-radius: 23.75px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-btn:hover {
    transform: translateY(-1.9px);
    box-shadow: var(--shadow-xl);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3.8px;
    padding: 7.6px;
    }

.hamburger {
    width: 23.75px;
    height: 2.85px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1.9px;
}

.navbar.scrolled .hamburger {
    background: var(--text-dark);
}

/* Contact Hero Section - Same style as About Page */
.contact-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.contact-hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.7rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 80vh;
    padding-top: 68px;
}

.contact-hero-content {
    color: white;
}

.contact-hero-badge {
    background: var(--gradient-gold);
    color: white;
    padding: 0.425rem 0.85rem;
    border-radius: 17px;
    font-size: 0.765rem;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    margin-bottom: 1.275rem;
    display: inline-block;
}

.contact-hero-title {
    font-size: 2.975rem;
    font-weight: 900;
    font-family: var(--tg-heading-font-family);
    line-height: 1.1;
    margin-bottom: 1.275rem;
    color: white;
}

.contact-hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-description {
    font-size: 0.935rem;
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.7rem;
    line-height: 1.7;
}

.contact-hero-buttons {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.contact-enroll-btn-hero {
    background: var(--gradient-gold);
    color: white;
    padding: 0.85rem 1.7rem;
    border: none;
    border-radius: 21.25px;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem;
    font-size: 0.85rem;
}

.contact-call-btn-hero {
    background: transparent;
    color: white;
    padding: 0.85rem 1.7rem;
    border: 1.7px solid var(--primary-gold);
    border-radius: 21.25px;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem;
    font-size: 0.85rem;
}

.contact-enroll-btn-hero:hover,
.contact-call-btn-hero:hover {
    transform: translateY(-1.7px);
    box-shadow: var(--shadow-lg);
}

.contact-call-btn-hero:hover {
    background: var(--primary-gold);
    color: white;
}

.contact-enroll-btn-hero i,
.contact-call-btn-hero i {
    transition: transform 0.3s ease;
}

.contact-enroll-btn-hero:hover i,
.contact-call-btn-hero:hover i {
    transform: translateX(4.25px);
}

/* Contact Hero Visual */
.contact-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-visual-section {
    position: relative;
    text-align: center;
}

.contact-visual-container {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-gold);
    padding: 8.5px;
    margin-bottom: 1.7rem;
}

.contact-visual-thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.contact-visual-badge {
    position: absolute;
    bottom: 17px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.85rem 1.275rem;
    border-radius: 21.25px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.contact-visual-badge h4 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--primary-gold-dark);
    margin-bottom: 0.2125rem;
    font-family: var(--tg-heading-font-family);
}

.contact-visual-badge p {
    font-size: 0.68rem;
    color: var(--text-medium);
    font-family: var(--tg-body-font-family);
    margin: 0;
}

.contact-stats-avatars {
    display: flex;
    justify-content: center;
    gap: 1.275rem;
    flex-wrap: wrap;
}

.contact-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.85rem 1.275rem;
    border-radius: 12.75px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-stat-item:hover {
    transform: translateY(-4.25px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-stat-item h3 {
    font-size: 1.275rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.2125rem;
    font-family: var(--tg-heading-font-family);
}

.contact-stat-item p {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--tg-body-font-family);
    margin: 0;
}

/* Section Headers */
.contact-section-header {
    text-align: center;
    margin-bottom: 3.4rem;
}

.contact-section-label {
    font-size: 0.765rem;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.7px;
    margin-bottom: 0.85rem;
}

.contact-section-title {
    font-size: 2.125rem;
    font-weight: 800;
    font-family: var(--tg-heading-font-family);
    margin-bottom: 0.85rem;
    color: var(--text-dark);
}

.contact-section-subtitle {
    font-size: 0.935rem;
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    max-width: 510px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
    padding: 68px 0;
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 2.125rem;
    margin-top: 2.55rem;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 2.125rem;
    border-radius: 12.75px;
    text-align: center;
    transition: all 0.3s ease;
    border: 0.85px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(235, 199, 121, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8.5px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.contact-info-card.whatsapp-card {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.contact-info-card.whatsapp-card:hover {
    transform: translateY(-8.5px) scale(1.02);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.contact-card-icon {
    width: 68px;
    height: 68px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.275rem;
    transition: all 0.3s ease;
}

.whatsapp-card .contact-card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-card-icon i {
    font-size: 1.7rem;
    color: white;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-info-card h3 {
    font-size: 1.19rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
    font-family: var(--tg-heading-font-family);
}

.whatsapp-card h3 {
    color: white;
}

.contact-info-card p {
    font-size: 0.8075rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-family: var(--tg-body-font-family);
    margin-bottom: 1.275rem;
}

.whatsapp-card p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.425rem;
    color: var(--primary-gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
    border: 1.7px solid var(--primary-gold);
    padding: 0.6375rem 1.275rem;
    border-radius: 21.25px;
    background: transparent;
}

.whatsapp-card .contact-card-link {
    color: white;
    border-color: white;
}

.contact-card-link:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-1.7px);
}

.whatsapp-card .contact-card-link:hover {
    background: white;
    color: #25d366;
}

/* Contact Form Section */
.contact-form-section {
    padding: 68px 0;
    background: var(--bg-light);
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.25rem;
    align-items: start;
    max-width: 100%;
    margin: 0 auto;
}

.contact-form-description {
    font-size: 0.935rem;
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2.125rem;
}

.contact-form-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.125rem;
}

.contact-form-feature {
    display: flex;
    align-items: center;
    gap: 0.6375rem;
    font-family: var(--tg-body-font-family);
    font-weight: 500;
    color: var(--text-medium);
    padding: 0.6375rem;
    background: white;
    border-radius: 6.8px;
    transition: all 0.3s ease;
}

.contact-form-feature:hover {
    transform: translateX(6.8px);
    box-shadow: var(--shadow-sm);
}

.contact-form-feature i {
    color: var(--primary-gold-dark);
    font-size: 1.02rem;
}

.contact-working-hours {
    background: white;
    padding: 1.7rem;
    border-radius: 10.2px;
    border-left: 3.4px solid var(--primary-gold);
}

.contact-working-hours h4 {
    font-size: 0.935rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
    font-family: var(--tg-heading-font-family);
    display: flex;
    align-items: center;
    gap: 0.425rem;
}

.contact-working-hours h4 i {
    color: var(--primary-gold-dark);
}

.working-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.425rem;
}

.working-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--tg-body-font-family);
    font-size: 0.765rem;
}

.working-hours-item .day {
    color: var(--text-medium);
    font-weight: 500;
}

.working-hours-item .time {
    color: var(--text-dark);
    font-weight: 600;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    padding: 2.55rem;
    border-radius: 12.75px;
    box-shadow: var(--shadow-sm);
    border: 0.85px solid #f0f0f0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.275rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.765rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.425rem;
    font-family: var(--tg-body-font-family);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 2.55rem 0.85rem 0.85rem;
    border: 1.7px solid #e0e0e0;
    border-radius: 6.8px;
    font-family: var(--tg-body-font-family);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2.55px rgba(235, 199, 121, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 102px;
    padding: 0.85rem;
}

.form-icon {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group:focus-within .form-icon {
    color: var(--primary-gold-dark);
}

.form-group textarea+.form-icon {
    top: 2.125rem;
    transform: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6375rem;
    font-size: 0.765rem;
    color: var(--text-medium);
    line-height: 1.5;
    cursor: pointer;
    font-family: var(--tg-body-font-family);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 17px;
    height: 17px;
    border: 1.7px solid #e0e0e0;
    border-radius: 3.4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 1.7px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: var(--gradient-gold);
    border-color: var(--primary-gold-dark);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 10.2px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-submit-btn {
    background: var(--gradient-gold);
    color: white;
    padding: 0.85rem 2.125rem;
    border: none;
    border-radius: 6.8px;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.425rem;
    box-shadow: var(--shadow-sm);
}

.contact-submit-btn:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-1.7px);
    box-shadow: var(--shadow-md);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(2.55px);
}

/* Map Section */
.contact-map-section {
    padding: 68px 0;
    background: white;
}

.contact-map-container {
    position: relative;
    border-radius: 12.75px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-embed {
    position: relative;
}

.map-embed iframe {
    width: 100%;
    height: 340px;
    border: none;
    border-radius: 12.75px;
}

.map-info-overlay {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 10;
}

.map-info-card {
    background: white;
    padding: 1.275rem;
    border-radius: 10.2px;
    box-shadow: var(--shadow-lg);
    max-width: 255px;
}

.map-info-card h4 {
    font-size: 0.935rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.425rem;
    font-family: var(--tg-heading-font-family);
    display: flex;
    align-items: center;
    gap: 0.425rem;
}

.map-info-card h4 i {
    color: var(--primary-gold-dark);
}

.map-info-card p {
    font-size: 0.68rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 0.85rem;
    font-family: var(--tg-body-font-family);
}

.map-actions {
    display: flex;
    gap: 0.425rem;
}

.map-direction-btn,
.map-call-btn {
    padding: 0.425rem 0.85rem;
    border-radius: 17px;
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.2125rem;
}

.map-direction-btn {
    background: var(--gradient-gold);
    color: white;
}

.map-call-btn {
    background: transparent;
    color: var(--primary-gold-dark);
    border: 1.7px solid var(--primary-gold);
}

.map-direction-btn:hover,
.map-call-btn:hover {
    transform: translateY(-1.7px);
    box-shadow: var(--shadow-sm);
}

.map-call-btn:hover {
    background: var(--primary-gold);
    color: white;
}

/* FAQ Section */
.contact-faq-section {
    padding: 68px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10.2px;
    margin-bottom: 1.275rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.275rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-cream);
}

.faq-question h4 {
    font-size: 0.935rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--tg-heading-font-family);
    margin: 0;
}

.faq-question i {
    color: var(--primary-gold-dark);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.275rem 1.275rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 170px;
    padding: 0 1.275rem 1.275rem;
}

.faq-answer p {
    font-size: 0.765rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-family: var(--tg-body-font-family);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 51px 0 17px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(212.5px, 1fr));
    gap: 2.55rem;
    margin-bottom: 2.55rem;
}

.footer-section h4 {
    font-family: var(--tg-heading-font-family);
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 1.275rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6375rem;
    margin-bottom: 0.85rem;
}

.footer-logo-image {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.7px solid var(--primary-gold);
}

.footer-logo-text {
    font-size: 0.935rem;
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.275rem;
}

.footer-social {
    display: flex;
    gap: 0.85rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-2.55px);
    box-shadow: var(--shadow-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6375rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(4.25px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6375rem;
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--primary-gold);
    transform: translateX(4.25px);
}

.contact-item i {
    color: var(--primary-gold);
    width: 17px;
}

.footer-bottom {
    border-top: 0.85px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.footer-copyright p {
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.55rem;
    }

    .contact-hero-title {
        font-size: 2.38rem;
    }

    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 2.55rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(212.5px, 1fr));
        gap: 1.7rem;
    }

    .map-info-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 1.275rem;
    }

    .map-info-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .contact-hero-title {
        font-size: 1.87rem;
    }

    .contact-hero-buttons {
        justify-content: center;
    }

    .contact-visual-container {
        width: 255px;
        height: 255px;
    }

    .contact-stats-avatars {
        gap: 0.85rem;
    }

    .contact-section-title {
        font-size: 1.7rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.275rem;
    }

    .contact-form-container {
        padding: 1.7rem;
    }

    .working-hours-grid {
        gap: 0.6375rem;
    }

    .map-actions {
        flex-direction: column;
        gap: 0.6375rem;
    }

    .map-direction-btn,
    .map-call-btn {
        justify-content: center;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.85rem;
    }

    .contact-hero-title {
        font-size: 1.53rem;
    }

    .contact-hero-description {
        font-size: 0.85rem;
    }

    .contact-hero-buttons {
        flex-direction: column;
    }

    .contact-enroll-btn-hero,
    .contact-call-btn-hero {
        padding: 0.74375rem 1.275rem;
        font-size: 0.765rem;
        justify-content: center;
    }

    .contact-visual-container {
        width: 212.5px;
        height: 212.5px;
    }

    .contact-stats-avatars {
        flex-direction: column;
        align-items: center;
    }

    .contact-section-title {
        font-size: 1.36rem;
    }

    .contact-info-card {
        padding: 1.7rem;
    }

    .contact-form-container {
        padding: 1.275rem;
    }

    .contact-form {
        gap: 1.02rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.74375rem 2.125rem 0.74375rem 0.74375rem;
        font-size: 0.765rem;
    }

    .contact-submit-btn {
        padding: 0.74375rem 1.7rem;
        font-size: 0.765rem;
    }

    .contact-working-hours {
        padding: 1.275rem;
    }

    .working-hours-item {
        font-size: 0.68rem;
    }

    .contact-form-feature {
        padding: 0.53125rem;
        font-size: 0.68rem;
    }

    .faq-question {
        padding: 1.02rem;
    }

    .faq-question h4 {
        font-size: 0.8075rem;
    }

    .faq-answer {
        padding: 0 1.02rem 1.02rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.02rem 1.02rem;
    }

    .map-embed iframe {
        height: 255px;
    }

    .map-info-card {
        padding: 1.02rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.7rem;
    }
}

/* Form Validation States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 2.55px rgba(239, 68, 68, 0.1);
}

.form-group.error .form-icon {
    color: #ef4444;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #10b981;
    box-shadow: 0 0 0 2.55px rgba(16, 185, 129, 0.1);
}

.form-group.success .form-icon {
    color: #10b981;
}

.field-error {
    color: #ef4444;
    font-size: 0.68rem;
    margin-top: 0.2125rem;
    font-family: var(--tg-body-font-family);
}

/* Loading States */
.contact-submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.contact-submit-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(17px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes slideDown {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 170px;
        opacity: 1;
    }
}

.faq-item.active .faq-answer {
    animation: slideDown 0.3s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6.8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 3.4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-dark);
}

/* Selection Styles */
::selection {
    background: var(--primary-gold);
    color: white;
}

::-moz-selection {
    background: var(--primary-gold);
    color: white;
}

/* Focus Styles */
*:focus {
    outline: 1.7px solid var(--primary-gold);
    outline-offset: 1.7px;
    border-radius: 3.4px;
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu,
    .contact-hero-background,
    .contact-hero-overlay,
    .map-embed {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .contact-hero,
    .footer {
        background: white !important;
        color: black !important;
    }
    
    .contact-form-container {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}