/* =========================================
   1. Fonts, Reset & Variables (Updated)
   ========================================= */
@font-face {
    font-family: 'Dana';
    src: url('/fonts/Dana-Medium.woff2?v=1000') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Brand Colors */
    --brand-navy: #121D35;
    --brand-navy-rgb: 18, 29, 53;
    --brand-gold: #C5A66B;
    --brand-gold-rgb: 197, 166, 107;
    --brand-gold-light: #e2cfab;
    /* Modern UI Colors & Glass */
    --text-light: #f4f4f4;
    --text-white: #ffffff;
    --color-muted: #556075;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    /* Gradients & Shadows */
    --hero-overlay-gradient: linear-gradient(to bottom, rgba(18, 29, 53, 0.9) 0%, rgba(18, 29, 53, 0.85) 50%, rgba(18, 29, 53, 0.95) 100%);
    --card-shadow: 0 10px 30px rgba(18, 29, 53, 0.08);
    --card-shadow-hover: 0 20px 40px rgba(18, 29, 53, 0.15);
    /* Sizing & Animation */
    --radius-lg: 25px;
    --radius-pill: 50px;
    --max-width: 1200px;
    --fw-medium: 600;
    --fw-bold: 800;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar [NEW] */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-navy);
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--brand-gold);
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Dana', 'Vazirmatn', Tahoma, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #f0f2f5; /* [Updated] Slightly cleaner grey */
    color: var(--brand-navy);
    line-height: 1.6;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* =========================================
   2. Header & Navigation (Glass Effect)
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

    .site-header.scrolled {
        background: rgba(18, 29, 53, 0.85); /* [FIXED] Glass Effect */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 10px 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        border-bottom: 1px solid rgba(197, 166, 107, 0.15);
    }

.header-container {
    width: min(92%, 1400px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

    .logo-text span {
        color: var(--brand-gold);
    }

/* Desktop Menu */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 2px;
        background: var(--brand-gold);
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        color: var(--brand-gold);
    }

        .nav-link:hover::after {
            width: 100%;
        }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cta-btn {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light)); /* [Updated] Gradient Button */
    color: var(--brand-navy);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(197, 166, 107, 0.3);
}

    .header-cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(197, 166, 107, 0.5);
    }

/* Hamburger Menu */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

/* Mobile Drawer (Improved) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80%); /* [FIXED] Better mobile sizing */
    height: 100vh;
    background: var(--brand-navy);
    z-index: 1002;
    padding: 20px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 2px solid var(--brand-gold);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.mobile-logo-text {
    color: var(--brand-gold);
    font-weight: bold;
    font-size: 18px;
}

.close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

    .mobile-link:hover {
        background: rgba(255,255,255,0.05);
        color: var(--brand-gold);
        padding-right: 15px;
    }

.mobile-menu-footer {
    margin-top: auto;
}

.mobile-cta {
    display: block;
    text-align: center;
    background: var(--brand-gold);
    color: var(--brand-navy);
    padding: 14px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(197, 166, 107, 0.2);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* =========================================
   3. Hero Section (Glass Mode)
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-image: url('/H-IMG/man-playing-padel-9KR4F3U-e1750063137155-compressed.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay-gradient);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    /* [NEW] Glassmorphism Style */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hero-title {
    color: var(--text-white);
    font-weight: 900;
    line-height: 1.3;
    margin: 0;
    font-size: clamp(2rem, 5vw, 4.5rem);
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

    .hero-title span {
        display: block;
        opacity: 0;
        transform: translateY(30px);
        will-change: transform, opacity;
        animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }

        .hero-title span:nth-child(1) {
            animation-delay: 0.2s;
        }

        .hero-title span:nth-child(2) {
            animation-delay: 0.4s;
            color: var(--brand-gold);
        }

        .hero-title span:nth-child(3) {
            animation-delay: 0.6s;
        }

.hero-subtitle {
    color: #e0e0e0;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 0.8s;
}

.hero-consult-btn {
    display: inline-block;
    background-color: var(--brand-gold);
    color: var(--brand-navy);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(197, 166, 107, 0.4);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

    .hero-consult-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(197, 166, 107, 0.6);
        background-color: var(--brand-gold-light);
    }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 1.5s;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--brand-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

/* =========================================
   4. About Section
   ========================================= */
.about {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #f9f9f9;
    isolation: isolate;
    z-index: 1;
}

    .about::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(var(--brand-gold) 1px, transparent 1px);
        background-size: 30px 30px;
        opacity: 0.1;
        z-index: -1;
    }

.about__container {
    width: min(90%, 1200px);
    margin-inline: auto;
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.about__media {
    flex: 1;
    display: flex;
}

.about__image-box {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: visible;
    z-index: 2;
}

    .about__image-box::before {
        content: "";
        position: absolute;
        top: -30px;
        right: -30px;
        width: 150px;
        height: 150px;
        border: 3px solid var(--brand-gold);
        border-radius: 50%;
        z-index: -1;
        opacity: 0.3;
        transition: transform 0.5s ease;
    }

.about__container:hover .about__image-box::before {
    transform: scale(1.2) translate(10px, -10px);
}

.about__image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}

.about__caption {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    background: var(--brand-navy);
    padding: 25px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.about__caption-text {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.about__caption-link {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: var(--brand-gold);
}

.about__content {
    flex: 1.1;
    position: relative;
}

    .about__content::after {
        content: "PADEL";
        position: absolute;
        top: -70px;
        left: -20px;
        font-size: clamp(80px, 15vw, 150px);
        font-weight: 900;
        color: var(--brand-navy);
        opacity: 0.03;
        z-index: -1;
        letter-spacing: 10px;
        font-family: sans-serif;
        pointer-events: none;
        line-height: 1;
    }

.about__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-gold);
    color: var(--brand-navy);
    padding: 6px 15px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about__tag-dot {
    width: 10px;
    height: 10px;
    background: var(--brand-navy);
    border-radius: 50%;
}

.about__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: var(--fw-bold);
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--brand-navy);
}

.about__desc {
    font-size: 16px;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    gap: 50px;
    margin-top: 30px;
    justify-content: center;
}

.about__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about__stat-number {
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--brand-gold);
    border-bottom: 3px solid var(--brand-gold);
    padding-bottom: 5px;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
    will-change: transform, opacity;
    display: inline-block;
}

.about__stat-label {
    font-size: 15px;
    color: var(--color-muted);
    margin-top: 5px;
}

/* =========================================
   5. Projects: Modern Hover Overlay (NEW)
   ========================================= */
.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    background: #000;
}

    .project-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 29, 53, 0.5); /* Navy overlay */
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.5s ease;
    padding: 20px;
    text-align: center;
}

    .project-overlay h3 {
        color: var(--brand-gold);
        font-size: 22px;
        transform: translateY(20px);
        transition: transform 0.5s ease;
        margin-bottom: 10px;
    }

    .project-overlay p {
        color: #fff;
        font-size: 14px;
        transform: translateY(30px);
        transition: transform 0.5s ease 0.1s;
    }

.view-project-btn {
    margin-top: 20px;
    padding: 8px 20px;
    background: var(--brand-gold);
    color: var(--brand-navy);
    border-radius: 50px;
    font-weight: bold;
    font-size: 13px;
    text-decoration: none;
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

/* Hover States */
.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.project-card:hover h3,
.project-card:hover p {
    transform: translateY(0);
}

.project-card:hover .view-project-btn {
    opacity: 1;
}

/* =========================================
   6. Services Section
   ========================================= */
.services-section {
    width: 100%;
    padding: 50px 0;
}

.services-container {
    width: min(90%, 1200px);
    margin: auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

    .services-header .title {
        font-size: 32px;
        font-weight: 700;
        color: var(--brand-navy);
    }

.view-all {
    background: var(--brand-gold);
    color: var(--brand-navy);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

    .view-all:hover {
        transform: translateX(5px);
    }

.services-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.4s;
    flex: 1 1 250px;
    box-shadow: var(--card-shadow);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--card-shadow-hover);
    }

.service-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: 0.4s;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--brand-gold);
    color: var(--brand-navy);
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 20px;
}

.service-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .service-info h3 {
        font-size: 16px;
        margin: 0;
        color: var(--brand-navy);
    }

.arrow {
    background: var(--brand-navy);
    color: var(--brand-gold);
    padding: 5px 8px;
    border-radius: 50%;
    font-size: 12px;
}

/* =========================================
   7. Community & Blog Sections
   ========================================= */
.wrap {
    width: min(90%, 1200px);
    margin: 60px auto;
    padding: 20px;
}

.community {
    display: flex;
    gap: 50px;
    align-items: center;
}

.community__media {
    flex: 1;
    position: relative;
}

.community__img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.community__img {
    width: 100%;
    display: block;
}

.community__promo {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-gold);
    border-radius: 18px;
    padding: 20px;
    max-width: 50%;
    box-shadow: var(--card-shadow);
}

    .community__promo h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: var(--brand-navy);
    }

    .community__promo a {
        color: var(--brand-navy);
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
    }

.community__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.community__label {
    background: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--color-muted);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    width: fit-content;
}

.community__title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 800;
    color: var(--brand-navy);
}

.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature__icon {
    width: 50px;
    height: 50px;
    background: var(--brand-gold);
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
}

.feature__title {
    font-size: 18px;
    font-weight: bold;
    color: var(--brand-navy);
    margin-bottom: 5px;
}

/* Blog */
.blog-tips-section {
    width: min(90%, 1200px);
    margin: 80px auto;
}

.blog-header {
    margin-bottom: 30px;
}

    .blog-header h2 {
        font-size: clamp(28px, 4vw, 42px);
        color: var(--brand-navy);
        margin: 10px 0;
    }

.blog-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.blog-card {
    flex: 1 1 300px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--card-shadow);
    transition: 0.3s;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--card-shadow-hover);
    }

.blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-info {
    padding: 20px;
}

.blog-meta {
    font-size: 13px;
    color: var(--brand-gold);
    margin-bottom: 8px;
    font-weight: bold;
    display: flex;
    gap: 10px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.4;
}

/* =========================================
   8. Slider Section
   ========================================= */
#OUR-OTHER-PROJECTS {
    text-align: center;
    margin-top: 80px;
    font-size: 2rem;
    color: var(--brand-navy);
    font-weight: 800;
}

.adelux-slider {
    width: min(100%, 1100px);
    height: 480px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid var(--brand-gold);
    background: #000;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: block !important;
}

    .slide.active {
        opacity: 1;
        z-index: 1;
    }

.adelux-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 15px;
    font-size: 24px;
    background: rgba(18, 29, 53, 0.7);
    color: var(--brand-gold);
    cursor: pointer;
    border-radius: 50%;
    z-index: 5;
    transition: 0.3s;
}

    .slider-nav span:hover {
        background: var(--brand-navy);
    }

.slider-nav .prev {
    right: 20px;
}

.slider-nav .next {
    left: 20px;
}

/* =========================================
   9. Footer Section (Fixed Layering)
   ========================================= */
.site-footer {
    font-family: 'Dana', 'Vazir', sans-serif;
    direction: rtl;
    color: var(--text-light);
}

.footer-container {
    position: relative;
    padding: 60px 20px;
    background-color: var(--brand-navy);
    background-size: cover;
    background-position: center;
    isolation: isolate; /* [FIXED] Stops background bleed */
}

    .footer-container::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(18, 29, 53, 0.95), rgba(18, 29, 53, 0.98));
        z-index: -1;
    }

.footer-top, .footer-bottom {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 40px;
}

.go-top-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
}

    .go-top-btn:hover {
        color: var(--brand-gold);
    }

    /* SVG Fix */
    .go-top-btn img, .go-top-btn svg {
        width: 24px;
        filter: brightness(0) invert(1);
    }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 50px;
    text-align: right;
}

.footer-col {
    flex: 1 1 250px;
    padding-top: 20px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--brand-gold);
    border-bottom: 2px solid var(--brand-gold);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.quick-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .quick-links a {
        display: block;
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: 0.3s;
        padding: 5px 0;
    }

        .quick-links a:hover {
            color: var(--brand-gold);
            transform: translateX(-5px);
        }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

    .contact-item img, .contact-item svg {
        width: 20px;
        filter: brightness(0) invert(1);
        margin-top: 4px;
    }

    .contact-item a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: 0.3s;
    }

        .contact-item a:hover {
            color: var(--brand-gold);
        }

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

    .social-links a {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: 0.3s;
        padding: 6px 12px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.05);
    }

        .social-links a:hover {
            color: var(--brand-navy);
            background: var(--brand-gold);
        }

    .social-links img {
        width: 22px;
        filter: brightness(0) invert(1);
        transition: 0.3s;
    }

    .social-links a:hover img {
        filter: brightness(0); /* Black icon on Gold bg */
    }

/* =========================================
   10. Animations & Media Queries
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .desktop-nav, .header-cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section-container, .about__container {
        flex-direction: column;
    }

    .right-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-links, .quick-links, .footer-top {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 20px; /* Less padding on mobile glass */
    }

    .hero-title {
        line-height: 1.2;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-consult-btn {
        width: 100%;
        max-width: 300px;
    }

    .about__content::after {
        font-size: 80px;
        top: -40px;
    }

    .about {
        padding: 60px 0;
    }

    .right-col {
        grid-template-columns: 1fr;
    }

    .community {
        flex-direction: column;
    }

    .community__promo {
        position: relative;
        top: -20px;
        right: 0;
        max-width: 90%;
        margin: 0 auto;
    }

    .adelux-slider {
        height: 300px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }
}
/* =========================================
   Internal Pages Fix (تنظیمات صفحات داخلی)
   ========================================= */

/* 1. ایجاد فاصله از بالا تا محتوا زیر هدر نرود */
body.internal-page main {
    padding-top: 140px !important;
    min-height: 100vh; /* اطمینان از پر شدن ارتفاع صفحه */
}

/* 2. تغییر رنگ لینک‌های منو به سرمه‌ای (فقط وقتی اسکرول نشده) */
body.internal-page .site-header:not(.scrolled) .nav-link {
    color: var(--brand-navy) !important;
}

/* 3. تغییر رنگ لوگوی متنی به سرمه‌ای */
body.internal-page .site-header:not(.scrolled) .logo-text {
    color: var(--brand-navy) !important;
}

/* 4. تغییر رنگ دکمه همبرگری موبایل به سرمه‌ای */
body.internal-page .site-header:not(.scrolled) .hamburger span {
    background: var(--brand-navy) !important;
}

/* 5. خط زیر لینک‌ها در حالت هاور (طلایی بماند) */
body.internal-page .site-header:not(.scrolled) .nav-link::after {
    background: var(--brand-gold) !important;
}

/* 6. تنظیم دکمه مشاوره (حالت توخالی برای دیده شدن روی زمینه سفید) */
body.internal-page .site-header:not(.scrolled) .header-cta-btn {
    background: transparent;
    border: 2px solid var(--brand-navy);
    color: var(--brand-navy);
    box-shadow: none;
}

    body.internal-page .site-header:not(.scrolled) .header-cta-btn:hover {
        background: var(--brand-navy);
        color: #fff;
    }
