/* CSS Design System for Afaq Al-Ghad */
:root {
    --primary-color: #d4af37; /* Luxury Gold */
    --primary-hover: #b89324;
    --primary-light: rgba(212, 175, 55, 0.1);
    --dark-bg: #121824; /* Deep Charcoal Blue */
    --dark-card: #1e2638; /* Slightly lighter card bg for dark mode */
    --light-bg: #f9fafb; 
    --white: #ffffff;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --text-white: #f9fafb;
    --text-white-muted: #d1d5db;
    --border-color: #e5e7eb;
    --gold-gradient: linear-gradient(135deg, #f5d061 0%, #d4af37 50%, #b38f1b 100%);
    --dark-gradient: linear-gradient(185deg, #121824 0%, #0d111a 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Cairo', 'Tajawal', sans-serif;
    --font-body: 'Tajawal', 'Cairo', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html[dir="rtl"] body {
    text-align: right;
}
html[dir="ltr"] body {
    text-align: left;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0d111a;
}
::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    height: 4px;
    background: var(--gold-gradient);
    z-index: 1001;
    width: 0%;
    transition: width 0.1s ease-out;
}
html[dir="rtl"] .scroll-progress {
    right: 0;
    left: auto;
}
html[dir="ltr"] .scroll-progress {
    left: 0;
    right: auto;
}

/* Typography & Section Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 6px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-title {
    font-size: 36px;
    color: var(--dark-bg);
    margin-bottom: 16px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Header & Navbar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(18, 24, 36, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header.scrolled {
    padding: 10px 0;
    background: rgba(18, 24, 36, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white-muted);
    padding: 6px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-contact-nav {
    background: var(--gold-gradient);
    color: var(--dark-bg) !important;
    padding: 8px 18px !important;
    border-radius: 6px;
    font-weight: 600;
}

.btn-contact-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-contact-nav::after {
    display: none;
}

.header-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switch-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.lang-switch-btn:hover {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding-top: 100px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 750px;
    margin-bottom: 50px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

html[dir="rtl"] .hero-subtitle {
    border-right: 3px solid var(--primary-color);
    padding-right: 12px;
}

html[dir="ltr"] .hero-subtitle {
    border-left: 3px solid var(--primary-color);
    padding-left: 12px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-white-muted);
    margin-bottom: 36px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    max-width: 180px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-white-muted);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: var(--white);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.about-info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

html[dir="rtl"] .about-info-card::before {
    right: 0;
    transform-origin: right;
}

html[dir="ltr"] .about-info-card::before {
    left: 0;
    transform-origin: left;
}

.about-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow);
    border-color: transparent;
}

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

.about-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.about-info-card:hover .about-icon {
    background: var(--gold-gradient);
    color: var(--dark-bg);
}

.about-info-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--dark-bg);
}

.about-info-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* About Main details */
.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-main-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-main-img .img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(18, 24, 36, 0.9));
    padding: 30px;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.about-main-text h3 {
    font-size: 28px;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.about-main-text p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
}

.features-list i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Gallery Sections */
.gallery-section {
    padding: 100px 0;
}

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

.gallery-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 24, 36, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.zoom-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 15px;
    transform: scale(0.7);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-overlay h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 13px;
    color: var(--text-white-muted);
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .zoom-icon {
    transform: scale(1);
}

.card-details {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-details h3 {
    font-size: 16px;
    color: var(--dark-bg);
}

.tag {
    font-size: 12px;
    font-weight: 600;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

.location-header {
    padding: 30px;
    background: var(--dark-gradient);
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.location-header h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.location-city {
    font-size: 13px;
    color: var(--primary-color);
}

.location-body {
    padding: 30px;
}

.location-body p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.map-placeholder {
    height: 160px;
    background: #edf2f7;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    border: 1px dashed var(--border-color);
    margin-bottom: 24px;
    transition: var(--transition);
}

.location-card:hover .map-placeholder {
    background: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.map-placeholder i {
    font-size: 40px;
}

.map-placeholder span {
    font-size: 14px;
    font-weight: 500;
}

.btn-map {
    width: 100%;
}

/* Contact & Footer Section */
.contact-section {
    background: var(--dark-gradient);
    color: var(--white);
    padding: 100px 0 0 0;
    position: relative;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-bottom: 80px;
}

.contact-info .contact-subtitle {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-white-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

.phone-numbers-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 24px;
    border-radius: 12px;
    transition: var(--transition);
}

.phone-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--primary-color);
}

html[dir="rtl"] .phone-item:hover {
    transform: translateX(-5px);
}

html[dir="ltr"] .phone-item:hover {
    transform: translateX(5px);
}

.phone-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-title {
    font-size: 12px;
    color: var(--text-white-muted);
}

.phone-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.working-hours {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-white-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.working-hours i {
    color: var(--primary-color);
    font-size: 18px;
}

.contact-visual {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.contact-logo-big {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.contact-visual h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-visual p {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer Section */
.footer-area {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-white-muted);
}

.developer-tag {
    font-size: 12px;
    color: var(--primary-color);
    margin-top: 8px;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 17, 26, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    animation: fadeIn 0.4s ease;
}

.lightbox-content {
    max-width: 80%;
    max-height: 75vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}

html[dir="rtl"] .close-lightbox {
    left: 30px;
    right: auto;
}

html[dir="ltr"] .close-lightbox {
    right: 30px;
    left: auto;
}

.close-lightbox:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

html[dir="rtl"] .scroll-to-top {
    left: 30px;
    right: auto;
}

html[dir="ltr"] .scroll-to-top {
    right: 30px;
    left: auto;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    .about-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-info-card:last-child {
        grid-column: span 2;
    }
    .contact-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark-gradient);
        z-index: 1005;
        padding: 80px 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .nav-link {
        font-size: 18px;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 34px;
    }
    .hero-desc {
        font-size: 16px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .stat-card {
        flex: 1 1 40%;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-info-card:last-child {
        grid-column: span 1;
    }
    .about-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-main-img {
        height: 280px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .stat-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .contact-card {
        padding: 24px;
    }
    .phone-num {
        font-size: 18px;
    }
}
