/*
Theme Name: Seasons Theme
Theme URI: https://seasonsa.com
Author: Seasons
Author URI: https://seasonsadv.com
Description: A lightweight, custom WordPress theme built from scratch for Seasons. Completely dynamic and manageable via a custom theme options panel.
Version: 1.0.0
Text Domain: seasons-theme
License: GNU General Public License v2 or later
*/

/* Reset & Base Styles */

@font-face {
    font-family: 'Geist';
    src: url('/wp-content/themes/seasons-theme/assets/fonts/Geist-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('/wp-content/themes/seasons-theme/assets/fonts/Geist-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('/wp-content/themes/seasons-theme/assets/fonts/Geist-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('/wp-content/themes/seasons-theme/assets/fonts/Geist-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

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

body {
    /*font-family: 'Poppins', sans-serif;*/
    font-family: 'Geist', sans-serif;
    color: #222222;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

body.lock-scroll {
    overflow: hidden !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Core Variables */
:root {
    --gold: #dca54a;
    --gold-hover: #c5913b;
    --dark-bg: #111111;
    --light-bg: #f9f9f9;
    --cream-bg: #faf5e5;
    --white: #ffffff;
    --gray-text: #666666;
    --border-color: #eeeeee;
}
.seasons-container {
    max-width: 1360px; /* Adjusted to balance spaciousness and readability */
    margin: 0 auto;
    padding: 0 0px;
}

@media (max-width: 1200px) {
    .seasons-container {
        padding: 0 20px;
    }
}

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

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

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white) !important;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 165, 74, 0.4);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold) !important;
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 165, 74, 0.35);
}

/* Utility Top Bar above navigation menu */
.header-top-bar {
    background-color: var(--dark-bg); /* Charcoal black matching theme colors */
    font-family: 'Geist', sans-serif;
    font-size: 12.5px;
    color: #ffffff;
    height: 38px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
    display: flex;
    justify-content: flex-end; /* Align elements to the right side */
    align-items: center;
    height: 100%;
    max-width: 100% !important;
    padding: 0 40px !important;
}

.top-bar-right-aligned {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-left {
    gap: 20px;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.top-bar-link:hover {
    color: var(--gold);
}

.top-bar-link .dashicons {
    font-size: 15px;
    width: 15px;
    height: 15px;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.2);
}

.top-bar-social {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.top-bar-social:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.top-bar-social .dashicons {
    font-size: 15px;
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Slide out top bar when scrolled down */
.site-header.scrolled .header-top-bar {
    height: 0;
    opacity: 0;
    border-bottom-width: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .header-top-bar {
        display: none !important;
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* WordPress Admin Bar Compatibility with Fixed Header */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar #wpadminbar {
        position: fixed !important;
    }

    body.admin-bar .site-header {
        top: 46px !important;
    }
}

@media screen and (max-width: 600px) {
    html:has(body.admin-bar) {
        margin-top: 46px !important;
    }
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px !important;
}

@media (max-width: 1200px) {
    .header-container {
        padding: 10px 20px !important;
    }
}

.logo img,
.header-logo-img {
    max-height: 80px;
    height: auto;
    width: auto;
    display: block;
    /* Removed brightness/invert filter so logo shows in original gold/dark colors */
    transition: transform 0.3s ease;
}

.header-logo-img:hover {
    transform: scale(1.02);
}

.footer-logo img,
.footer-logo-img {
    max-height: 80px !important;
    height: auto;
    width: auto;
    display: inline-block;
}

.site-title-fallback {
    display: inline-block;
    color: #2b2b2b !important;
}

.site-title-fallback h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2b2b2b;
    transition: color 0.3s ease;
}

.site-title-fallback:hover h2 {
    color: var(--gold);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: #2b2b2b;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), left 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a  {
    color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after,
.nav-menu .current-menu-item a::after,
.nav-menu .current_page_item a::after {
    width: 100%;
    left: 0;
}

.header-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--gold);
    color: var(--gold) !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-btn:hover {
    background-color: var(--gold);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 165, 74, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform-origin: left center;
}
/* Hamburger to X Animation */
.menu-toggle.active .bar1 {
    transform: rotate(45deg) translate(2px, -2px);
}
.menu-toggle.active .bar2 {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.active .bar3 {
    transform: rotate(-45deg) translate(2px, 2px);
}


@media (max-width: 768px) {
    .header-container {
        padding: 0 20px !important;
    }
    .hero-split-layout {
        padding-left: 28px !important; /* Optical alignment with logo icon on mobile */
        padding-right: 20px !important;
    }
    .logo img,
    .header-logo-img {
        max-height: 60px;
        max-width: 180px;
        height: auto;
        width: auto;
    }
    .footer-logo img,
    .footer-logo-img {
        max-height: 60px;
        max-width: 180px;
        height: auto;
        width: auto;
        padding: 10px 0 !important;
    }
    .menu-toggle {
        display: flex;
    }
    .main-navigation {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        border-bottom: 3px solid var(--gold);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 998;
    }

    .main-navigation.active {
        max-height: 420px; /* Increased to accommodate the Enquire Now button */
    }

    .main-navigation .header-btn {
        display: block;
        text-align: center;
        margin: 10px 30px 25px 30px;
        padding: 10px 0;
        font-size: 13px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 15px 30px 5px 30px;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
        font-size: 14px;
        text-align: left;
        width: 100%;
        color: #2b2b2b;
        transition: color 0.3s ease;
        cursor: pointer !important;
    }

    .nav-menu a:hover,
    .nav-menu a.active,
    .nav-menu .current-menu-item a,
    .nav-menu .current_page_item a,
    .nav-menu li.current-menu-item > a,
    .nav-menu li.current_page_item > a {
        color: var(--gold) !important;
    }

    .nav-menu a::after {
        display: none !important;
    }
}

/* Modern Hero Section */
.seasons-hero-modern {
    height: 95vh;
    min-height: 730px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 122px; /* Offset the solid fixed header + top utility bar */
    background-color: #0b0a08;
    background-image: url('assets/images/hero-first-frame.webp');
    background-size: cover;
    background-position: center center;
}

/* Background Video for Modern Hero Section */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0.05) 55%, transparent 75%);
    z-index: 1;
    pointer-events: none;
}

.hero-main-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 2; /* Render content on top of background */
}

.hero-text-content {
    max-width: 650px;
    padding: 0 20px 0 0;
    margin: auto 0;
}


.hero-title-modern {
    /*font-family: 'Playfair Display', serif;*/
    font-family: 'Geist', sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin: 0 0 24px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-title-modern .title-line-2 {
    color: #cca353;
}

/* Hero Mask Animations */
.animated-line {
    display: block;
    overflow: hidden;
    line-height: 1.15;
    padding-bottom: 0.1em;
}

.hero-title-modern .title-line-1,
.hero-title-modern .title-line-2 {
    visibility: hidden; /* Prevent flash of unstyled content before JS splits it */
    display: inline-block;
}

.hero-title-modern .title-line-1.split-complete,
.hero-title-modern .title-line-2.split-complete {
    visibility: visible;
}

.char {
    display: inline-block;
    transform: translateY(115%);
}

.char.animate-up {
    animation: maskSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--reveal-delay);
}

.char.animate-down {
    animation: fadeExit 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards !important;
    animation-delay: 0s !important;
}

.word {
    display: inline-block;
    white-space: nowrap;
}

.char-space {
    display: inline-block;
}

.hero-subtitle-modern {
    /*font-size: 18px;*/
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-subtitle-modern.animate-up {
    animation: fadeSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 1.2s forwards;
}

.hero-subtitle-modern.animate-down {
    animation: fadeExit 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards !important;
    animation-delay: 0s !important;
}

@keyframes maskSlideUp {
    0% {
        transform: translateY(115%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeExit {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Hero Bottom Services Strip */
/* Hero Bottom Services Strip - Frosted Glassmorphic Overlay */
.hero-features-icons {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
    background: rgba(15, 12, 8, 0.52);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(204, 163, 83, 0.28);
    border-radius: 12px;
    padding: 14px 12px;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.9s forwards;
}

.feature-icon-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(204, 163, 83, 0.18);
    padding: 0 4px;
}

.feature-icon-item:last-child {
    border-right: none;
}

.feature-icon-item .feature-svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none !important;
    stroke-width: 2.2px;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.feature-icon-item:hover .feature-svg {
    transform: scale(1.15);
}

.feature-icon-text {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    line-height: 1.35;
    font-family: 'Geist', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
    .hero-features-icons {
        margin-top: 40px;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title-modern,
    .feature-icon-text {
        text-transform: none;
    }

    .about-image-wrapper {
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
    }

    .hero-features-icons {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        box-sizing: border-box;
        gap: 6px;
        margin-top: 24px;
        background: rgba(15, 12, 8, 0.55);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(204, 163, 83, 0.25);
        border-radius: 12px;
        padding: 14px 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }
    .feature-icon-item {
        border-right: none;
        padding: 0 2px;
        flex: 1;
        min-width: 0;
    }
    .feature-icon-item:last-child {
        display: none !important; /* Option A: Show 5 icons on mobile so they are bigger & clearer */
    }
    .feature-icon-item .feature-svg {
        width: 22px;
        height: 22px;
        stroke-width: 2.2px;
        margin-bottom: 6px;
    }
    .feature-icon-text {
        font-size: 9px;
        font-weight: 700;
        /*letter-spacing: 0.02em;*/
        line-height: 1.25;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    }
}

@media (max-width: 480px) {
    .hero-features-icons {
        gap: 6px;
    }
    .feature-icon-item .feature-svg {
        width: 20px;
        height: 20px;
        stroke-width: 2px;
    }
    /*.feature-icon-text {
        font-size: 8px;
        font-weight: 700;
    }*/
}



/* Split Hero Layout */
.hero-split-layout {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    height: 100%;
    max-width: 100% !important;
    /*padding: 0 40px !important;*/
}

.hero-left-col {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px 0 50px 0;
}

.hero-right-col {
    flex: 0 0 50%;
    display: flex;
    gap: 20px;
    height: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.hero-right-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background: linear-gradient(to bottom, #000000 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-right-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35vh;
    background: linear-gradient(to top, #000000 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-image-col {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.col-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.col-track img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Animations */
.track-up {
    animation: scrollUp 45s linear infinite;
}

.track-down {
    animation: scrollDown 35s linear infinite;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

/* Marquee horizontal animations */
@keyframes scrollL2R {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes scrollR2L {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Responsive Layout display utilities */
.desktop-only-layout {
    display: flex !important;
}

.mobile-only-layout {
    display: none !important;
}

@media (max-width: 992px) {
    .desktop-only-layout {
        display: none !important;
    }
    .mobile-only-layout {
        display: flex !important;
    }
    .hero-split-layout {
        flex-direction: column;
        padding-top: 40px;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
    }
    .hero-left-col, .hero-right-col {
        flex: 0 0 100%;
        width: 100%;
    }
    .hero-left-col {
        padding: 0;
        justify-content: flex-start;
        width: 100%;
    }
    .hero-text-content {
        margin: 0;
    }
    .hero-right-col {
        height: 50vh;
        margin-top: 20px;
    }
    .seasons-hero-modern {
        height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
        background-position: top center;
        overflow: hidden;
        width: 100%;
        position: relative;
    }
    .seasons-hero-modern > .seasons-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Mobile Marquee Rows */
    .hero-marquee-rows {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        display: flex;
        flex-direction: column;
        gap: 12px;
        overflow: hidden;
        /*margin-top: 45px;*/
    }
    .marquee-track {
        width: 100%;
        overflow: hidden;
    }
    .marquee-inner {
        display: flex;
        gap: 12px;
        width: max-content;
    }
    .marquee-inner img {
        width: 160px;
        height: 110px;
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    .row-l2r .marquee-inner {
        animation: scrollL2R 25s linear infinite;
    }
    .row-r2l .marquee-inner {
        animation: scrollR2L 25s linear infinite;
    }
}

@media (max-width: 768px) {
    .hero-video-bg {
        object-position: left center !important;
    }

    .hero-video-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.1) 100%) !important;
    }

    .hero-title-modern {
        font-size: 24px !important;
    }
    .hero-subtitle-modern {
        font-size: 12px !important;
    }
}

/* About Section */
.seasons-about {
    padding: 100px 0;
    background-color: var(--white);
}

.sub-tagline {
    display: block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px; /* space since it's now below the heading */
    margin-bottom: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
}

.section-text {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 10px;
    margin-bottom: 0px;
}

.about-image-wrapper {
    position: relative;
    background-color: #000000;
    border-radius: 0 100px 0 0;
    overflow: hidden;
    display: block;
    height: 400px; /* Reduced height of the right side */
    max-width: 500px; /* Cap width to prevent excessive stretching on wide containers */
    margin-left: auto; /* Keep card aligned to the right edge of grid column */
}

.about-img {
    width: 105%;
    height: 105%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0 100px 0 0;
    margin-top: -2.5%;
    margin-left: -2.5%;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0 100px 0 0;
}

/* Services Grid */
.cards-section.seasons-services {
    position: relative;
    /*min-height: 350vh;*/
    padding: 0;
    background-color: var(--cream-bg);
}

.cards-stage {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 9999px;
    transform-style: preserve-3d;
    overflow: hidden;
}

.section-center-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 50px;
    font-family: 'Geist', sans-serif;
    color: var(--dark, #111111);
}

@media (max-width: 992px) {
    .section-center-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section-center-title {
        font-size: 26px !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .section-center-title {
        font-size: 23px !important;
        margin-bottom: 25px;
    }
}

.cards-section .section-center-title {
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin-bottom: 0;
    width: 100%;
    pointer-events: none;
}

.service-card {
    position: absolute;
    width: 250px;
    height: 320px;
    border-radius: 6px;
    transform-style: preserve-3d;
    transform-origin: center center;
    will-change: transform;
    cursor: pointer;
}

.card-face {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 26px 26px;
}

.front {
    background: #2b2b2b;
    border: 1px solid rgba(220, 165, 74, 0.22);
    /*box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08), 0 30px 80px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.02);*/
    position: relative;
    height: 280px;
}

.back {
    background: #fffaf1;
    color: #111111;
    border: 1px solid rgba(220, 165, 74, 0.22);
    /*box-shadow: 0 20px 38px rgba(0, 0, 0, 0.05), 0 26px 70px rgba(0, 0, 0, 0.08);*/
    transform: rotateY(180deg);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Back Card Face Title Bar */
.back-title-bar {
    width: 100%;
    background-color: #2b2b2b;
    padding: 16px 10px;
    text-align: center;
    transition: background-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.back-title-bar h3 {
    color: #ffffff !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Gold background on hover */
.service-card:hover .back-title-bar,
.service-card.is-flipped .back-title-bar {
    background-color: var(--gold) !important;
}


.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.number {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.72);
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: #f3b34b;
    font-size: 22px;
}

.icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    transition: color 300ms ease;
    line-height: 1.4;
    text-align: center;
}

.service-card .front h3 {
    color: var(--gold);
    /*font-family: 'Playfair Display', serif;*/
    font-family: 'Geist', sans-serif;
    font-size: 19px;
    margin-top: 25px;
    padding-top: 0;
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
}

.front-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    /*min-height: 120px;*/
}

.front-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 68px;
    position: relative;
}

.front-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 36px;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #f3b34b, transparent);
}

.front-icon .dashicons {
    font-size: inherit;
    width: auto;
    height: auto;
}

.back h3 {
    margin-top: 0;
    /*font-family: 'Playfair Display', serif;*/
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    color: #0f1a2b;
    /*letter-spacing: 0.06em;*/
}

.back .number {
    color: #666666;
}

.back .icon {
    background: #f7f0e2;
    color: #e0a43f;
}

.back-card-top {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.back-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f0e2;
    color: #e0a43f;
    font-size: 28px;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s ease, color 0.3s ease;
}

.back-icon .dashicons {
    font-size: inherit;
    width: auto;
    height: auto;
}

/* Back Card Hover Styles */
.service-card:hover .back {
    border-color: var(--gold);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.05), 
                0 26px 70px rgba(0, 0, 0, 0.08);
}

.back-divider {
    width: 54px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d7a445, transparent);
    margin: 10px auto 16px;
}

.front-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 15px auto 0;
}

.front-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    /*font-family: 'Poppins', sans-serif;*/
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    text-align: center;
    margin-top: 0;
    margin-bottom: auto;
    width: 100%;
}

.back p {
    font-size: 15px;
    line-height: 1.7;
    color: #4f5663;
    text-align: center;
    margin: 0;
    padding: 0 6px;
}

.card-1 { z-index: 4; }
.card-2 { z-index: 3; }
.card-3 { z-index: 2; }
.card-4 { z-index: 1; }

.service-card {
    transform: translateX(0) translateY(0) rotate(0deg) rotateY(0deg) scale(1);
}

.services-cta-container {
    position: absolute;
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%);
    z-index: 10;
    margin-top: 0;
    display: flex;
    justify-content: center;
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--gold) 0%, #c59137 100%);
    color: var(--white) !important;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(220, 165, 74, 0.2);
    transition: transform 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 350ms ease-out;
    border: none;
    text-transform: uppercase;
}

.services-cta-btn:hover {
    background: linear-gradient(135deg, #e5b358 0%, #b8822d 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 165, 74, 0.35);
}

.services-cta-btn .cta-arrow {
    transition: transform 300ms ease;
}

.services-cta-btn:hover .cta-arrow {
    transform: translateX(7px);
}

@media (max-width: 1100px) {
    .service-card {
        width: 260px;
        height: 340px;
    }

    .service-card h3 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .cards-section.seasons-services {
        min-height: auto;
        padding: 80px 0;
    }

    .cards-section .section-center-title {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 40px;
        text-align: center;
        pointer-events: auto;
    }

    .cards-stage {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        perspective: 9999px;
        transform-style: preserve-3d;
        overflow: visible;
    }

    .service-card {
        position: relative;
        width: 280px;
        height: 320px;
        margin: 0 auto;
    }

    .card-face {
        padding: 26px;
    }

    .service-card h3 {
        font-size: 17px;
    }

    .back h3 {
        font-size: 20px;
    }

    .services-cta-container {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 50px;
    }

    .services-cta-btn {
        font-size: 14px;
        padding: 14px 32px;
    }
}

/* Making Process Video Section */
.seasons-making-video {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #fffcf6 0%, #fffbf2 100%);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.video-pattern-left,
.video-pattern-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    pointer-events: none;
    z-index: 1;
}

.video-pattern-left {
    left: 0;
}

.video-pattern-right {
    right: 0;
}

.making-video-wrapper {
    position: relative;
    z-index: 2;
}

.making-video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
}

/* Custom Gold Outlined Button with Hover & Idle Animations */
.video-cta-btn {
    border: 1.5px solid var(--gold);
    background-color: transparent;
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    font-family: 'Geist', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 2;
    animation: pulseButton 3.5s infinite ease-in-out;
}

/* Light Shimmer sweep effect inside the outline button */
.video-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    z-index: 1;
    animation: shimmerSweep 4.5s infinite ease-in-out;
}

.video-cta-btn .cta-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-cta-btn:hover {
    animation: none; /* Stop pulsing on hover */
    background-color: var(--gold);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(220, 165, 74, 0.3);
    transform: translateY(-3px) scale(1.04);
}

.video-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

/* Idle Pulse & Shimmer Keyframes */
@keyframes pulseButton {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(220, 165, 74, 0.04);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(220, 165, 74, 0.12);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(220, 165, 74, 0.04);
    }
}

@keyframes shimmerSweep {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

@media (max-width: 768px) {
    .seasons-making-video {
        padding: 60px 0;
    }
    
    .video-pattern-left,
    .video-pattern-right {
        display: none;
    }
}

/* Why Choose Us */
.seasons-why-us {
    padding: 100px 0;
    background-color: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    text-align: center;
}

.why-item {
    padding: 20px 10px;
    transition: transform 150ms ease-out, border-bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
    border-bottom: 3px solid transparent;
    transform-style: preserve-3d;
}

.why-item:hover {
    transform: translateY(-6px);
    border-bottom: 3px solid var(--gold);
}

.why-icon {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.08);
}

.why-icon .dashicons {
    font-size: inherit;
    width: auto;
    height: auto;
}

.why-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-desc {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer styling */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 70px 0 30px;
    font-size: 14px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-widget h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul a {
    color: #999999;
}

.footer-widget ul a:hover {
    color: var(--gold);
}

.footer-logo img {
    max-height: 80px;
    margin-bottom: 20px;
}

.footer-logo-desc {
    color: #999999;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--white);
    background: #222222;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999999;
    margin-bottom: 15px;
}

.footer-contact li .dashicons {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid #222222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: #666666;
    font-size: 12px;
}

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Scroll Animation System (Branding & Advertising Theme) */
.animate-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 2.0s cubic-bezier(0.25, 1, 0.5, 1), transform 2.0s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-slide-left {
    transform: translateX(-70px);
}

.anim-slide-right {
    transform: translateX(70px);
}

.anim-slide-up {
    transform: translateY(50px);
}

.anim-slide-up-fade {
    transform: translateY(30px);
}

.anim-zoom-in {
    transform: scale(0.88);
}

/* Activated Visible States */
.animate-on-scroll.fade-in-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered Delay for Grid Cards to load sequentially (80ms steps) */

.why-us-grid .why-item:nth-child(1) { transition-delay: 0.05s; }
.why-us-grid .why-item:nth-child(2) { transition-delay: 0.1s; }
.why-us-grid .why-item:nth-child(3) { transition-delay: 0.15s; }
.why-us-grid .why-item:xyz-child(4) { transition-delay: 0.2s; } /* Fix: match exact list */
.why-us-grid .why-item:nth-child(4) { transition-delay: 0.2s; }
.why-us-grid .why-item:nth-child(5) { transition-delay: 0.25s; }

/* 3D Rotating Cube Banner Slider (Inside Hero Section) */
.cube-slider-wrapper {
    perspective: 1500px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    background-color: #000;
}

.cube-slider-container {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: translateZ(-47.5vh);
    transition: transform 1.6s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.cube-slide-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Face positions around the cube horizontal axis (rotated 90deg steps) */
.slide-front {
    transform: rotateX(0deg) translateZ(47.5vh);
}

.slide-bottom {
    transform: rotateX(-90deg) translateZ(47.5vh);
}

.slide-back {
    transform: rotateX(-180deg) translateZ(47.5vh);
}

.slide-top {
    transform: rotateX(90deg) translateZ(47.5vh);
}

/* Slide Face Active Selection States */
.cube-slider-container.show-face-1 { transform: translateZ(-47.5vh) rotateX(0deg); }
.cube-slider-container.show-face-2 { transform: translateZ(-47.5vh) rotateX(90deg); }
.cube-slider-container.show-face-3 { transform: translateZ(-47.5vh) rotateX(180deg); }
.cube-slider-container.show-face-4 { transform: translateZ(-47.5vh) rotateX(270deg); }

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */
.about-hero-section {
    height: 55vh;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.about-gold-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.about-divider-gold {
    width: 60px;
    height: 4px;
    background-color: var(--gold);
    margin: 20px auto;
    border-radius: 2px;
}

.about-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    line-height: 1.5;
}

/* Intro Section */
.about-intro-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-section-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #111111;
    margin-bottom: 20px;
}

.about-section-desc {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.85;
}

.about-intro-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-box {
    position: relative;
    width: 85%;
    max-width: 420px;
}

.about-large-img {
    width: 100%;
    height: auto;
    border-radius: 0 80px 0 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    z-index: 2;
    position: relative;
}

.gold-box-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 0 80px 0 0;
    z-index: 1;
}

/* Mission & Vision Section */
.about-mv-section {
    padding: 100px 0;
    background-color: var(--cream-bg);
}

.about-mv-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(220, 165, 74, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220, 165, 74, 0.1);
    border-color: var(--gold);
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.mv-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: #faf5e5;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.about-mv-card:hover .mv-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.mv-icon-box .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.mv-card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #111111;
}

.mv-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-text);
    margin: 0;
}

/* Core Values Section */
.about-values-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-values-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtext-centered {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.value-item:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--gold);
}

.value-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-icon .dashicons {
    font-size: 36px;
    width: 36px;
    height: 36px;
}

.value-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111111;
}

.value-desc {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 36px;
    }
    .about-hero-subtitle {
        font-size: 17px;
    }
    .about-section-heading {
        font-size: 28px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .about-img-box {
        width: 100%;
        margin-top: 30px;
    }
}

/* ==========================================
   ABOUT US PAGE STYLES
   ========================================== */
.seasons-about-page {
    padding-top: 0;
}

.seasons-page-banner {
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    margin-bottom: 0;
    margin-top: 138px; /* Push banner cleanly below the 138px fixed header */
    padding-top: 0;
}

.seasons-page-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);*/
    z-index: 1;
}

.seasons-page-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.seasons-page-banner .page-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.seasons-page-banner .page-subtitle {
    font-size: 18px;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.5;
}

/* Main About Grid */
.about-page-main {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-heading {
    font-size: 38px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-desc p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-desc p:last-child {
    margin-bottom: 0;
}

/* Right Visual Branding Card */
.about-branding-card {
    background-color: #111111;
    border: 2px solid var(--gold);
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.about-branding-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 165, 74, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-branding-card .est-tag {
    font-size: 12px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.about-branding-card .card-year {
    font-size: 72px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin: 10px 0;
    display: block;
}

.about-branding-card .gold-separator {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 20px auto;
}

.about-branding-card .card-location {
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* Mission Vision Values (Dark Section) */
.mission-vision-values {
    padding: 100px 0;
    background-color: #111111;
    position: relative;
    border-top: 1px solid #222;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background-color: #161616;
    border: 1px solid #222222;
    padding: 50px 35px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.mvv-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mvv-card.highlighted {
    background-color: #0b0b0b;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(220, 165, 74, 0.05);
}

.mvv-icon-wrap {
    margin-bottom: 25px;
    color: var(--gold);
}

.mvv-icon-wrap .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
}

.mvv-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mvv-text {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mvv-card.highlighted {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .seasons-page-banner {
        height: 34vh;
        min-height: 230px;
        margin-top: 60px; 
        background-position: center center !important;
        background-size: cover !important;
        padding-top: 0;
    }

    .seasons-about-page .seasons-page-banner {
        background-position: 85% center !important;
    }

    .seasons-gallery-page .seasons-page-banner {
        height: 38vh !important;
        min-height: 250px !important;
        background-position: 60% 10% !important;
    }
}

@media (max-width: 480px) {
    .seasons-page-banner {
        height: 30vh;
        min-height: 200px;
        background-position: center center !important;
    }

    .seasons-about-page .seasons-page-banner {
        background-position: 87% center !important;
    }

    .seasons-gallery-page .seasons-page-banner {
        height: 36vh !important;
        min-height: 240px !important;
        background-position: 60% 8% !important;
    }
}
    .seasons-page-banner .page-title {
        font-size: 22px;
    }
    .seasons-page-banner .page-subtitle {
        font-size: 15px;
    }
    .about-page-main {
        padding: 60px 0;
    }
    .about-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .about-branding-card {
        padding: 40px 30px;
    }
    .about-branding-card .card-year {
        font-size: 60px;
    }
    .mission-vision-values {
        padding: 60px 0;
    }
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mvv-card.highlighted {
        grid-column: span 1;
    }
}

/* ==========================================================================
   Services Page Styles (Cards Grid Directly After Banner)
   ========================================================================== */
.seasons-services-page {
    background-color: #ffffff;
}

/* Services Grid Section */
.services-grid-section {
    padding: 40px 0 100px; /* Reduced to balance title block */
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

.services-grid-header {
    margin-bottom: 60px;
}

.services-grid-header .section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.services-grid-title {
    font-size: 36px;
    font-weight: 700;
    color: #111111;
    font-family: 'Geist', sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid-divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto;
    border-radius: 0;
}

/* Premium Responsive Grid */
.services-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card Flipping System - No Border Radius */
.service-flip-card {
    background-color: transparent;
    width: 100%;
    height: 380px;
    perspective: 1000px;
}

.service-flip-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 1.2s cubic-bezier(0.2, 0.85, 0.32, 1.2); /* Slowed down from 0.8s to 1.2s */
    transform-style: preserve-3d;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-radius: 0;
}

.service-flip-card:hover .card-inner {
    transform: rotateY(180deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-flip-card.is-flipped .card-inner {
    transform: rotateY(180deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-flip-card .card-face-front,
.service-flip-card .card-face-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 0;
    overflow: hidden;
}

.service-flip-card .card-face-back {
    pointer-events: auto;
    z-index: 2;
}

/* Front Card Style (Image with Overlay Bar at the Bottom) */
.service-flip-card .card-face-front {
    background-color: #222;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.08);
}

.service-flip-card .card-front-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 1;
}

.service-flip-card .card-front-content {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(17, 17, 17, 0.85);
    border-top: 1.5px solid var(--gold);
    padding: 18px 15px;
    text-align: center;
}

.service-flip-card .card-title-wrap h3 {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Geist', sans-serif;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.service-flip-card:hover .card-title-wrap h3 {
    color: var(--gold);
}

/* Back Card Style (Solid Gold card with dark accents and centered content) */
.service-flip-card .card-face-back {
    color: #111111; /* Dark text for contrast on gold background */
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 35px 25px;
    border: 1.5px solid var(--gold);
    background-color: var(--gold); /* Solid gold background color */
}

.service-flip-card .card-back-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.service-flip-card .card-back-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff; /* Solid white background */
    color: var(--gold); /* Gold icon */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* Subtle shadow for depth */
}

.service-flip-card .card-back-icon-wrap .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.service-flip-card .card-back-title {
    font-size: 16px;
    font-weight: 700;
    color: #111111; /* Dark text */
    font-family: 'Geist', sans-serif;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-flip-card .card-back-divider {
    width: 40px;
    height: 1.5px;
    background-color: #111111; /* Dark divider line */
    margin-bottom: 18px;
}

.service-flip-card .card-back-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #222222; /* Darker description text for maximum readability */
    margin: 0 0 25px 0;
    text-align: center;
    font-family: 'Geist', sans-serif;
}

.service-flip-card .btn-card-contact {
    padding: 10px 24px;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 0;
    background-color: #111111; /* Dark background button */
    color: var(--white) !important; /* White text for button */
    border: 1.5px solid #111111;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Geist', sans-serif;
    pointer-events: auto;
    position: relative;
    z-index: 3;
}

.service-flip-card .btn-card-contact:hover {
    background-color: transparent;
    color: #111111 !important; /* Gold card background outline hover look */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17,17,17,0.2);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1200px) {
    .services-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .services-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-section {
        padding: 30px 0 70px; /* Reduced to balance title block */
    }
    .services-grid-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .services-card-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.seasons-contact-page {
    background-color: #ffffff;
}

.contact-page-main {
    padding: 100px 0 0 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: start;
}

.contact-info-column {
    padding-right: 20px;
}

.contact-heading {
    font-size: 38px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-intro-text {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(220, 165, 74, 0.08);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(220, 165, 74, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-icon-wrap {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: scale(1.05);
}

.contact-icon-wrap .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
}

.contact-detail-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail-text p {
    font-size: 15.5px;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

.contact-detail-text p a {
    color: var(--gray-text);
}

.contact-detail-text p a:hover {
    color: var(--gold);
}

/* Contact Form Card */
.contact-form-column {
    position: relative;
}

.contact-form-card {
    background-color: #111111;
    border: 2px solid var(--gold);
    padding: 50px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    position: relative;
}

.form-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    /*font-family: 'Playfair Display', serif;*/
    font-family: 'Geist', sans-serif;
    letter-spacing: 1px;
}

.form-card-subtitle {
    font-size: 13.5px;
    color: #cccccc;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.contact-form-card .gold-separator {
    width: 50px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 30px;
}

/* Form Fields Styling (Fallback & Contact Form 7) */
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 13px 18px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 14.5px;
    /*font-family: 'Poppins', sans-serif;*/
    font-family: 'Geist', sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
    /*margin-bottom: 20px;*/
}

.contact-form-card select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dca54a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 15px;
    padding-right: 45px;
}

.contact-form-card select option {
    background-color: #111111;
    color: #ffffff;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.08);
    outline: none;
}

.contact-form-card textarea {
    resize: vertical;
    margin-bottom: 25px;
}

.contact-form-card .btn-full,
.contact-form-card input[type="submit"] {
    width: 100%;
    padding: 13px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background-color: var(--gold);
    color: var(--white) !important;
    transition: all 0.4s ease;
}

.contact-form-card .btn-full:hover,
.contact-form-card input[type="submit"]:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 165, 74, 0.4);
}

/* Contact Form 7 Elements Styling overrides */
.contact-form-card .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-card .wpcf7-form-control {
    box-sizing: border-box;
}

.contact-form-card .wpcf7-not-valid-tip {
    color: #ff5252;
    font-size: 12px;
    margin-top: -15px;
    margin-bottom: 15px;
    display: block;
    text-align: left;
}

.contact-form-card .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 13.5px;
    line-height: 1.5;
    text-align: center;
    border: 1px solid transparent;
}

.contact-form-card .wpcf7-response-output.wpcf7-validation-errors {
    border-color: #ffb900;
    background-color: rgba(255, 185, 0, 0.05);
    color: #ffb900;
}

.contact-form-card .wpcf7-response-output.wpcf7-mail-sent-ok {
    border-color: #46b450;
    background-color: rgba(70, 180, 80, 0.05);
    color: #46b450;
}

/* Map Section */
.contact-map-section {
    padding-top: 100px;
    width: 100%;
}

.contact-map-section .map-container {
    max-width: 100% !important;
    padding: 0 !important;
}

.contact-map-section iframe {
    display: block;
    width: 100%;
    border: 0;
    height: 480px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-column {
        padding-right: 0;
    }

    .contact-form-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-page-main {
        padding: 70px 0 0 0;
    }

    .contact-heading {
        font-size: 30px;
    }

    .contact-map-section {
        padding-top: 70px;
    }

    .contact-map-section iframe {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-map-section iframe {
        height: 300px;
    }
}

/* ==========================================================================
   Redesigned About Page (Who We Are, MVV, Our Approach)
   ========================================================================== */

/* Who We Are Section */
.about-section-who-we-are {
    padding: 60px 0 120px; /* Increased top padding to give spacing below header text */
    background:
        radial-gradient(circle at top left, rgba(220, 165, 74, 0.08) 0%, transparent 30%),
        linear-gradient(180deg, #fffdf8 0%, #ffffff 55%, #fafafa 100%);
    overflow: hidden;
    position: relative;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.section-tag-with-line {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section-tag-with-line::after {
    content: '';
    width: 50px;
    height: 1.5px;
    background-color: var(--gold);
    display: inline-block;
}

.who-we-are-left .about-heading {
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    line-height: 1.12;
    margin-bottom: 26px;
    /*font-family: 'Poppins', sans-serif;*/
    font-family: 'Geist', sans-serif;
    text-transform: none;
}

.who-we-are-left .about-desc p {
    font-size: 16px;
    color: #6f6f6f;
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 640px;
}

.who-we-are-left .about-desc p:last-child {
    margin-bottom: 0;
}

.about-cta-wrap {
    margin-top: 40px;
}

.btn-journey {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border: 1.5px solid rgba(220, 165, 74, 0.75);
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.7px;
    background: linear-gradient(180deg, #fffdf8 0%, #fff6e2 100%);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(220, 165, 74, 0.12);
}

.btn-journey .arrow-icon {
    transition: transform 0.3s ease;
}

.btn-journey:hover {
    background-color: var(--gold);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(220, 165, 74, 0.28);
    transform: translateY(-2px);
}

.btn-journey:hover .arrow-icon {
    transform: translateX(4px);
}

/* Image Container & Team Badge */
.about-image-container {
    position: relative;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-main-image {
    width: 100%;
    height: 380px; /* Reduced to balance with left text column height */
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

@media (max-width: 768px) {
    .about-main-image {
        height: 280px; /* Adjusted shorter height for mobile */
    }
}

.passionate-creatives-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(220, 165, 74, 0.3);
    padding: 30px 35px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 380px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.passionate-creatives-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.badge-icon-wrap {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.badge-text-wrap {
    display: flex;
    flex-direction: column;
}

.badge-tag {
    font-size: 11px;
    font-weight: 600;
    color: #888888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.badge-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.badge-desc {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* Section 2: Mission, Vision & Values (Cuberto-Style Horizontal Rows) */
.about-section-mvv {
    background-color: #050505; /* Deep black background */
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-section-mvv::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(220, 165, 74, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.mvv-cuberto-container {
    display: flex;
    flex-direction: column;
}

.mvv-cuberto-row {
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Thin horizontal line separator */
.mvv-cuberto-row .mvv-cuberto-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2); /* Increased opacity to be clearly visible */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Add top border to the first row to close the container */
.mvv-cuberto-row:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2); /* Increased opacity to be clearly visible */
}

/* Icon (left) */
.mvv-cuberto-icon {
    width: 100px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: center center;
    flex-shrink: 0;
}

.mvv-cuberto-icon svg {
    display: block;
    width: 48px;
    height: 48px;
    transition: stroke 0.5s ease;
    animation: spinSlow 20s linear infinite; /* Slow continuous auto rotation */
}

/* Tag/Label (center) */
.mvv-cuberto-tag {
    width: 250px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    flex-shrink: 0;
    padding-right: 30px;
}

/* Paragraph (right) */
.mvv-cuberto-text {
    flex-grow: 1;
}

.mvv-cuberto-text p {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    transition: color 0.5s ease;
    font-weight: 400;
}

/* Hover Interactions */
.mvv-cuberto-row:hover {
    cursor: default;
}

.mvv-cuberto-row:hover .mvv-cuberto-icon {
    color: var(--gold);
    transform: scale(1.15);
}

.mvv-cuberto-row:hover .mvv-cuberto-text p {
    color: #ffffff;
}

.mvv-cuberto-row:hover .mvv-cuberto-divider {
    background-color: var(--gold);
    box-shadow: 0 0 10px rgba(220, 165, 74, 0.4);
}

/* Section 3: Our Approach Timeline */
.about-section-approach {
    padding: 120px 0;
    background-color: #fcfbfa;
    position: relative;
}

.approach-header {
    margin-bottom: 80px;
}

.approach-tag-lines {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.approach-tag-lines::before,
.approach-tag-lines::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--gold);
}

.approach-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.approach-heading {
    font-size: 36px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    /*font-family: 'Poppins', sans-serif;*/
    font-family: 'Geist', sans-serif;
}

/* Timeline Layout */
.approach-timeline-wrap {
    position: relative;
    padding: 30px 0;
}

.approach-timeline-line {
    position: absolute;
    top: 65px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 4px, transparent 0, transparent 10px);
    z-index: 1;
    opacity: 0.6;
}

.approach-steps-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.approach-step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.step-icon-outer {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fcfbfa;
    border: 1px dashed var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.step-icon-inner {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(220, 165, 74, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.approach-step-card:hover .step-icon-outer {
    transform: scale(1.08);
    border-color: var(--gold-hover);
    box-shadow: 0 8px 20px rgba(220, 165, 74, 0.15);
}

.approach-step-card:hover .step-icon-inner {
    background-color: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

.step-number {
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    display: block;
    margin-bottom: 8px;
    /*font-family: 'Poppins', sans-serif;*/
    font-family: 'Geist', sans-serif;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.step-desc {
    font-size: 13.5px;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .passionate-creatives-badge {
        right: 0px;
        padding: 25px;
        max-width: 320px;
    }
}

@media (max-width: 992px) {
    .about-section-approach {
        padding: 80px 0;
    }
    .about-section-who-we-are {
        padding: 40px 0 80px 0; /* Adjusted for better spacing below title */
    }

    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .passionate-creatives-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 30px auto 0 auto;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .mvv-cuberto-row {
        padding: 40px 0;
    }
    
    .mvv-cuberto-tag {
        width: 200px;
    }
    
    .mvv-cuberto-text p {
        font-size: 18px;
    }

    .approach-steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        margin: 0 auto;
    }

    .approach-timeline-line {
        display: none;
    }

    .approach-step-card {
        padding: 0;
    }

    .step-icon-outer {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .mvv-cuberto-row {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 40px 10px;
    }
    
    .mvv-cuberto-icon {
        margin-bottom: 20px;
        width: auto;
    }
    
    .mvv-cuberto-tag {
        margin-bottom: 15px;
        padding-right: 0;
        width: auto;
    }
    
    .mvv-cuberto-text p {
        font-size: 16.5px;
    }
}

@media (max-width: 576px) {
    .who-we-are-left .about-heading {
        font-size: 28px;
    }

    .approach-heading {
        font-size: 26px;
    }

    .passionate-creatives-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }

    .badge-icon-wrap {
        margin-top: 0;
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   Contact Page Styles (UI-matched two-column layout)
   ========================================================================== */
.seasons-contact-page {
    background-color: #ffffff;
}

.contact-page-main {
    padding: 20px 0 60px 0; /* Added bottom padding so the form card's bottom border & shadow are never clipped */
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Reduced left section width */
    gap: 70px;
    align-items: stretch; /* Stretches left column so vertical divider line extends full height of the contact form */
}

.contact-info-column {
    border-right: 1.5px solid rgba(220, 165, 74, 0.25);
    padding-right: 70px;
}

.contact-details-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 45px;
}

.contact-details-title {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Geist', sans-serif;
}

.contact-details-header .gold-line {
    width: 45px;
    height: 1.5px;
    background-color: var(--gold);
    display: inline-block;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-detail-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.contact-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1.2px solid rgba(220, 165, 74, 0.4);
    background-color: var(--cream-bg);
    /*color: #9d7432;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-icon-wrap {
    background-color: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 165, 74, 0.25);
}

.contact-icon-wrap .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.contact-detail-text h3 {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Geist', sans-serif;
}

.contact-detail-text p {
    font-size: 15px;
    color: #444444;
    line-height: 1.65;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.gold-link-styled {
    color: #b58d4c;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.gold-link-styled:hover {
    color: var(--gold-hover);
}

/* Contact Form Card (Right Column) */
.contact-form-column {
    position: relative;
}

.contact-form-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-top: 5px solid var(--gold); /* Thick gold top border */
    padding: 40px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px; /* Reduced header margin */
}

.form-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #111111; /* Dark text */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Geist', sans-serif;
}

.contact-form-header .gold-line {
    width: 45px;
    height: 1.5px;
    background-color: var(--gold);
    display: inline-block;
}

/* Form Layout Rows */
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; /* Reduced horizontal gap */
}

.form-field-wrapper {
    position: relative;
    margin-bottom: 14px; /* Reduced field margin */
}

.form-field-wrapper.full-width {
    grid-column: span 2;
}

/* Input Fields with Dashicons */
.form-field-wrapper input,
.form-field-wrapper select,
.form-field-wrapper textarea {
    width: 100%;
    padding: 12px 18px 12px 48px !important;
    background-color: #ffffff !important; /* White inputs */
    border: 1px solid #dcdcdc !important; /* Light gray borders */
    color: #222222 !important; /* Dark text */
    font-size: 14px;
    border-radius: 6px !important;
    transition: all 0.3s ease;
    box-shadow: none;
    font-family: 'Geist', sans-serif;
    margin-bottom: 0 !important; /* Override legacy margin spacing */
}

.form-field-wrapper input::placeholder,
.form-field-wrapper select::placeholder,
.form-field-wrapper textarea::placeholder {
    color: #888888 !important;
    opacity: 1;
}

.form-field-wrapper input:focus,
.form-field-wrapper select:focus,
.form-field-wrapper textarea:focus {
    border-color: var(--gold) !important; /* Gold focus border */
    background-color: #ffffff !important;
    outline: none;
    box-shadow: 0 0 10px rgba(220, 165, 74, 0.08);
}

.form-field-wrapper .field-icon {
    position: absolute;
    left: 18px;
    top: 14px;
    color: var(--gold); /* Gold icons by default */
    font-size: 16px;
    width: 16px;
    height: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-field-wrapper textarea ~ .field-icon {
    top: 15px;
    transform: none;
}

.form-field-wrapper input:focus ~ .field-icon,
.form-field-wrapper select:focus ~ .field-icon,
.form-field-wrapper textarea:focus ~ .field-icon {
    color: var(--gold-hover);
}

.form-field-wrapper textarea {
    min-height: 100px; /* Reduced textarea height */
    height: 100px;
    resize: vertical;
    padding-top: 12px !important;
}

.form-field-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    background-size: 14px !important;
}

.form-field-wrapper select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dca54a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.form-field-wrapper select option {
    background-color: #ffffff;
    color: #222222;
}

/* Contact Form Footer */
.contact-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-form-footer.centered {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Keep checkbox left-aligned */
    text-align: left;
    margin-top: 10px;
    width: 100% !important;
    gap: 20px;
}

.contact-form-footer.centered .privacy-agreement {
    display: flex;
    justify-content: flex-start; /* Left-aligned checkbox under textarea */
    width: 100% !important;
}

.contact-form-footer.centered .submit-button-wrapper {
    display: flex !important;
    justify-content: center !important; /* Centered submit button */
    width: 100% !important;
    margin-top: 5px;
}

.contact-form-footer.centered .btn-submit,
.contact-form-footer.centered input[type="submit"] {
    margin: 0 auto !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 12px 28px; /* Slightly more compact submit button */
}

/* Custom Checkbox */
.privacy-agreement {
    display: flex;
    align-items: center;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 13.5px;
    color: #444444; /* Dark gray text */
    user-select: none;
    padding-left: 28px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #ffffff; /* White background for checkbox */
    border: 1px solid #cccccc; /* Light gray border */
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkbox-checkmark {
    border-color: var(--gold);
}

.checkbox-container input:checked ~ .checkbox-checkmark {
    background-color: #9f7432;
    border-color: #9f7432;
}

.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkbox-checkmark:after {
    display: block;
}

.checkbox-container .checkbox-checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    letter-spacing: 0.2px;
}

.checkbox-text a.gold-link {
    color: var(--gold);
    text-decoration: underline;
}

.checkbox-text a.gold-link:hover {
    color: var(--gold-hover);
}

/* Submit Button with Hover Arrow Slide */
.contact-form-footer .btn-submit,
.contact-form-footer input[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #9f7432;
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Geist', sans-serif;
}

.contact-form-footer .btn-submit:hover,
.contact-form-footer input[type="submit"]:hover {
    background-color: #c5913b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(159, 116, 50, 0.4);
}

.contact-form-footer .arrow-symbol {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.contact-form-footer .btn-submit:hover .arrow-symbol {
    transform: translateX(4px);
}

/* Contact Form 7 Elements Custom Styling Overrides */
.contact-form-card .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-card .wpcf7-form-control {
    box-sizing: border-box;
}

.contact-form-card .wpcf7-not-valid-tip {
    color: #ff5252;
    font-size: 11.5px;
    margin-top: 5px; /* Spacing below the field */
    margin-bottom: 5px;
    display: block;
    text-align: left;
    font-weight: 500;
}

.contact-form-card .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 13.5px;
    line-height: 1.5;
    text-align: center;
    border: 1px solid transparent;
}

.contact-form-card .wpcf7-response-output.wpcf7-validation-errors {
    border-color: #ffb900;
    background-color: rgba(255, 185, 0, 0.05);
    color: #ffb900;
}

.contact-form-card .wpcf7-response-output.wpcf7-mail-sent-ok {
    border-color: #46b450;
    background-color: rgba(70, 180, 80, 0.05);
    color: #46b450;
}

/* Contact Form 7 Native Acceptance Checkbox Override */
.contact-form-card .wpcf7-acceptance label {
    position: relative;
    cursor: pointer;
    display: block;
    padding-left: 28px !important;
    font-size: 13.5px;
    color: #444444; /* Dark gray text */
    user-select: none;
    line-height: 1.5;
}

.contact-form-card .wpcf7-acceptance input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.contact-form-card .wpcf7-acceptance .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #ffffff; /* White background */
    border: 1px solid #cccccc; /* Light gray border */
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-form-card .wpcf7-acceptance label:hover input[type="checkbox"] ~ .wpcf7-list-item-label::before {
    border-color: var(--gold);
}

.contact-form-card .wpcf7-acceptance input[type="checkbox"]:checked ~ .wpcf7-list-item-label::before {
    background-color: #9f7432;
    border-color: #9f7432;
}

.contact-form-card .wpcf7-acceptance .wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 4px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
}

.contact-form-card .wpcf7-acceptance input[type="checkbox"]:checked ~ .wpcf7-list-item-label::after {
    display: block;
}

/* Map Section */
.contact-map-section {
    padding-top: 60px;
    width: 100%;
    background-color: #ffffff;
}

.contact-map-section .map-container {
    max-width: 100% !important;
    padding: 0 !important;
}

.contact-map-section iframe {
    display: block;
    width: 100%;
    border: 0;
    height: 480px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info-column {
        border-right: none;
        padding-right: 0;
        border-bottom: 1.5px solid rgba(220, 165, 74, 0.2);
        padding-bottom: 50px;
    }

    .contact-form-card {
        padding: 45px 35px;
    }
}

@media (max-width: 768px) {
    .contact-page-main {
        padding: 15px 0 40px 0;
    }

    .contact-map-section {
        padding-top: 40px;
    }

    .contact-map-section iframe {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 35px 20px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-field-wrapper.full-width {
        grid-column: span 1;
    }

    .contact-map-section iframe {
        height: 300px;
    }
}

/* Contact Page Banner Height Override */
.seasons-contact-page .seasons-page-banner {
    /*height: 70vh;*/
    /*min-height: 500px;*/
}

@media (max-width: 768px) {
    .seasons-contact-page .seasons-page-banner {
        height: 36vh !important;
        min-height: 240px !important;
        background-position: 85% center !important;
        background-size: cover !important;
    }
}

@media (max-width: 480px) {
    .seasons-contact-page .seasons-page-banner {
        height: 32vh !important;
        min-height: 215px !important;
        background-position: 87% center !important;
    }
}

/* Contact Page Title Area below the banner */
.contact-title-container {
    text-align: center;
    padding-top: 35px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title-container .page-title {
    color: #111111;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.3;
    font-family: 'Geist', sans-serif;
}

@media (max-width: 768px) {
    .contact-title-container {
        padding-top: 25px;
        padding-bottom: 10px;
    }
    .contact-title-container .page-title {
        font-size: 22px;
        line-height: 1.4;
    }
}

/* About Page Title Area below the banner */
.about-title-container {
    text-align: center;
    padding-top: 35px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.about-title-container .page-title {
    color: #111111;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 8px auto;
    max-width: 800px;
    line-height: 1.3;
    font-family: 'Geist', sans-serif;
}

.about-title-container .page-subtitle {
    color: #666666;
    font-size: 15px;
    margin: 0 auto;
    font-family: 'Geist', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

@media (max-width: 768px) {
    .about-title-container {
        padding-top: 25px;
        padding-bottom: 10px;
    }
    .about-title-container .page-title {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 6px;
    }
    .about-title-container .page-subtitle {
        font-size: 13.5px;
    }
}

/* Services Page Title Area below the banner */
.services-title-container {
    text-align: center;
    padding-top: 35px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.services-title-container .page-title {
    color: #111111;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 8px auto;
    max-width: 800px;
    line-height: 1.3;
    font-family: 'Geist', sans-serif;
}

.services-title-container .page-subtitle {
    color: #666666;
    font-size: 15px;
    margin: 0 auto;
    font-family: 'Geist', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

@media (max-width: 768px) {
    .services-title-container {
        padding-top: 25px;
        padding-bottom: 10px;
    }
    .services-title-container .page-title {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 6px;
    }
    .services-title-container .page-subtitle {
        font-size: 13.5px;
    }
}

/* Gallery Page Title Area below the banner */
.gallery-title-container {
    text-align: center;
    padding-top: 35px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.gallery-title-container .page-title {
    color: #111111;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 8px auto;
    max-width: 800px;
    line-height: 1.3;
    font-family: 'Geist', sans-serif;
}

.gallery-title-container .page-subtitle {
    color: #666666;
    font-size: 15px;
    margin: 0 auto;
    font-family: 'Geist', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

@media (max-width: 768px) {
    .gallery-title-container {
        padding-top: 25px;
        padding-bottom: 10px;
    }
    .gallery-title-container .page-title {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 6px;
    }
    .gallery-title-container .page-subtitle {
        font-size: 13.5px;
    }
}

/* Page Load Text Focus Animation (Smooth blur-to-clear & slight slide-up, delay-free visual feel) */
.animate-fade-in {
    animation: textFocusIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    will-change: filter, opacity, transform;
}

.animate-fade-in-delayed {
    animation: textFocusIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
    opacity: 0;
    will-change: filter, opacity, transform;
}

@keyframes textFocusIn {
    0% {
        filter: blur(12px);
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        filter: blur(0);
        opacity: 1;
        transform: translateY(0);
    }
}




/* Gallery Carousel Redesign Styles */
.gallery-slider-section {
    padding: 100px 0 60px 0;
    background-color: #0b0b0b;
}

.gallery-slider-header {
    margin-bottom: 40px;
}

.gallery-slider-title {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-slider-divider {
    width: 65px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto 0 auto;
}

/* Slide Cards Hover & Shadow styling */
.gallery-slide-card {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.75;
}

.gallery-slide-card:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.gallery-slide-card:hover .slide-card-image {
    transform: scale(1.03);
}

/* Active Highlight slider border */
.gallery-slide-card.slide-active-highlight {
    opacity: 1 !important;
    transform: translateY(-8px) scale(1.03) !important;
    border-color: var(--gold) !important;
    border-width: 3px !important;
    box-shadow: 0 12px 30px rgba(220, 165, 74, 0.4) !important;
    z-index: 10;
}

.gallery-slide-card.slide-active-highlight .slide-card-footer {
    background-color: var(--gold) !important;
    border-top-color: var(--gold) !important;
}

.gallery-slide-card.slide-active-highlight .slide-card-title {
    color: #111111 !important;
}

.gallery-slide-card.slide-active-highlight .slide-card-badge {
    background-color: #111111 !important;
    color: var(--gold) !important;
}

/* Custom Navigation Buttons Positioning & Hover */
.gallery-prev-btn::after,
.gallery-next-btn::after {
    font-size: 16px !important;
    font-weight: 900;
}

.gallery-prev-btn:hover,
.gallery-next-btn:hover {
    background-color: var(--gold) !important;
    color: #000000 !important;
    border-color: var(--gold) !important;
}

/* Swiper pagination dots styling */
.gallery-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #555555;
    opacity: 0.8;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.gallery-pagination .swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 25px;
    border-radius: 5px;
}

/* Dynamic Projects Tab animations and styles */
.active-tab-show {
    display: block !important;
    opacity: 1 !important;
}

/* Project images grid hover */
.gallery-item-image-wrapper {
    overflow: hidden;
    position: relative;
}

.gallery-item-card:hover .gallery-item-overlay {
    opacity: 1 !important;
}

.gallery-item-card:hover .overlay-details {
    transform: translateY(0) !important;
}

/* Responsive Grid and Slider adjustments */
@media (max-width: 1200px) {
    .gallery-projects-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .gallery-swiper-container-outer {
        padding: 0 20px !important;
    }
    .gallery-slider-title {
        font-size: 28px;
    }
    .tab-service-title {
        font-size: 22px !important;
    }
    .gallery-projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 576px) {
    .gallery-swiper-container-outer {
        padding: 0 20px !important;
    }
    .gallery-prev-btn,
    .gallery-next-btn {
        width: 32px !important;
        height: 32px !important;
    }
    .gallery-prev-btn {
        left: -15px !important;
    }
    .gallery-next-btn {
        right: -15px !important;
    }
    .gallery-prev-btn::after,
    .gallery-next-btn::after {
        font-size: 11px !important;
    }
    .project-tab-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }
    .tab-service-title {
        font-size: 19px !important;
    }
    .gallery-projects-grid {
        grid-template-columns: 1fr !important;
    }
}
