html {
    scroll-behavior: smooth;
}

/* Menu link animation */
.menu-link {
    opacity: 0;
    transform: translateX(20px);
    animation: fadeSlide 0.6s ease forwards;
}

.menu-link:nth-child(1) { animation-delay: 0.1s; }
.menu-link:nth-child(2) { animation-delay: 0.15s; }
.menu-link:nth-child(3) { animation-delay: 0.2s; }
.menu-link:nth-child(4) { animation-delay: 0.25s; }
.menu-link:nth-child(5) { animation-delay: 0.3s; }
.menu-link:nth-child(6) { animation-delay: 0.35s; }
.menu-link:nth-child(7) { animation-delay: 0.4s; }

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAVBAR */
.navbar {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 25px;

    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* LEFT GHOST SPACE */
.nav-left {
    width: 60px;
}

/* CENTER LOGO */
.nav-logo {
    position: relative;
}

.nav-logo img {
    height: 55px;
    width: auto;
    display: block;
}

/* RIGHT HAMBURGER */
.hamburger {
    width: 45px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    cursor: pointer;
    background: none;
    z-index: 10000;
}

/* GLASS EFFECT */
.glass-hamburger {
    padding: 10px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 5px 25px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.glass-hamburger:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255,225,150,0.4);
}

/* hamburger lines */
.hamburger span {
    height: 3.2px;
    width: 100%;
    background: white;
    border-radius: 4px;
    transition: 0.45s cubic-bezier(0.19,1,0.22,1);
}

/* Active to X */
.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* SLIDE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;

    padding-top: 120px;

    transition: 0.45s cubic-bezier(0.19,1,0.22,1);

    background: rgba(25,25,25,0.32);
    backdrop-filter: blur(22px);
    border-left: 1px solid rgba(255,255,255,0.1);

    z-index: 9998;
}

.mobile-menu.open {
    right: 0;
}

/* MENU LINKS */
.menu-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 40px;
}

.menu-inner a {
    color: white;
    font-size: 23px;
    text-decoration: none;
    position: relative;
    transition: 0.35s ease;
}

.menu-inner a:hover {
    transform: translateX(12px);
    color: #FFE6B3;
}


/* ========================= HERO SECTION (GRADIENT + EFFECTS) ========================= */

.new-hero {
    background: linear-gradient(to bottom, #edd9b0 0%, #d8c7a8 50%, #fae8c6 100%);
    padding: 180px 20px 120px;
    text-align: center;
    font-family: "Playfair Display", serif;
    position: relative;
    overflow: hidden;
}

/* Vignette effect */
.new-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
}

/* Soft glow behind heading */
.new-hero::after {
    content: "";
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 320px;
    background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
    filter: blur(45px);
    opacity: 0.7;
    animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
    100% { transform: translateX(-50%) translateY(30px); opacity: 0.85; }
}

/* ========================= HERO TEXT ========================= */

.hero-heading {
    font-family: "Abril Fatface", serif;
    font-size: clamp(48px, 6vw, 86px);
    color: #000;
    margin-bottom: 28px;
    position: relative;
    z-index: 5;
}

.hero-quote {
    font-size: clamp(18px, 2.5vw, 22px);
    color: #3a3a3a;
    font-style: italic;
    margin-bottom: 35px;
    position: relative;
    z-index: 5;
}

.hero-arrow {
    font-size: clamp(22px, 4vw, 30px);
    margin-bottom: 38px;
    opacity: 0.85;
    animation: arrowBounce 1.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(10px); opacity: 1; }
}

.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #5a5347;
    color: white;
    font-size: clamp(15px, 2.4vw, 18px);
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 80px;
    position: relative;
    z-index: 5;
}

/* ========================= FULL-WIDTH HERO IMAGE ========================= */

.hero-img-full {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    border-radius: 0;
}

.hero-img-full img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================= ANIMATIONS ========================= */

.fade-in-up {
    opacity: 0;
    transform: translateY(45px);
    animation: fadeUp 1.1s ease-out forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.4s ease-out forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Animation delays for smooth sequence */
.hero-heading { animation-delay: 0.2s; }
.hero-quote   { animation-delay: 0.4s; }
.hero-arrow   { animation-delay: 0.6s; }
.hero-btn     { animation-delay: 0.8s; }
.hero-img-full { animation-delay: 1s; }

/* ========================= MOBILE RESPONSIVE ========================= */

@media (max-width: 600px) {
    .new-hero {
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .hero-btn {
        padding: 12px 32px;
        margin-bottom: 60px;
    }
}
/* ========================= SMOOTH FADE-IN ANIMATION ========================= */

.smooth-in {
    opacity: 0;
    transform: translateY(35px);
    animation: smoothFade 1s ease-out forwards;
}

@keyframes smoothFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay sequence */
.hero-heading { animation-delay: 0.2s; }
.hero-quote   { animation-delay: 0.4s; }
.hero-arrow   { animation-delay: 0.6s; }
.hero-btn     { animation-delay: 0.8s; }

/* ========================= SLOW ZOOM IMAGE ANIMATION ========================= */

.smooth-zoom img {
    animation: slowZoom 12s ease-in-out forwards;
    transform-origin: center;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.12); }
}

/* ========================= PARALLAX X + Y SCROLL EFFECTS ========================= */

.hero-bg {
    transition: transform 0.15s linear;
}

.hero-img-full img {
    transition: transform 0.15s ease-out;
}

.hero-inner {
    transition: transform 0.15s ease-out;
}

/* ========================= QUOTE BANNER ========================= */
.quote-banner {
    width: 100%;
    padding: 55px 20px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-banner-content {
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
}

/* JUSTIFIED QUOTE TEXT */
.quote-text {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(10px, 10vw, 27px);
    font-weight: 400;
    color: #e6d5b5;
    line-height: 1.20;
    text-align: center;
    text-justify: inter-word;
    font-style: italic;
    margin-bottom: 12px;
}

/* AUTHOR PROPER RIGHT ALIGNMENT */
.quote-author {
    font-family: "Playfair Display", serif;
    font-size: clamp(14px, 2vw, 20px);
    color: #e6d5b5;
    text-align: center;
    margin-top: 5px;
}

/* ========================= FADE IN ANIMATION ========================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ========================= RESPONSIVE ========================= */

/* Tablets */
@media (max-width: 768px) {
    .quote-banner {
        padding: 45px 18px;
    }
    .quote-banner-content {
        padding: 0 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .quote-banner {
        padding: 38px 14px;
    }
    .quote-text {
        line-height: 1.85;
    }
}

/* ========================= ABOUT SECTION ========================= */

.about-section {
    padding:8%;
    background: #d8c4a3; /* same beige as hero */
}

/* NEW MAIN TITLE */
.about-main-title {
    font-family: "Great Vibes", cursive;
    font-size: 68px;
    text-align: center;
    color: #000;
    margin-bottom: 60px;
    letter-spacing: 1px;
    font-weight: 400;
}
/* ========================= PREMIUM ACHIEVEMENTS BUTTON ========================= */
/* ========================= ABOUT CTA (Centered Premium Button) ========================= */

.about-cta {
    margin-top: 70px;        /* more space above the button */
    text-align: center;      /* centers the button */
}


/* PREMIUM BUTTON */
.achieve-btn {
    display: inline-block;
    padding: 16px 42px;
    font-size: 20px;
    letter-spacing: 1.4px;
    text-decoration: none;

    background: #000;
    color: #f6e7c5;

    border-radius: 12px;
    border: 1px solid rgba(255, 220, 165, 0.55);

    font-family: "Playfair Display", serif;
    font-weight: 600;

    transition: 0.4s ease;
    position: relative;
    overflow: hidden;

    box-shadow: 0 6px 22px rgba(0,0,0,0.28);
}


/* Hover: shine + lift */
.achieve-btn:hover {
    color: #fff4d7;
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(255, 220, 165, 0.38);
}

/* Shine effect */
.achieve-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.25) 40%,
        transparent 80%
    );
    transition: 0.7s ease;
}

.achieve-btn:hover::after {
    left: 120%;
}


/* GRID LAYOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

/* IMAGE WRAPPER - keeps image centered on all devices */
.about-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;   /* prevents image from leaking out */
    border-radius: 12px;
}

/* IMAGE - clean, responsive, centered */
.about-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    border: none !important;
    object-fit: cover;
    transition: transform 0.6s ease, box-shadow 0.45s ease;
}
/* HIDDEN STATE */
.reveal-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

/* VISIBLE STATE */
.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


/* HOVER EFFECT (desktop only) */
@media (min-width: 900px) {
    .about-img:hover {
        transform: scale(1.06);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    }
}

/* MOBILE FIX */
@media (max-width: 900px) {
    .about-img {
        width: 100%;
        max-width: 100%;
        transform: none !important;   /* disables parallax overflow */
    }

    .about-img-wrapper {
        padding: 0 10px;  /* spacing from edges */
    }
}

/* TEXT BLOCK MOBILE FIX */
@media (max-width: 900px) {
    .about-block {
        margin: 0 10px;
    }
}

/* TEXT BLOCKS */
.about-block {
    background: #000;
    color: #ddd;
    padding: 35px;
    border-radius: 14px;
    line-height: 1.75;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Headings inside blocks */
.about-block h3 {
    color: #fff;
    margin-bottom: 12px;
}

/* Bullet points */
.about-block ul li {
    color: #ddd;
    margin-bottom: 8px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================= NEW ACHIEVEMENT GRID ========================= */

.achievement-new-section {
    padding: 110px 7%;
    background: #f3e8d8;
    font-family: "Playfair Display", serif;
}

.ach-header {
    text-align: center;
    margin-bottom: 60px;
}

.ach-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
}

.ach-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    margin-top: 6px;
    opacity: 0.7;
}

/* GRID */
.achievements-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.ach-new-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    overflow: hidden;

    display: flex;
    flex-direction: column;

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ach-new-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

/* IMAGE */
.ach-img-wrap {
    height: 260px;
    overflow: hidden;
}

.ach-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ach-new-card:hover img {
    transform: scale(1.08);
}

/* TEXT */
.ach-info {
    padding: 28px 24px;
}

.ach-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.ach-info p {
    font-size: 16px;
    line-height: 1.55;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .achievements-new-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .achievements-new-grid {
        grid-template-columns: 1fr;
    }

    .ach-img-wrap {
        height: 220px;
    }
}

/* ========================= SECTION HEADING (MATCHES OTHER SECTIONS) ========================= */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: #1e1e1e;
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    opacity: 0.6;
    margin-top: 6px;
    font-family: "Playfair Display", serif;
}

/* ========================= SERVICES SECTION ========================= */

.services-section {
    background: #f6eddd;
    padding: 100px 7%;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* ========================= CARDS ========================= */

.service-card {
    padding: 40px;
    border-radius: 14px;
    cursor: default;
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

/* DARK CARD */
.dark-card {
    background: #000;
    color: #f6e6c5;
}

/* LIGHT CARD */
.light-card {
    background: #ffffff;
    color: #1a1a1a;
}

/* TITLES */
.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
}

/* BULLET LIST */
.service-list {
    padding-left: 20px;
}

.service-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
}

/* ========================= HOVER ANIMATION ========================= */

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* ========================= RESPONSIVE ========================= */

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}




/* ========================= PARALLAX BANNER ========================= */

.parallax-banner {
    position: relative;
    width: 100%;
    height: 200px;   /* ↓ Updated height */
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #000;
}

/* Background Image (Parallax X effect) */
.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%; 
    height: 100%;

    background-image: url('./hero\ image.jpgjpg'); /* <-- Add your banner image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: translateX(0);
    transition: transform 0.2s linear;
    filter: brightness(0.65);
}

/* Content on top */
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

/* QUOTE */
.banner-quote {
    font-size: 28px;   /* ↓ smaller for 200px height */
    color: white;
    font-family: "Playfair Display", serif;
    text-shadow: 0 6px 22px rgba(0,0,0,0.45);
}

.banner-author {
    font-size: 16px;
}

/* Fade animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .banner-quote { font-size: 22px; }
    .banner-author { font-size: 14px; }
}

@media (max-width: 600px) {
    .banner-quote { font-size: 26px; }
    .banner-author { font-size: 16px; }
}

/* ========================= MEMBERSHIP SECTION ========================= */

.membership-section {
    padding: 100px 7%;
    background: #f3e8d8;
    font-family: "Playfair Display", serif;
}

/* HEADER */
.membership-header {
    text-align: center;
    margin-bottom: 35px;
}

.membership-title {
    font-size: 36px;
    font-weight: 700;
}

.membership-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    opacity: 0.7;
}

/* ========================= ARROWS ABOVE CARDS ========================= */

.membership-arrows {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 0 10px;
}

.arrow-btn {
    background: #000;
    color: #f6e7c5;

    border: 1px solid rgba(255, 220, 165, 0.4);
    padding: 12px 18px;
    font-size: 22px;
    border-radius: 10px;

    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.arrow-btn:hover {
    transform: translateY(-4px);
    background: #3a3a3a;
    box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

/* ========================= MEMBERSHIP CARDS ========================= */

.membership-slider {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.membership-slider::-webkit-scrollbar {
    display: none;
}

/* CARD BASE STYLE */
.plan-card {
    min-width: 330px;
    padding: 40px 32px;
    border-radius: 16px;

    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.1);

    transition: 0.3s ease;
}

/* Lift on hover */
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.18);
}

/* WHITE CARD */
.white-card {
    background: #fff;
    color: #000;
}

/* BLACK CARD */
.black-card {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}

.popular-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #f7d48c;
    margin-bottom: 10px;
    text-align: center;
}

/* TITLE */
.plan-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

/* PRICE */
.plan-price {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* LIST */
.plan-list {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: inherit;
}

/* FOOTER */
.plan-footer {
    text-align: center;
    font-size: 15px;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .plan-card {
        min-width: 270px;
        padding: 32px 24px;
    }
}


/* ========================= GUIDES SECTION ========================= */
.guides-section {
    padding: 100px 7%;
    background: #f8f1e5;
    font-family: "Playfair Display", serif;
}

/* HEADER */
.guides-header {
    text-align: center;
    margin-bottom: 35px;
}

.guides-header h2 {
    font-size: 34px;
    font-weight: 700;
}

.guide-subtitle {
    letter-spacing: 4px;
    font-size: 13px;
    opacity: 0.7;
    margin-top: 6px;
}

/* Arrows */

.guide-arrows {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.guide-btn {
    padding: 10px 16px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.guide-btn:hover {
    background: #000;
    color: #fff;
}

/* SLIDER */
.guides-slider {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.guides-slider::-webkit-scrollbar {
    display: none;
}

/* CARDS */
.guide-card {
    min-width: 420px;
    background: #f4e8d6;
    padding: 45px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.guide-tag {
    font-size: 13px;
    letter-spacing: 5px;
    opacity: 0.7;
    margin-bottom: 18px;
}

.guide-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.guide-text {
    font-size: 16px;
    line-height: 1.45;
    opacity: 0.8;
}

.guide-link {
    display: inline-block;
    margin-top: 25px;
    font-size: 16px;
    color: #c0a579;
    cursor: pointer;
    transition: 0.3s;
}

.guide-link:hover {
    color: #000;
    transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .guide-card { min-width: 350px; }
}

@media (max-width: 768px) {
    .guide-card { min-width: 300px; padding: 35px; }
}

@media (max-width: 480px) {
    .guides-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .guide-arrows {
        margin-top: 15px;
    }

    .guide-card { min-width: 260px; padding: 28px; }
}

/* ========================= BLOG SECTION ========================= */

.blogs-section {
    padding: 100px 7%;
    background: #f3e8d8;
}

/* Header */
.blogs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.blogs-title {
    font-size: 34px;
    font-family: "Playfair Display", serif;
}

.blogs-subtitle {
    margin-top: 6px;
    font-size: 13px;
    letter-spacing: 4px;
    opacity: 0.7;
}

/* Arrows */
.blogs-arrows {
    display: flex;
    gap: 10px;
}

.blogs-btn {
    padding: 10px 16px;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.blogs-btn:hover {
    background: #000;
    color: #fff;
}

/* Slider */
.blogs-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.blogs-slider::-webkit-scrollbar {
    display: none;
}

/* Blog Cards */
.blog-card {
    min-width: 420px;
    background: #f5e9d8;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* Image */
.blog-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Text Content */
.blog-date {
    font-size: 12px;
    letter-spacing: 3px;
    color: #6c5c45;
    margin: 12px 18px;
}

.blog-heading {
    margin: 0 18px;
    font-size: 22px;
    font-family: "Playfair Display", serif;
    line-height: 1.4;
}

.blog-link {
    display: inline-block;
    margin: 12px 18px 20px;
    color: #c0a579;
    text-decoration: none;
    font-size: 15px;
}

.blog-link:hover {
    color: #000;
}
@media (max-width: 1024px) {
    .blog-card { min-width: 350px; }
}

@media (max-width: 768px) {
    .blog-card { min-width: 300px; }
    .blog-img { height: 220px; }
}

@media (max-width: 480px) {
    .blogs-title { font-size: 28px; }
    .blog-card { min-width: 260px; }
    .blog-img { height: 200px; }
}

/* ========================= CONSULT SECTION ========================= */

.consult-section {
    position: relative;
    background: #f6eddd;
    padding: 140px 7%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* Soft moving spotlight effect */
.consult-spotlight {
    position: absolute;
    top: -200px;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0) 70%);
    filter: blur(60px);
    transform: translateX(-50%);
    animation: floatLight 8s infinite ease-in-out alternate;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes floatLight {
    from { transform: translate(-50%, -30px); }
    to   { transform: translate(-50%, 30px); }
}

/* Card Styling */
.consult-card {
    background: #ffffff;
    padding: 60px 70px;
    border-radius: 16px;
    border: 2px solid #000;
    box-shadow: 12px 14px 0 rgba(0,0,0,0.45);
    max-width: 850px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Left Block */
.consult-left {
    width: 100%;
}

.consult-sub {
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 8px;
}

.consult-heading {
    font-size: 32px;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
}

.consult-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Contact Information */
.contact-info-block {
    margin-bottom: 25px;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

.contact-value {
    font-size: 17px;
    font-weight: 600;
    margin-top: 3px;
}

/* Button */
.consult-btn {
    margin-top: 20px;
    background: #000;
    color: #f6e6c5;
    padding: 14px 36px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}

.consult-btn:hover {
    background: #333;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 850px) {
    .consult-card {
        padding: 45px;
        box-shadow: 10px 12px 0 rgba(0,0,0,0.4);
    }

    .consult-heading {
        font-size: 26px;
    }
}

@media (max-width: 500px) {
    .consult-card {
        padding: 30px 22px;
    }

    .consult-heading {
        font-size: 22px;
    }
}


/* ========================= FOOTER ========================= */

.site-footer {
    background: #000;
    padding: 70px 20px;
    text-align: center;
    color: #d6d6d6;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* LOGO */
.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 30px;
    filter: brightness(90%);
    transition: 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(110%);
}

/* NAVIGATION MENU */
.footer-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.footer-menu li a {
    text-decoration: none;
    color: #dcdcdc;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.footer-menu li a:hover {
    color: #f4e7c5;
    letter-spacing: 3px;
}

/* SOCIAL ICONS */
.footer-social {
    margin-bottom: 25px;
}

.social-link svg {
    transition: 0.3s ease;
}

.social-link:hover svg {
    fill: #fff;
    transform: scale(1.12);
}

/* COPYRIGHT */
.footer-copy {
    font-size: 13px;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* ========================= RESPONSIVE ========================= */

@media (max-width: 768px) {
    .footer-menu {
        flex-direction: column;
        gap: 16px;
    }

    .footer-logo-img {
        height: 60px;
    }

    .footer-copy {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-menu li a {
        font-size: 13px;
    }

    .footer-logo-img {
        height: 50px;
    }
}
