:root {
    --primary: #1a3c34;
    --primary-lt: #255247;
    --accent: #c9a04a;
    --accent-dk: #b8976b;
    --accent-lt: #f5ead6;
    --bg: #fdfaf5;
    --card: #ffffff;
    --text: #1e2d27;
    --text-muted: #5a7268;
    --border: #e4d5bc;
    --border-lt: #f0e8d8;
    --focus: rgba(201, 160, 74, 0.18);
    --shadow-xs: 0 2px 8px rgba(26, 60, 52, 0.06);
    --shadow-sm: 0 6px 24px rgba(26, 60, 52, 0.10);
    --shadow-md: 0 16px 48px rgba(26, 60, 52, 0.14);
    --shadow-lg: 0 28px 72px rgba(26, 60, 52, 0.18);
    --radius: 14px;
    --radius-lg: 20px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-width: 270px;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', system-ui, sans-serif;
    line-height: 1.65;
    font-size: 15px;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

/* ═══════════ PAGE LOADER ═══════════ */
#pageLoader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#pageLoader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-ring {
    width: 52px;
    height: 52px;
    border: 4px solid var(--border-lt);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin-bottom: 1.3rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.loader-logo span {
    color: var(--accent);
}

.loader-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

/* ═══════════ NAVBAR ═══════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 250, 245, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-lt);
    padding: 0 5%;
    height: 66px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 4vw, 1.85rem);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.94rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
    border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
    flex-shrink: 0;
}

.hamburger:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.87rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
}

.lang-btn:hover {
    border-color: var(--accent);
    background: var(--accent-lt);
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    z-index: 1100;
    overflow: hidden;
}

.lang-menu.show {
    display: block;
}

.lang-menu button {
    display: block;
    width: 100%;
    padding: 0.65rem 1.1rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    transition: background 0.15s;
}

.lang-menu button:hover {
    background: var(--accent-lt);
}

.lang-menu button.active {
    color: var(--accent);
    font-weight: 600;
}

@media (max-width:820px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 88px 2rem 2rem;
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
        border-left: 1px solid var(--border);
        z-index: 1000;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0.3rem;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.05rem;
        width: 100%;
        padding: 0.7rem 0;
        border-bottom: 1px solid var(--border-lt);
        color: var(--text);
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links .lang-selector {
        display: block;
        width: 100%;
        margin-top: 1.2rem;
    }

    .nav-links .lang-selector .lang-menu {
        position: static;
        box-shadow: none;
        border: 1px solid var(--border);
        margin-top: 6px;
        width: 100%;
        border-radius: 10px;
    }

    .nav-links .lang-selector .lang-btn {
        width: 100%;
        justify-content: space-between;
        padding: 0.7rem 1rem;
    }
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 15, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    backdrop-filter: blur(2px);
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ═══════════ HERO — RICH IMAGE BG ═══════════ */
.hero {
    position: relative;
    height: clamp(520px, 65vh, 580px);
    overflow: hidden;
    color: white;
    display: flex;
    align-items: flex-end;
}

/* The actual background image layer */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* Primary: Luxor / Karnak Temple aerial — vivid, recognizable Egypt */
    background-image: url('https://images.unsplash.com/photo-1585155784229-aff921ccfa10?w=1800&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    /* Subtle Ken Burns zoom */
    animation: heroBgZoom 14s ease-out forwards;
    will-change: transform;
}

@keyframes heroBgZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1.0);
    }
}

/* Multi-layer gradient overlay for depth + text legibility */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        /* Top vignette */
        linear-gradient(to bottom,
            rgba(10, 28, 22, 0.55) 0%,
            rgba(10, 28, 22, 0.15) 35%,
            rgba(10, 28, 22, 0.10) 55%,
            rgba(26, 60, 52, 0.72) 85%,
            rgba(26, 60, 52, 0.95) 100%),
        /* Warm golden left wash for branding harmony */
        linear-gradient(110deg,
            rgba(201, 160, 74, 0.18) 0%,
            transparent 50%);
}

/* Decorative gold accent line at bottom */
.hero-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent) 20%,
            #f5d98a 50%,
            var(--accent) 80%,
            transparent 100%);
    opacity: 0.7;
}

/* Wave cutout into page body */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    height: 80px;
    background: var(--bg);
    clip-path: ellipse(75% 100% at 50% 100%);
}

/* Floating decorative icon top-right */
.hero-decor {
    position: absolute;
    top: 2rem;
    right: 6%;
    z-index: 4;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(201, 160, 74, 0.18);
    border: 1px solid rgba(201, 160, 74, 0.35);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #f5d98a;
    animation: heroDecorFloat 4s ease-in-out infinite;
}

@keyframes heroDecorFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Breadcrumb strip */
.hero-breadcrumb {
    position: absolute;
    top: 1.6rem;
    left: 6%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-breadcrumb a:hover {
    color: #f5d98a;
}

.hero-breadcrumb i {
    font-size: 0.6rem;
    color: var(--accent);
}

.hero-breadcrumb .crumb-current {
    color: var(--accent);
    font-weight: 600;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 4;
    padding: 0 6% 7.5rem;
    width: 100%;
    max-width: 900px;
    animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.15s;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 160, 74, 0.18);
    border: 1px solid rgba(201, 160, 74, 0.38);
    color: #f5d98a;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 7vw, 4.4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero h1 em {
    color: #f5d98a;
    font-style: italic;
}

.hero-sub {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    line-height: 1.7;
}

/* Hero stat pills */
.hero-pills {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.4s;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
}

.hero-pill i {
    color: #f5d98a;
    font-size: 0.7rem;
}

@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: 60px;
    }

    .hero-content {
        padding-bottom: 7.5rem;
    }

    .hero-decor {
        display: none;
    }

    .hero-pills {
        display: none;
    }
}

/* ═══════════ PAGE BODY ═══════════ */
.page-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5% 6rem;
}

.split {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3.5rem;
    align-items: start;
}

@media (max-width:980px) {
    .split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ═══════════ FORM CARD ═══════════ */
.form-card {
    background: var(--card);
    border: 1px solid var(--border-lt);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.form-card-header {
    background: var(--primary);
    padding: 1.6rem 2rem;
}

.fch-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.3rem;
}

.fch-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 700;
    color: white;
}

.fch-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.2rem;
}

.form-card-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.84rem;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.78rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.91rem;
    background: var(--bg);
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0b0ab;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--focus);
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

@media (max-width:480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.btn-send {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.22s;
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-send:hover:not(:disabled) {
    background: var(--accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 160, 74, 0.35);
}

.btn-send:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-send.loading .btn-send-text {
    opacity: 0;
}

.btn-send.loading .btn-send-spinner {
    opacity: 1;
}

.btn-send-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s;
}

.btn-send-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.btn-send-spinner .spin-ring {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top: 2.5px solid white;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
    flex-shrink: 0;
}

.btn-send-spinner span {
    font-size: 0.9rem;
    font-weight: 600;
}

.status-msg {
    margin-top: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.status-msg.show {
    opacity: 1;
    max-height: 140px;
    padding: 0.85rem 1.1rem;
}

.status-msg.success {
    background: #eaf6eb;
    color: #2f6e37;
}

.status-msg.error {
    background: #fff0f0;
    color: #c53030;
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.77rem;
    color: var(--text-muted);
    margin-top: 0.85rem;
}

.form-trust i {
    color: var(--accent);
}

/* ═══════════ INFO PANEL ═══════════ */
.info-panel {}

.info-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-lead {
    color: var(--text-muted);
    font-size: 0.97rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card);
    border: 1px solid var(--border-lt);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-xs);
    transition: all 0.22s;
    text-decoration: none;
    color: var(--text);
}

.contact-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.ci-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--accent-lt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    transition: all 0.22s;
}

.contact-item:hover .ci-icon {
    background: var(--accent);
    color: white;
}

.ci-body {
    min-width: 0;
}

.ci-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.ci-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.wa-cta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.6rem;
    text-decoration: none;
    color: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
    margin-bottom: 2.4rem;
}

.wa-cta:hover {
    background: var(--primary-lt);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.wa-cta-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #5ef08a;
}

.wa-cta-body {
    flex: 1;
    min-width: 0;
}

.wa-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.wa-cta-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.wa-cta-arrow {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.hours-card {
    background: var(--accent-lt);
    border: 1px solid rgba(201, 160, 74, 0.3);
    border-radius: var(--radius);
    padding: 1.2rem 1.4rem;
}

.hours-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(201, 160, 74, 0.15);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row strong {
    color: var(--primary);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ═══════════ FOOTER ═══════════ */
footer {
    background: var(--primary);
    color: #c8ddd8;
    text-align: center;
    padding: 3.5rem 5% 2.5rem;
    font-size: 0.92rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.4rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.2rem);
    margin: 1.2rem 0 1.8rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #c8ddd8;
    text-decoration: none;
    transition: color 0.22s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 1.8rem);
    margin: 1rem 0 1.8rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #c8ddd8;
    font-size: 1.1rem;
    transition: all 0.25s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    opacity: 0.65;
    font-size: 0.84rem;
}

[dir="rtl"] .navbar,
[dir="rtl"] .footer-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .lang-btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-item:hover {
    transform: translateX(-4px);
}

@media (max-width:360px) {
    :root {
        font-size: 13px;
    }

    .navbar {
        padding: 0 3%;
        height: 58px;
    }

    .page-body {
        padding: 2rem 3% 4rem;
    }
}

/* ═══════════ FOOTER ═══════════ */
footer {
    background: var(--primary);
    color: #c8ddd8;
    padding: 4rem 5% 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width:900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width:520px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.9rem;
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.07);
    color: #c8ddd8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.25s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.55rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1280px;
    margin: 1.8rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

footer a , footer div, footer p  {
        text-align: left;
    } 