/* ================= RESET & INDEX.CSS (GLOBAL) ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    color: #333;
    overflow-x: hidden;
    max-width: 100vw;
    line-height: 1.6;
    font-family: "Comfortaa", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================= KEYFRAMES ================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateZ(0);
    }

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) translateZ(0);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px) translateZ(0);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateZ(0);
    }

    to {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px) translateZ(0);
    }

    to {
        opacity: 1;
        transform: translateX(0) translateZ(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px) translateZ(0);
    }

    to {
        opacity: 1;
        transform: translateX(0) translateZ(0);
    }
}

@keyframes growLine {
    from {
        width: 0;
        transform: scaleX(0) translateZ(0);
    }

    to {
        width: 100%;
        transform: scaleX(1) translateZ(0);
    }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= SCROLL ANIMATIONS ================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ================= SHARED HEADER ================= */
.logo-header {
    padding: 15px 20px;
    text-align: center;
}

.logo-header a {
    text-decoration: none;
}

.logo-header.animate {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: opacity;
}

.logo-header img {
    width: 180px;
    height: 180px;
    margin-bottom: 10px;
}

.logo-header h2 {
    font-family: "Playfair Display", serif;
    color: black;
    font-weight: 400;
}

.logo-header p {
    font-size: 14px;
    color: #8b8680;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Times New Roman", Times, serif;
}

/* ================= SHARED NAV ================= */
nav {
    width: 84.5%;
    margin-left: 8%;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #8b8680;
    position: relative;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 700;
}

.nav-links a.active-nav,
.nav-links a:hover {
    color: black;
    font-weight: 800;
}

.menu-toggle {
    display: none;
}

/* ================= SHARED FOOTER ================= */
.footer {
    background-color: #f1f1f1;
    margin-top: 200px;
}

.footer-logo-section {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-bottom: 2%;
    margin-left: -10%;
    position: relative;
    z-index: 10;
}

.footer-logo-text img {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 10px;
    margin-top: -75px;
}

#Home .footer-logo-text img,
#About .footer-logo-text img {
    margin-top: 0;
}

.quote-section {
    text-align: center;
    width: 70%;
    margin: auto;
    margin-top: 10%;
    padding-bottom: 5%;
}

.quote-text {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 800;
    color: #3d3935;
}

.footer-nav {
    width: 73%;
    margin-left: 13.5%;
}

.footer-nav-links {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.footer-nav-links a {
    text-decoration: none;
    color: #77736f;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
}

.gallery-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 75%;
    margin: 40px auto;
    padding: 20px;
}

.gallery-footer img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.connect-text {
    margin-top: 15px;
    font-size: 15px;
    letter-spacing: 1px;
    color: #8b8680;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-bottom: 30px;
    margin-top: 15px;
}

.social-icons a {
    color: #8b8680;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #333;
}

.hr2 {
    display: none;
}

footer {
    width: 100%;
    padding: 20px 0;
    font-size: 14px;
    color: #555;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    border-top: 1px solid #ddd;
    margin-top: 0px;
}

/* ================= #HOME PAGE STYLES ================= */

#Home {
    background-color: #fffbfa;
}

/* Header Override for Home */
#Home .header {
    background: transparent;
    padding: 20px 0;
    margin: 0;
    position: relative;
    background-image: url('./Images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

#Home .header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
    display: block;
}

/* Ensure contents stay above the overlay */
#Home .header>* {
    position: relative;
    z-index: 2;
}

/* Hero Section */
#Home .hero-section {
    position: relative;
    width: 90%;
    height: 700px;
    margin: 60px auto;
    overflow: hidden;
    box-shadow: none;
    /* Clean look */
}

#Home .carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

#Home .carousel-slide {
    min-width: 100%;
    height: 100%;
}

#Home .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#Home .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: white;
    font-size: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

#Home .arrow.left {
    left: 40px;
}

#Home .arrow.right {
    right: 40px;
    transform: translateY(-50%) rotate(180deg);
}

#Home .slide-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}


/* Intro Section */
#Home .intro-section {
    display: flex;
    gap: 50px;
    background: #fffbfa;
    padding: 80px 0;
    overflow: hidden;
}

#Home .intro-left {
    flex: 0 0 22%;
}

#Home .intro-right {
    margin-top: 10%;
    flex: 0 0 22%;
}

#Home .intro-center {
    text-align: center;
    margin-top: 10%;
    width: 50%;
}

#Home .intro-left img,
#Home .intro-right img {
    width: 100%;
    height: auto;
    transition: transform 0.4s;
    overflow: hidden;
}

#Home .section-label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4a4a4a;
    margin-bottom: 10px;
    font-weight: 700;
}

#Home .intro-center h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-family: "Playfair Display", serif;
}

#Home .intro-center p {
    font-size: 16px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 18px;
    font-weight: 700;
}

#Home .intro-center p.intro-text {
    font-size: 18px;
}

/* Gallery Section (Single Item) */
#Home .gallery-section {
    padding: 80px 60px;
    text-align: center;
}

#Home .gallery-section h2 {
    font-size: 45px;
    font-weight: 600;
    padding-bottom: 30px;
    font-family: "Playfair Display", serif;
}

#Home .gallery-item img {
    width: 90%;
    height: auto;
    margin-top: 3%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

#Home .gallery-item img:hover {
    transform: scale(1.02);
}


/* Stories Section */
#Home .stories-section {
    padding: 100px 60px;
    text-align: center;
}

#Home .stories-section h2 {
    font-size: 45px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-family: "Playfair Display", serif;
}

#Home .stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
    padding: 0 5%;
}

#Home .story-card {
    width: 100%;
    text-align: left;
}

#Home .story-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 5px;
    transition: transform 0.5s;
}

#Home .story-card:hover img {
    transform: scale(1.02);
}

#Home .story-card h3 {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #4a4a4a;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
}

/* CTA Section */
#Home .cta-section {
    padding: 100px 80px;
    background-image: url('./Images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    height: 500px;
}

#Home .cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

#Home .cta-section * {
    position: relative;
    z-index: 2;
}

#Home .cta-section h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
    margin-top: 5%;
    font-family: "Playfair Display", serif;
}

#Home .cta-section p {
    font-size: 15px;
    color: #8b8680;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Special override for footer logo overlapping */
#Home .footer-logo-section {
    margin-top: -75px;
    /* Pullup to overlap */
}

/* ================= #ABOUT PAGE STYLES ================= */
#About {
    background-color: #fffbfa;
}

/* Main Section */
#About .main-section {
    margin-top: 5%;
    display: grid;
    grid-template-columns: 50% 50%;
    /* Equal split */
    align-items: center;
    animation: slideInLeft 0.8s ease-out forwards;
    max-width: 100vw;
    overflow: hidden;
    padding: 0 5%;
    /* Basic side padding */
}

#About .main-image {
    transform: translateX(-40px);
}

/* Reduced initial animation offset */

#About .main-image img {
    width: 90%;
    /* Increased image size */
    height: auto;
    object-fit: cover;
    margin-left: 10%;
    /* Move slightly right */
    margin-top: 0;
    transform: translateX(-40px);
    /* Match container */
    box-shadow: none;
    /* Clean look */
}

#About .main-content {
    transform: translateX(40px);
    margin-left: 0;
    text-align: center;
    padding-right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#About .main-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    margin-bottom: 5px;
    color: #1a1a1a;
    transform: none;
    /* Remove per-element transforms once container has it */
    font-weight: 500;
}

#About .main-content .subtitle {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 400;
    /* Lighter weight */
    transform: none;
    font-family: "Playfair Display", serif;
    color: #333;
    font-style: italic;
    /* Looks italic in reference */
}

#About .main-content p {
    font-family: "Comfortaa", sans-serif;
    font-size: 15px;
    /* Increased text size */
    color: #666;
    width: 90%;
    transform: none;
    text-align: center;
    margin-bottom: 30px;
    /* Space between paragraphs */
    line-height: 2;
    font-weight: 300;
}

/* Show/Hide text based on screen size */
#About .desktop-text {
    display: block;
}

#About .mobile-text {
    display: none;
}


/* Stats Section */
#About .stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

#About .stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 20px;
    text-align: left;
}

#About .stat-number {
    font-size: 48px;
    color: #888;
    font-family: "Playfair Display", serif;
    letter-spacing: 2px;
    text-align: left;
}

#About .stat-label {
    font-size: 15px;
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
}

/* Recognitions Section */
#About .recognitions-section {
    padding: 40px 40px;
    text-align: center;
}

#About .recognitions-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    color: #1a1a1a;
    margin-bottom: 30px;
    margin-top: 3%;
}

#About .recognitions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

#About .recognition-item {
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

#About .laurel img {
    width: 200px;
    height: auto;
    margin-bottom: 14px;
    opacity: 0.8;
}

/* Hero Section (Testimonials) */
#About .hero-section {
    font-family: "Playfair Display", serif;
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
}

#About .hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(218, 219, 224, 0.91);
    /* Light overlay */
    z-index: 2;
    pointer-events: none;
}

/* Background Image Carousel Track */
#About .hero-section>.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    /* Place behind text */
    top: 0;
    left: 0;
    z-index: 1;
    /* Behind overlay */
}

/* Background Image Slides */
#About .hero-section>.carousel-track>.carousel-slide {
    min-width: 100%;
    flex: 0 0 100%;
    height: 100%;
}

#About .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: rgba(216, 219, 224, 0.85);
    /* #d8dbe0 */
}

#About .hero-text {
    position: absolute;
    z-index: 5;
    width: 65%;
    max-width: 1000px;
    text-align: center;
    overflow: hidden;
}

#About .hero-text .carousel-track {
    display: flex;
    transition: transform 0.7s ease-in-out;
    width: 100%;
}

#About .hero-text .carousel-slide {
    min-width: 100%;
    /* Force each text block to take full width */
    flex: 0 0 100%;
    opacity: 1;
    /* Ensure visible */
    padding: 0 20px;
    /* Internal spacing */
    box-sizing: border-box;
}

#About .hero-tagline {
    font-size: 14px;
    font-family: "Playfair Display", serif;
    color: #4a4a4a;
    margin-bottom: 5px;
    display: block;
    /* Always visible */
}

#About .hero-quote {
    font-size: 35px;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

#About .hero-author {
    font-size: 30px;
    color: #777;
    margin-bottom: 0;
    font-weight: 400;
    font-family: "Playfair Display", serif;
}

#About .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scaleY(1.8) scaleX(0.5);
    /* Thinner (scaleX 0.5) and taller (scaleY 1.8) */
    font-size: 60px;
    font-weight: 100;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.4);
    /* Dark arrows */
    z-index: 10;
    transition: color 0.3s;
}

#About .arrow.left {
    left: 80px;
    /* Increased space from edge */
    transform: translateY(-50%) scaleY(1.8) scaleX(0.5);
    /* Match scaling */
}

#About .arrow.right {
    right: 80px;
    /* Increased space from edge */
}

#About .slide-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    z-index: 10;
}

#About .footer-logo-section {
    margin-top: -75px;
}



/* ================= #MOMENTS PAGE STYLES ================= */
#moments {
    background-color: #fffbfa;
}

#moments .moments-container {
    max-width: 86.5%;
    margin: 40px auto;
    padding: 0 20px;
    margin-top: 5%;
}

#moments .moment-card {
    margin-bottom: 40px;
    /* Spacing between cards */
    display: block;
}

#moments .moment-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

#moments .moment-info {
    padding: 16px 0;
    font-family: "Playfair Display", serif;
}

#moments .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1%;
}

#moments .meta h2 {
    font-weight: 100;
    font-size: 35px;
    color: #1a1a1a;
}

#moments .date {
    display: block;
    color: #9a9a9a;
    font-size: 20px;
}

#moments .likes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 25px;
    color: #9a9a9a;
}

#moments .likes img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    padding: 0 5px;
    object-fit: contain;
    /* Ensures not clipped */
}

#moments .footer-logo-section {
    margin-top: -75px;
    position: relative;
    z-index: 10;
}

#moments .quote-section {
    text-align: center;
    width: 70%;
    margin: auto;
    margin-top: 5%;
    padding-bottom: 5%;
}

/* ================= #MOMENTS DETAIL PAGE STYLES ================= */
#moments-detail {
    background-color: #fffbfa;
}

#moments-detail .hero {
    width: 100%;
    margin-top: 3%;
}

#moments-detail .hero img {
    width: 84.5%;
    height: auto;
    margin-left: 8%;
    display: block;
    object-fit: cover;
}

#moments-detail .moment-info {
    width: 84.5%;
    margin-left: 8%;
    margin-top: 3%;
    padding-bottom: 2%;
    font-family: "Playfair Display", serif;
}

#moments-detail .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

#moments-detail .meta h1 {
    font-weight: 100;
    font-size: 35px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#moments-detail .date {
    display: block;
    color: #9a9a9a;
    font-size: 20px;
    margin-top: 5px;
}

#moments-detail .likes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 25px;
    color: #9a9a9a;
}

#moments-detail .likes img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    padding: 0 5px;
    object-fit: contain;
}

/* Gallery Layout */
#moments-detail .gallery {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 80px;
}

#moments-detail .gallery-row {
    display: flex;
    gap: 2px;
    width: 100%;
}

#moments-detail .gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

#moments-detail .gallery-item {
    flex: 1;
    /* Equal width columns */
}


/* ================= #FILMS PAGE STYLES ================= */
#Flims {
    background-color: #fffbfa;
}

#Flims .Header-section {
    text-align: center;
    margin-top: 3%;
}

#Flims .Header-section h3 {
    font-size: 35px;
    font-weight: 600;
    margin: 0 auto;
    line-height: 1.8;
    transform: translateY(20px);
    font-family: "Playfair Display", serif;
    color: #1a1a1a;
}

#Flims .Header-section h3.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

#Flims .Header-section p {
    font-size: 20px;
    font-weight: 300;
    margin: 0 auto;
    line-height: 1.8;
    transform: translateY(20px);
    width: 60%;
    margin-top: 1%;
    color: #333;
    font-family: "Comfortaa", sans-serif;
}

#Flims .Header-section p.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

#Flims .gallery {
    padding-bottom: 5%;
}

#Flims .gallery-item {
    position: relative;
    margin-top: 3%;
    overflow: hidden;
}

#Flims .gallery-item img:first-child {
    width: 83%;
    margin-left: 8.5%;
    display: block;
    height: auto;
}

#Flims .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
    opacity: 0.95;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#Flims .gallery-item:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.08);
}

#Flims .footer {
    background-color: #f1f1f1;
    margin-top: 100px;
}

/* ================= #BLOG LANDING PAGE STYLES ================= */
#BlogLanding {
    background-color: #fffbfa;
}

#BlogLanding .Header-section {
    text-align: center;
    padding-bottom: 1%;
    margin-top: 3%;
}

#BlogLanding .Header-section h3 {
    font-size: 40px;
    font-weight: 600;
    margin: 0 auto;
    transform: translateY(20px);
    font-family: "Playfair Display", serif;
    color: #1a1a1a;
}

#BlogLanding .Header-section h3.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

#BlogLanding .Header-section p {
    font-size: 22px;
    font-weight: 200;
    margin: 1% auto;
    line-height: 1.8;
    transform: translateY(20px);
    width: 75%;
    color: #8b8680;
    font-family: "Comfortaa", sans-serif;
    text-align: center;
    font-style: italic;
}

#BlogLanding .Header-section p.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

#BlogLanding .gallery {
    margin-top: 4%;
    padding-bottom: 5%;
}

#BlogLanding .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 83%;
    margin-left: 8.5%;
}

#BlogLanding .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#BlogLanding .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    backface-visibility: hidden;
}

#BlogLanding .gallery-item:hover img {
    transform: scale(1.04) translate3d(0, 0, 0);
}

#BlogLanding .gallery-item .caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 8px 10px;
    color: white;
    font-size: clamp(18px, 3vw, 25px);
    text-align: center;
    font-family: "Comfortaa", sans-serif;
    font-weight: 400;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

#BlogLanding .footer {
    background-color: #f1f1f1;
    margin-top: 100px;
}


/* ================= #BLOG DETAIL PAGE STYLES ================= */
#BlogDetail {
    background-color: #fffbfa;
}

#BlogDetail .hero-section img {
    width: 84%;
    height: auto;
    margin: 0 auto;
    display: block;
    animation: fadeInUp 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

#BlogDetail .hero-section h1 {
    text-align: center;
    padding-top: 3%;
    padding-bottom: 1%;
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 300;
    font-family: "Playfair Display", serif;
    color: #1a1a1a;
}

#BlogDetail .intro-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f0;
    width: 70%;
    margin: 50px auto;
    padding: 80px 0;
    animation: fadeInUp 0.9s ease forwards;
}

#BlogDetail .intro-left {
    flex: 0 0 25%;
    animation: slideInLeft 1s ease-out;
    position: relative;
}

#BlogDetail .intro-left img {
    width: 160%;
    margin-left: -53%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: -50%;
    will-change: transform;
    backface-visibility: hidden;
}

#BlogDetail .intro-left img:hover {
    transform: scale(1.04) translate3d(0, 0, 0);
}

#BlogDetail .intro-center {
    flex: 1;
    text-align: left;
    animation: fadeInUp 1s ease-out 0.2s both;
}

#BlogDetail .intro-center h2 {
    font-size: 35px;
    margin-bottom: 25px;
    font-family: "Playfair Display", serif;
    color: #1a1a1a;
    text-align: center;
}

#BlogDetail .intro-center p {
    font-size: 21px;
    line-height: 1.9;
    color: #8b8680;
    font-family: "Playfair Display", serif;
    text-align: center;
    margin-left: 1%;
}

#BlogDetail .intro-right {
    flex: 0 0 25%;
    position: relative;
    animation: slideInRight 1s ease-out 0.4s both;
    margin-top: 15%;
}

#BlogDetail .intro-right img {
    width: 130%;
    margin-top: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
    margin-left: 33%;
}

#BlogDetail .intro-right img:hover {
    transform: scale(1.05);
}

#BlogDetail .container {
    width: 83%;
    margin: 8.5%;
}

#BlogDetail .top-section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 3%;
    flex-wrap: wrap;
    gap: 10px;
}

#BlogDetail .text-box {
    width: 30%;
    min-width: 280px;
}

#BlogDetail .text-box h2 {
    color: #000;
    font-size: 30px;
    text-align: center;
    font-family: "Playfair Display", serif;
}

#BlogDetail .text-box p {
    color: #8b8680;
    font-size: 21px;
    margin-left: 5%;
    font-family: "Playfair Display", serif;
}

#BlogDetail .image-box img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    animation: fadeIn 0.8s ease-out both;
    transition: transform 0.3s ease;
}

#BlogDetail .image-box img:hover {
    transform: scale(1.05);
}

#BlogDetail .middle-text {
    margin: 60px auto;
    width: 100%;
    line-height: 1.8;
    color: #8b8680;
    font-size: 21px;
    font-family: "Playfair Display", serif;
    text-align: center;
}

#BlogDetail .bottom-images {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

#BlogDetail .bottom-images img {
    flex: 1;
    min-width: 250px;
    object-fit: cover;
    animation: fadeIn 0.8s ease-out both;
    transition: transform 0.3s ease;
}

#BlogDetail .bottom-images img:nth-child(1) {
    animation-delay: 0.1s;
}

#BlogDetail .bottom-images img:nth-child(2) {
    animation-delay: 0.2s;
}

#BlogDetail .bottom-images img:nth-child(3) {
    animation-delay: 0.3s;
}

#BlogDetail .bottom-images img:hover {
    transform: scale(1.05);
}

#BlogDetail .bottom-text {
    text-align: center;
    margin: 50px auto;
    width: 100%;
    line-height: 1.8;
    color: #8b8680;
    font-size: 23px;
    font-family: "Playfair Display", serif;
}

#BlogDetail .footer {
    background-color: #f1f1f1;
    margin-top: 100px;
}

/* ================= #ENQUIRE PAGE STYLES ================= */
#Enquire {
    background-color: #fffbfa;
}

#Enquire .Hero-section img {
    width: 84.5%;
    height: auto;
    display: block;
    margin-left: 8%;
    margin-top: 6%;
}

#Enquire .contact-section {
    max-width: 800px;
    margin: 100px auto;
    text-align: center;
}

#Enquire .address h2 {
    font-weight: 400;
    font-size: 50px;
    font-family: "Playfair Display", serif;
    padding-bottom: 20px;
    color: #1a1a1a;
}

#Enquire .address p {
    font-size: 25px;
    color: #8b8680;
    line-height: 1.8;
    margin-bottom: 50px;
    font-family: "Playfair Display", serif;
}

#Enquire .contact-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 400;
    font-family: "Playfair Display", serif;
    margin-top: 100px;
    color: #1a1a1a;
}

#Enquire .contact-form {
    animation: fadeInUp 1s ease-out;
}

#Enquire .form-row {
    display: flex;
    gap: 30px;
}

#Enquire .form-group {
    flex: 1;
    text-align: left;
    margin-bottom: 25px;
    margin-top: 5%;
}

#Enquire .form-group label {
    font-size: 20px;
    color: black;
    margin-bottom: 8px;
    display: block;
    font-family: "Playfair Display", serif;
}

#Enquire .form-group input,
#Enquire .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    transition: border 0.3s ease;
    background-color: #f7f7f7;
    font-family: "Playfair Display", serif;
}

#Enquire .form-group input:focus,
#Enquire .form-group textarea:focus {
    border-color: #8b8680;
}

#Enquire .submit-btn {
    margin-top: 30px;
    padding: 12px 40px;
    background: #1f1f1f;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 25px;
    transition: all 0.3s ease;
    height: 50px;
    font-family: "Playfair Display", serif;
}

#Enquire .submit-btn:hover {
    background: #3d3935;
}

#Enquire .contact-info {
    display: flex;
    justify-content: space-between;
    width: 83%;
    margin: 0 auto 40px;
    margin-top: -2%;
    font-family: "Playfair Display", serif;
}

#Enquire .contact-info h3 {
    font-size: 30px;
    font-weight: 400;
    color: #000;
    margin-top: 3%;
}

#Enquire .contact-info h3 span {
    color: #777;
    margin-left: 5px;
}

#Enquire .map-section {
    width: 83%;
    margin: 60px auto;
    overflow: hidden;
    padding-bottom: 4%;
}

#Enquire .map-section iframe {
    width: 100%;
    height: 700px;
    border: none;
}

#Enquire .footer {
    background-color: #f1f1f1;
    margin-top: 100px;
}

#Enquire .quote-section {
    text-align: center;
    width: 70%;
    margin: auto;
    margin-top: 5%;
    padding-bottom: 5%;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

    /* Shared */
    nav {
        width: 100%;
        margin: 0;
        padding: 0 24px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 30px;
        right: 20px;
        background: transparent;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #8b8680;
        z-index: 2000;
        transition: color 0.3s ease;
    }

    .menu-toggle:hover {
        color: #333;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 251, 250, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 40px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        list-style: none;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        transition: all 0.3s ease;
    }


    /* Home Specific */
    #Home .hero-section {
        width: 90%;
        height: 250px;
        margin: 30px auto;
        z-index: 1;
    }

    #Home .arrow {
        font-size: 24px;
    }

    #Home .arrow.left {
        left: 15px;
    }

    #Home .arrow.right {
        right: 15px;
    }

    #Home .slide-counter {
        font-size: 14px;
        bottom: 15px;
        right: 15px;
    }

    #Home .intro-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    #Home .intro-left,
    #Home .intro-right,
    #Home .intro-center {
        width: 100%;
        margin: 0;
        flex: none;
    }

    #Home .intro-center {
        margin: 20px 0;
        order: -1;
        margin-top: 0;
    }

    #Home .intro-left {
        order: 1;
        flex: none;
    }

    #Home .intro-right {
        order: 2;
        margin-top: 0;
        flex: none;
    }

    #Home .intro-left img,
    #Home .intro-right img {
        width: 100%;
        height: auto;
    }

    #Home .section-label {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    #Home .intro-center h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    #Home .intro-center p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    #Home .gallery-section {
        padding: 50px 20px;
    }

    #Home .gallery-section .section-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    #Home .gallery-section h2 {
        font-size: 30px;
        padding-bottom: 20px;
    }

    #Home .gallery-item img {
        width: 100%;
        margin-top: 20px;
    }

    #Home .stories-section {
        padding: 60px 20px;
    }

    #Home .stories-section .section-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    #Home .stories-section h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    #Home .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    #Home .story-card img {
        height: 350px;
    }

    #Home .story-card h3 {
        font-size: 14px;
        letter-spacing: 1.2px;
        margin-top: 10px;
    }

    #Home .cta-section {
        padding: 60px 20px;
        height: auto;
        min-height: 350px;
        background-attachment: scroll;
    }

    #Home .cta-section h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
        margin-top: 0;
    }

    #Home .cta-section p {
        font-size: 14px;
    }

    #Home .footer-logo-section {
        margin-top: -50px;
        margin-left: 0;
        padding-bottom: 50px;
    }

    #Home .footer-logo-text img {
        width: 100px;
        height: 100px;
        margin-top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .quote-section {
        width: 85%;
        margin: 80px auto 0;
    }

    .quote-text {
        font-size: 18px;
        line-height: 1.6;
        font-weight: 700;
    }

    .footer-nav {
        width: 100%;
        margin: 0;
        padding: 20px 15px;
    }

    .footer-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 15px;
        padding: 0;
        row-gap: 8px;
    }

    .footer-nav-links li {
        margin: 0;
    }

    .footer-nav-links a {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .gallery-footer {
        grid-template-columns: repeat(2, 1fr);
        max-width: 85%;
        gap: 12px;
        padding: 0;
        margin: 35px auto;
    }

    .gallery-footer img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .connect-text {
        font-size: 13px;
        margin-top: 25px;
        letter-spacing: 0.8px;
    }

    .social-icons {
        gap: 18px;
        margin-top: 15px;
    }

    .social-icons a {
        font-size: 18px;
    }

    footer {
        padding: 20px 15px;
        font-size: 11px;
    }

    footer p {
        text-align: center;
        line-height: 1.6;
    }

    /* About Specific */
    #About .main-section {
        grid-template-columns: 1fr;
        margin-top: 6%;
        padding: 0 20px;
        gap: 30px;
    }

    #About .main-image {
        order: 1;
        transform: none;
    }

    #About .main-image img {
        width: 100%;
        height: 300px;
        margin-left: 0;
        transform: none;
        object-fit: cover;
    }

    #About .main-content {
        order: 2;
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        transform: none;
        padding: 0 10px;
    }

    #About .main-content h2 {
        font-size: 32px;
        margin-left: 0;
        margin-bottom: 10px;
        transform: none;
    }

    #About .main-content .subtitle {
        font-size: 26px;
        margin-left: 0;
        margin-bottom: 25px;
        transform: none;
    }

    #About .main-content p {
        width: 100%;
        margin-left: 0;
        font-size: 14px;
        line-height: 1.9;
        transform: none;
    }

    /* Show/Hide text based on screen size */
    #About .desktop-text {
        display: none;
    }

    #About .mobile-text {
        display: block;
    }

    #About .stats-section {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 0;
        padding: 40px 20px;
        gap: 10px;
    }

    #About .stat-item {
        padding: 20px 10px;
    }

    #About .stat-number {
        font-size: 36px;
    }

    #About .stat-label {
        font-size: 13px;
    }

    #About .recognitions-section {
        padding: 40px 20px;
    }

    #About .recognitions-section h2 {
        font-size: 32px;
        margin-bottom: 25px;
        margin-top: 0;
    }

    #About .recognitions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }

    #About .laurel img {
        width: 140px;
        height: auto;
    }

    #About .hero-section {
        height: auto;
        min-height: 400px;
        margin-top: 60px;
        z-index: 1;
    }

    #About .hero-text {
        width: 90%;
        padding: 30px 15px;
    }

    #About .hero-quote {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 20px;
        font-weight: 500;
    }

    #About .hero-author {
        font-size: 20px;
        margin-bottom: 0;
    }

    #About .arrow {
        font-size: 30px;
        transform: translateY(-50%) scaleY(1.5) scaleX(0.5);
    }

    #About .arrow.left {
        left: 15px;
        transform: translateY(-50%) scaleY(1.5) scaleX(0.5);
    }

    #About .arrow.right {
        right: 15px;
        transform: translateY(-50%) scaleY(1.5) scaleX(0.5) rotate(180deg);
    }

    #About .slide-counter {
        font-size: 14px;
        bottom: 15px;
        right: 15px;
        padding: 6px 12px;
    }

    #About .footer-logo-section {
        margin-left: 0;
    }

    #About .footer-logo-text img {
        width: 120px;
        height: 120px;
        margin-top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    #About .footer {
        margin-top: 100px;
    }


    /* Moments Specific */
    #moments .header {
        padding: 15px 0;
    }

    #moments .moments-container {
        max-width: 95%;
        margin: 30px auto;
        padding: 0 15px;
    }

    #moments .moment-card {
        width: 100%;
        margin-bottom: 0;
    }

    #moments .moment-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    #moments .moment-info {
        padding: 20px 0;
    }

    #moments .moment-info h2 {
        font-size: 22px;
    }

    #moments .date {
        font-size: 12px;
        margin-top: 5px;
    }

    #moments .likes {
        font-size: 16px;
    }

    #moments .likes img {
        width: 32px;
        height: 18px;
    }

    #moments .footer-logo-section {
        margin-left: 0;
        padding-bottom: 50px;
    }

    #moments .footer-logo-text img {
        width: 120px;
        height: 120px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Moments Detail Specific */
    #moments-detail .hero {
        margin-top: 5%;
    }

    #moments-detail .hero img {
        width: 90%;
        margin: 0 auto;
        display: block;
        height: 300px;
        object-fit: cover;
    }

    #moments-detail .moment-info {
        width: 90%;
        margin: 30px auto;
    }

    #moments-detail .meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    #moments-detail .meta h1 {
        font-size: 24px;
        margin-bottom: 0;
    }

    #moments-detail .date {
        font-size: 13px;
        margin-top: 10px;
    }

    #moments-detail .likes {
        font-size: 16px;
        display: flex;
        align-items: center;
    }

    #moments-detail .likes img {
        width: 30px;
        height: 30px;
    }

    #moments-detail .description {
        font-size: 14px;
        line-height: 1.8;
        margin-top: 20px;
    }

    #moments-detail .gallery {
        width: 90%;
        margin: 40px auto;
        padding: 0;
    }

    #moments-detail .gallery-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    #moments-detail .gallery-row img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    #moments-detail .footer-logo-section {
        margin-left: 0;
    }

    #moments-detail .footer-logo-text img {
        width: 120px;
        height: 120px;
        left: 50%;
        transform: translateX(-50%);
    }

    #moments-detail .footer {
        margin-top: 100px;
    }


    /* Films Specific */
    #Flims .Header-section {
        margin-top: 8%;
        padding: 0 20px;
    }

    #Flims .Header-section h3 {
        font-size: 26px;
        width: 100%;
        margin: 0 auto 15px;
        line-height: 1.3;
    }

    #Flims .Header-section p {
        font-size: 13px;
        width: 100%;
        margin-top: 15px;
        line-height: 1.7;
    }

    #Flims .gallery {
        padding: 40px 0;
        padding-bottom: 60px;
    }

    #Flims .gallery-item {
        margin-top: 40px;
        position: relative;
    }

    #Flims .gallery-item img:first-child {
        width: 90%;
        margin: 0 auto;
        display: block;
        height: 250px;
        object-fit: cover;
    }

    #Flims .play-icon {
        width: 50px;
        height: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #Flims .footer-logo-section {
        margin-left: 0;
    }

    #Flims .footer-logo-text img {
        width: 120px;
        height: 120px;
        left: 50%;
        transform: translateX(-50%);
    }

    #Flims .footer {
        margin-top: 100px;
    }


    /* Blog Landing Specific */
    #BlogLanding .Header-section {
        margin-top: 8%;
        padding: 0 20px;
    }

    #BlogLanding .Header-section h3 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    #BlogLanding .Header-section p {
        font-size: 13px;
        width: 100%;
        margin-top: 15px;
        line-height: 1.7;
    }

    #BlogLanding .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 90%;
        margin: 40px auto;
        gap: 30px;
    }

    #BlogLanding .gallery-item {
        width: 100%;
    }

    #BlogLanding .gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    #BlogLanding .gallery-item .caption {
        font-size: 14px;
        padding: 15px 10px;
        line-height: 1.6;
    }

    #BlogLanding .footer-logo-section {
        margin-left: 0;
    }

    #BlogLanding .footer-logo-text img {
        width: 120px;
        height: 120px;
        left: 50%;
        transform: translateX(-50%);
    }

    #BlogLanding .footer {
        margin-top: 100px;
    }


    /* Blog Detail Specific */
    #BlogDetail .hero-section {
        padding: 40px 0;
    }

    #BlogDetail .hero-section h1 {
        padding: 30px 20px 20px;
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.3;
    }

    #BlogDetail .hero-section img {
        width: 90%;
        min-height: 250px;
        max-height: 350px;
        margin: 30px auto 0;
        object-fit: cover;
        display: block;
    }

    #BlogDetail .intro-section {
        width: 100%;
        margin: 40px 0;
        padding: 40px 20px;
        flex-direction: column;
        gap: 30px;
    }

    #BlogDetail .intro-left,
    #BlogDetail .intro-center,
    #BlogDetail .intro-right {
        width: 100%;
        flex: none;
        margin: 0;
    }

    #BlogDetail .intro-left img,
    #BlogDetail .intro-right img {
        width: 100%;
        margin: 0;
        height: 250px;
        object-fit: cover;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    #BlogDetail .intro-center {
        padding: 0 5px;
    }

    #BlogDetail .intro-center h2 {
        font-size: clamp(24px, 6vw, 30px);
        margin-bottom: 15px;
        line-height: 1.3;
    }

    #BlogDetail .intro-center p {
        font-size: 15px;
        line-height: 1.8;
    }

    #BlogDetail .container {
        width: 100%;
        margin: 0;
        padding: 40px 20px;
    }

    #BlogDetail .top-section {
        flex-direction: column;
        align-items: center;
        gap: 35px;
        margin-top: 30px;
    }

    #BlogDetail .text-box {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
    }

    #BlogDetail .text-box h2 {
        font-size: clamp(22px, 6vw, 28px);
        margin-bottom: 15px;
    }

    #BlogDetail .text-box p {
        font-size: 15px;
        margin-left: 0;
        text-align: left;
        line-height: 1.8;
    }

    #BlogDetail .image-box img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    #BlogDetail .middle-text,
    #BlogDetail .bottom-text {
        width: 100%;
        font-size: 15px;
        padding: 0 5px;
        margin: 40px 0;
        line-height: 1.8;
    }

    #BlogDetail .bottom-images {
        flex-direction: column;
        width: 100%;
        margin-top: 35px;
        gap: 20px;
    }

    #BlogDetail .bottom-images img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    #BlogDetail .footer-logo-section {
        margin-left: 0;
    }

    #BlogDetail .footer-logo-text img {
        width: 120px;
        height: 120px;
        left: 50%;
        transform: translateX(-50%);
    }

    #BlogDetail .footer {
        margin-top: 100px;
    }



    /* Enquire Specific */
    #Enquire .Hero-section img {
        width: 90%;
        min-height: 200px;
        max-height: 35vh;
        margin-left: 5%;
        margin-top: 6%;
        object-fit: cover;
    }

    #Enquire .contact-section {
        max-width: 100%;
        margin: 60px auto 40px;
        padding: 0 20px;
    }

    #Enquire .address h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    #Enquire .address p {
        font-size: 15px;
        margin-bottom: 32px;
        padding: 0 8px;
    }

    #Enquire .contact-title {
        font-size: 28px;
        margin-bottom: 32px;
        margin-top: 60px;
    }

    #Enquire .form-row {
        flex-direction: column;
        gap: 0;
    }

    #Enquire .form-group {
        width: 100%;
        margin-bottom: 20px;
        margin-top: 0;
    }

    #Enquire .form-group label {
        font-size: 16px;
        font-weight: 400;
    }

    #Enquire .form-group input,
    #Enquire .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        background-color: #f7f7f7;
        border-radius: 4px;
        box-sizing: border-box;
    }

    #Enquire .form-group input {
        height: 52px;
    }

    #Enquire .form-group textarea {
        height: 120px;
    }

    #Enquire .submit-btn {
        width: 100%;
        height: 56px;
        font-size: 18px;
        letter-spacing: 1.5px;
        border-radius: 4px;
    }

    #Enquire .contact-info {
        flex-direction: column;
        gap: 20px;
        width: 90%;
        margin: 20px auto 32px;
    }

    #Enquire .contact-info h3 {
        font-size: 28px;
        text-align: center;
        margin-top: 0;
    }

    #Enquire .contact-info h3 span {
        display: block;
        font-size: 22px;
        margin-top: 4px;
        margin-left: 0;
    }

    #Enquire .map-section {
        width: 90%;
        margin: 48px auto;
        padding-bottom: 40px;
    }

    #Enquire .map-section iframe {
        height: 300px;
        border-radius: 4px;
    }

    #Enquire .footer-logo-section {
        margin-left: 0;
    }

    #Enquire .footer-logo-text img {
        width: 120px;
        height: 120px;
        left: 50%;
        transform: translateX(-50%);
    }

    #Enquire .footer {
        margin-top: 100px;
    }


}

/* ================= TABLET RESPONSIVE (769px - 1024px) ================= */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Adjust container widths for tablets */
    nav {
        width: 90%;
        margin-left: 5%;
    }

    #Home .hero-section {
        width: 88%;
        height: 500px;
    }

    #Home .intro-section {
        gap: 40px;
        padding: 60px 30px;
    }

    #Home .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    #About .stats-section {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    #About .recognitions-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    #BlogLanding .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-footer {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================= SMALL MOBILE (max-width: 480px) ================= */
@media (max-width: 480px) {

    /* Extra small adjustments */
    #Home .hero-section {
        height: 240px;
        margin: 20px auto;
    }

    #Home .intro-center h2 {
        font-size: 24px;
    }

    #Home .gallery-section h2,
    #Home .stories-section h2 {
        font-size: 26px;
    }

    #Home .story-card img {
        height: 320px;
    }

    #About .main-image img {
        height: 280px;
    }

    #About .main-content h2 {
        font-size: 28px;
    }

    #About .stats-section {
        gap: 12px;
        padding: 30px 15px;
    }

    #About .stat-number {
        font-size: 30px;
    }

    .quote-text {
        font-size: 16px;
    }

    .gallery-footer {
        max-width: 95%;
        gap: 10px;
    }
}

/* ================= LANDSCAPE MOBILE ================= */
@media (max-width: 768px) and (orientation: landscape) {

    #Home .hero-section {
        height: 350px;
    }

    #About .hero-section {
        min-height: 320px;
    }

    #Home .cta-section {
        min-height: 280px;
    }
}