:root {
    /*--earth-dark: #6b4b2a;*/
    --earth: #8a6a45;
    --sand: #fbf7f2;
    --sand-soft: #f3eadf;
    --gold: #e0b65c;
    --ink: #3a2a1a;

    ---earth-dark: #2b2b2b;
    --earth-mid: #5a4a3a;
    --earth-light: #f3efe6;
    --accent: #8c6b3f;
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--sand);
    color: var(--ink);
}

p {
    text-align: justify;
}

/* ================= NAV ================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    
    background: #ffffff2b;
    border-bottom: 2px solid #ffffff21;
    border-top: 2px solid #ffffff21;
    
    box-shadow: 2px 2px 16px #3a2a1a54;
}

nav {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

nav img {
    height: 64px;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 50%;
    /* Ensures it stays circular */
    display: block;
    /* Remove any inline spacing issues */
}

/* Subtle hover effect */
nav img:hover {
    transform: scale(1.08);
    /* Slightly enlarge */
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
    /* Works with transparent bg */
}

nav .logo {
    font-family: 'Playfair Display', serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

nav .logo-name {
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav .logo-name p {
    font-size: 14px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: var(--earth);
}

nav #contact {
    background: linear-gradient(135deg, var(--gold), #f3c766);
    border: 2px solid #8d3c1f;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(215, 170, 90, 0.45);
    padding: 6px 32px;
}

nav #contact:hover {
    color: white;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--ink);
    cursor: pointer;
}

.content-width {
    max-width: 1200px;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ink);
    padding: 7rem 1.5rem 9rem;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 1.8s ease-in-out;

    transform: scale(1.08);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-bg.active {
    opacity: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
          rgb(186 122 41 / 65%),   /* warm amber / burnt gold */
          rgba(251, 247, 242, 0.15) /* soft warm ivory */
        );
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 140px;
    background: var(--sand);
    border-top-left-radius: 100% 120px;
    border-top-right-radius: 100% 120px;
}

.hero-content {
    max-width: 900px;
}

.hero h1:first-of-type {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
    color: white;
    text-shadow: 2px 2px 6px black;
}

/* Era / lineage */
.hero h1:last-of-type {
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    /*color: var(--earth-dark);*/
    margin-bottom: 1.8rem;
    opacity: 0.75;
    color: white;
    text-shadow: 2px 2px 6px black;
}

.hero p {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.65;
    color: white;
    text-shadow: 2px 2px 6px black;
}

/* CTA */
.hero button {
    position: relative;
    padding: 1rem 2.8rem;
    background: linear-gradient(135deg, var(--gold), #f3c766);
    border: none;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(215, 170, 90, 0.45);
}

.hero button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(215, 170, 90, 0.55);
}

@keyframes slowZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }
}

@media (max-width: 768px) {
    .hero-bg {
        object-fit: cover;
        object-position: 100% center; /* start at right */
        animation: panImage 16s infinite alternate;
    }
}

@keyframes panImage {
    0% {
        object-position: 100% center; /* start right */
    }

    30% {
        object-position: 60% center;  /* fast start (covers more distance early) */
    }

    60% {
        object-position: 50% center;  /* slow middle (small movement) */
    }

    100% {
        object-position: 0% center;   /* faster end toward left */
    }
}

/* ================= SECTIONS ================= */
section {
    padding: 4.5rem 1.5rem;
    margin: auto;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--earth);
    text-align: center;
}

/* ===================== ABOUT ===================== */
.about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about img {
    max-width: 400px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

/* ===================== STATEMENT ===================== */
.statement {
    background: #fff;
    border-left: 6px solid var(--gold);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    font-size: 1.05rem;
}

.card.statement {
    text-align: justify;
}

/* ===================== CARDS ===================== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: #fff;
    padding: 2.2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    text-align: center;
}

/* ===================== TIMELINE ===================== */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    border-left: 6px solid var(--gold);
    padding: 2.5rem;
    border-radius: 18px;
}

.event {
    margin-bottom: 2.2rem;
}

.event h4 {
    color: var(--earth-dark);
}

/* ===================== MEDIA ===================== */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.media-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    cursor: pointer;
}

.media-grid img:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 92%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.lightbox-close,
.lightbox-nav {
    color: #fff;
    cursor: pointer;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    font-size: 2.4rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    padding: 1rem;
    user-select: none;
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav:hover,
.lightbox-close:hover {
    color: var(--gold);
}

/* ===================== CTA ===================== */
.cta {
    background: linear-gradient(135deg, var(--sand-soft), #ffffff);
    color: var(--ink);
    text-align: center;
    padding: 5rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta button {
    margin-top: 2rem;
    padding: .9rem 2.4rem;
    background: var(--gold);
    border: none;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

/* ===================== References ===================== */

#references {
    padding: 6rem 2rem;
    background: linear-gradient(
        180deg,
        var(--sand-soft),
        var(--sand)
    );
}

.references-container {
    max-width: 1100px;
    margin: auto;
}

.references-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.references-header h2 {
    font-size: 2rem;
    color: var(--earth);
    margin-bottom: 1rem;
}

.references-header p {
    max-width: 760px;
    margin: auto;
    color: var(--earth-mid);
    line-height: 1.7;
}

/* Grid */

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Cards */

.reference-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: white;
    padding: 2rem;

    border-radius: 18px;

    border: 1px solid rgba(0,0,0,0.05);

    text-decoration: none;
    color: var(--ink);

    box-shadow: 0 12px 35px rgba(0,0,0,0.08);

    transition: all .35s ease;
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Source label */

.reference-meta {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: .14em;

    color: var(--accent);

    margin-bottom: .6rem;
}

/* Title */

.reference-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .8rem;
}

/* Description */

.reference-card p {
    font-size: .95rem;
    line-height: 1.6;
    color: var(--earth-mid);
    margin-bottom: 1.2rem;
}

/* Link */

.reference-link {
    font-size: .9rem;
    font-weight: 600;
    color: var(--earth);
}

.references-proof {
    max-width: 760px;
    margin: 1.5rem auto 3rem auto;
    padding: 1rem 1.4rem;

    font-size: 0.9rem;
    line-height: 1.6;

    color: var(--earth-mid);

    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.06);

    border-left: 6px solid var(--gold);

    border-radius: 8px;

    text-align: center;
}

/* ===================== LIVING MEMORY ===================== */
.media-grid img {
    transition: opacity 0.8s ease-in-out, transform 0.8s ease;
}

.media-grid.fade-out img {
    opacity: 0;
    transform: scale(0.95);
}

.media-grid.fade-in img {
    opacity: 1;
    transform: scale(1);
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--sand-soft);
    color: var(--ink);
    padding: 3rem 1.25rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
}

.footer-identity strong {
    display: block;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}

.footer-identity span {
    font-size: 0.85rem;
    opacity: 0.85;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    opacity: 0.85;
}

.footer-links a:hover {
    color: var(--earth);
    opacity: 1;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-dev {
    opacity: 0.7;
    font-size: 0.85rem;
}

.footer-dev a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-dev a:hover {
    opacity: 1;
    border-bottom-color: currentColor;
}


@media (min-width: 768px) {
    .footer-inner {
        gap: 1.6rem;
    }
}

/* MOBILE NAV */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 240px;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem 1.5rem;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.32s ease, opacity 0.32s ease;
        box-shadow: -6px 0 30px rgba(0, 0, 0, 0.12);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0%);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        margin-bottom: 1.4rem;
        font-size: 1.05rem;
        color: var(--ink);
    }

    .hero p {
        margin-top: 170px;
    }
}

.glossary {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #555;
    max-width: 760px;
}

.glossary-wrap {
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 960px;
    margin: auto;
}

/* ===================== Mission Vision ===================== */
.kai-korana-section .content-width {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.kai-korana-section {
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--earth-dark);
    padding: 4rem 2rem;
    line-height: 1.75;
    background-color: var(--earth-light);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%239b8b6a' stroke-width='1' opacity='0.15'%3E%3Cpath d='M50 100 Q150 50 250 120 T450 140'/%3E%3Cpath d='M80 300 Q200 260 320 330 T520 350'/%3E%3Cpath d='M120 500 Q260 450 380 520 T580 540'/%3E%3Cpath d='M100 50 L500 550'/%3E%3Cpath d='M500 60 L90 520'/%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(circle at 20% 20%, rgba(140, 107, 63, 0.08), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.05), transparent 65%);
    background-repeat: repeat;
    background-size: 600px 600px, cover, cover;
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.08);
}

.kai-korana-section h2 {
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.04em;
    text-align: center;
}

.kai-korana-tagline {
    font-style: italic;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--earth-mid);
    text-align: center!important;
}

.kai-korana-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 2.8rem;
    margin-bottom: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid rgba(0,0,0,0.08);
    padding-bottom: 0.3rem;
}

.kai-korana-section p {
    font-size: 1.08rem;
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.kai-korana-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.4rem 1.6rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--earth-dark);
}

.kai-korana-objectives {
    margin-top: 1rem;
    margin-left: 1.2rem;
    padding-left: 0;
    list-style-type: lower-alpha;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
}

.kai-korana-objectives li {
    margin-bottom: 0.8rem;
}

/* ================= JOIN US ON FACEBOOK ================= */
.movement-section {
    max-width: 520px;
    margin: 40px auto;
    padding: 30px 25px;
    text-align: center;
    color: #fff;

    /* Landscape background */
    background:
        linear-gradient(rgba(110, 65, 35, 0.75), rgba(80, 45, 25, 0.85)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1200&auto=format&fit=crop');

    background-size: cover;
    background-position: center;
    border-radius: 6px;

    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

/* TITLE */
.movement-section h2 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: #f7b733;
}

/* SUBTEXT */
.movement-section p {
    margin: 10px 0 20px;
    font-size: 14px;
    opacity: 0.95;
}

/* FACEBOOK BUTTON */
.fb-btn {
    display: inline-flex;
    align-items: center;

    padding: 10px 18px;
    border-radius: 6px;

    background: linear-gradient(#3b73c5, #2f5fa5);
    color: #fff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;

    border: 1px solid #244a86;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.25),
        0 2px 3px rgba(0,0,0,0.3);
        
    width: 300px;          /* fixed width */
    height: 50px;          /* fixed height */

    text-decoration: none;
    user-select: none;
}
.fb-btn.loading {
    cursor: default;
}

.fb-circle {
    width: 40px;      /* increase size */
    height: 40px;

    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

/* make SVG scale nicely */
.fb-circle svg {
    width: 100%;  /* adjust icon size inside */
    height: 100%;
}

/* hover effect (subtle like screenshot) */
.fb-btn:hover {
    background: linear-gradient(#4a82d4, #356bb8);
}

/* DIVIDER */
.divider {
    margin: 18px 0;
    font-weight: bold;
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 32%;
    height: 1px;
    background: rgba(255,255,255,0.4);
}

.divider::before { left: 0; }
.divider::after { right: 0; }

/* INPUT */
.signup {
    display: flex;
    margin-bottom: 15px;
}

.signup input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 3px 0 0 3px;
    font-size: 14px;
}

.signup button {
    padding: 10px 16px;
    border: none;
    background: linear-gradient(#f7b733, #f39c12);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
}

.signup button:hover {
    filter: brightness(1.1);
}

/* FOOT TEXT */
.supporters {
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    margin-top: 24px;
}

.signup-message {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    color: #5a4a3f;
}

.signup-message.show {
    opacity: 1;
    transform: translateY(0);
}

.signup-message.success {
    color: #2e7d32;
}

.signup-message.error {
    color: #c62828;
}

.signup button {
    transition: all 0.3s ease;
}

.signup button.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ================================
   CONTACT SECTION
================================ */

.contact-section {
    padding: 80px 20px;
    background: #f9f7f4;
}

.contact-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 50px;
    margin-top: 50px;
    color: #2e2e2e;
}

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

/* ================================
   GRID LAYOUT
================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

/* ================================
   CONTACT CARD
================================ */

.contact-details {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 10px;
    color: #8a6a45;
}

.contact-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.6;
    color: #444;
}

.contact-details a {
    color: #8a6a45;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.contact-details a:hover {
    color: #5c452d;
}

/* ================================
   WHATSAPP BUTTON
================================ */

.whatsapp-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* ================================
   MAP
================================ */

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* ================================
   ANIMATION
================================ */

.contact-details,
.contact-map {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease;
}

.contact-grid.show .contact-details {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.contact-grid.show .contact-map {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}


/* ================================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .contact-details {
        padding: 30px;
    }

    .contact-map {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .contact-details h3 {
        font-size: 20px;
    }

    .contact-details p {
        font-size: 14px;
    }
}
