/* -------------------------------------------------------------
   EIGHT FOLD GROUP - PREMIUM CSS STYLESHEET
   ------------------------------------------------------------- */

/* Custom Variables & Colors */
:root {
    --primary-navy: #123B79;
    --secondary-navy: #164A95;
    --navy-tint: #1E5AAE;
    --accent-gold: #C9A44D;
    --accent-gold-hover: #E3C57E;
    --accent-gold-rgb: 201, 164, 77;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    --text-body: #475569;
    --white: #ffffff;
    --border-color: rgba(201, 164, 77, 0.2);
    --border-color-light: rgba(255, 255, 255, 0.1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    font-size: 16px;
}

body {
    background-color: var(--white);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Grid Utilities */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Helper Utilities */
.text-center {
    text-align: center;
}

.text-light {
    color: var(--text-light) !important;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-body);
    font-weight: 300;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-outline-gold:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* -------------------------------------------------------------
   HEADER SECTION
   ------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.sticky {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-light);
    font-family: var(--font-body);
}

.logo-accent {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: #000000;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--accent-gold);
    color: var(--primary-navy) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--accent-gold-hover);
    color: var(--primary-navy) !important;
    transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* -------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    animation: kenburns 25s infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 5rem;
}

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

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.05;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    opacity: 0.7;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* -------------------------------------------------------------
   ABOUT SECTION
   ------------------------------------------------------------- */
.about-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.about-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-text {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--primary-navy);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.body-text {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 1.25rem;
}

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

.image-frame {
    position: relative;
    width: 90%;
    aspect-ratio: 4/5;
    background-color: var(--primary-navy);
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -2rem;
    bottom: -2rem;
    border: 2px solid var(--accent-gold);
    z-index: 1;
    pointer-events: none;
}

.about-img-main {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
}

.experience-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    z-index: 3;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--primary-navy);
    min-width: 130px;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.experience-badge .exp-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-align: center;
    margin-top: 0.25rem;
}

/* -------------------------------------------------------------
   SIGNATURE PROJECTS SECTION
   ------------------------------------------------------------- */
.projects-highlight-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.highlight-banner {
    padding: 6rem;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 1px solid var(--border-color);
}

.highlight-content {
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.highlight-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.highlight-title {
    font-size: 3.5rem;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* -------------------------------------------------------------
   PHILOSOPHY SECTION
   ------------------------------------------------------------- */
.philosophy-section {
    padding: 8rem 0;
    background-color: var(--primary-navy);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.philosophy-section .section-title {
    color: var(--text-light);
}

.philosophy-section .section-subtitle {
    color: var(--text-muted);
}

.philosophy-grid {
    position: relative;
    z-index: 2;
}

.philosophy-card {
    background-color: var(--secondary-navy);
    padding: 3.5rem 2.5rem;
    border: 1px solid var(--border-color-light);
    transition: var(--transition-smooth);
}

.philosophy-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.card-icon-wrapper {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.philosophy-card-title {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.philosophy-card-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* -------------------------------------------------------------
   SERVICES SECTION
   ------------------------------------------------------------- */
.services-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.services-grid {
    margin-bottom: 4rem;
}

.service-card {
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 3rem 2.5rem;
    overflow: hidden;
    border: 1px solid var(--primary-navy);
    transition: var(--transition-smooth);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 59, 121, 0.4);
    z-index: 1;
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    background-color: rgba(18, 59, 121, 0.7);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(18, 59, 121, 0.15);
}

.service-content {
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-icon {
    font-size: 2.25rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transform: translateY(1.5rem);
    transition: var(--transition-smooth);
}

.service-title {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: var(--transition-smooth);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-size: 0.8125rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: var(--transition-smooth);
}

/* Hover States for Services Card items */
.service-card:hover .service-icon {
    transform: translateY(0);
}

.service-card:hover .service-desc {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------
   TESTIMONIALS SECTION
   ------------------------------------------------------------- */
.testimonials-section {
    padding: 8rem 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    height: 320px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-content-card {
    background-color: var(--white);
    padding: 4rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(18, 59, 121, 0.02);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 3rem;
    color: rgba(201, 164, 77, 0.15);
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(201, 164, 77, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.client-info h4 {
    font-size: 1.125rem;
    color: var(--primary-navy);
    font-weight: 600;
    font-family: var(--font-body);
}

.client-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-arrow {
    background: transparent;
    border: none;
    font-size: 1rem;
    color: var(--primary-navy);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(18, 59, 121, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background-color: var(--primary-navy);
    color: var(--text-light);
    border-color: var(--primary-navy);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(18, 59, 121, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--accent-gold);
    transform: scale(1.5);
}

/* -------------------------------------------------------------
   CONTACT & ENQUIRY SECTION
   ------------------------------------------------------------- */
.contact-section {
    background-color: var(--primary-navy);
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color-light);
}

.contact-info-panel {
    padding-right: 4rem;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

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

/* Floating labels Form */
.contact-form-panel {
    background-color: var(--secondary-navy);
    padding: 4rem;
    border: 1px solid var(--border-color-light);
}

.form-title {
    color: var(--text-light);
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 0.75rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color-light);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-bottom-color: var(--accent-gold);
}

.form-label {
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s ease all;
}

/* CSS rule for floating label trigger */
.form-input:focus~.form-label,
.form-input:not(:placeholder-shown)~.form-label {
    top: -1.25rem;
    font-size: 0.75rem;
    color: var(--accent-gold);
}

.form-response {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    display: none;
}

.form-response.success {
    display: block;
    color: #10b981;
}

.form-response.error {
    display: block;
    color: #ef4444;
}

/* -------------------------------------------------------------
   FOOTER SECTION
   ------------------------------------------------------------- */
.footer {
    background-color: var(--primary-navy);
    color: var(--text-muted);
}

.footer-top {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color-light);
}

.footer-about {
    padding-right: 2rem;
}

.footer-logo {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-socials a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
}

.footer-title {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-info li {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-contact-info i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.footer-contact-info a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding: 2.5rem 0;
    font-size: 0.8125rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Floating CTA button */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    padding: 1rem 1.5rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-navy);
    transform: translateY(150px);
    transition: var(--transition-smooth);
}

.floating-cta.show {
    transform: translateY(0);
}

.floating-cta:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-3px);
}

/* -------------------------------------------------------------
   RESPONSIVE LAYOUTS (MEDIA QUERIES)
   ------------------------------------------------------------- */

/* Tablet & Smaller Screen Breakpoints */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .contact-info-panel {
        padding-right: 0;
    }

    .highlight-banner {
        padding: 4rem;
    }

    .highlight-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .header {
        padding: 1.25rem 0;
        background-color: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--border-color-light);
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: var(--transition-smooth);
        padding: 2rem;
        z-index: 999;
        border-top: 1px solid var(--border-color-light);
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-link {
        font-size: 1.25rem;
        color: var(--primary-navy);
    }
    
    .nav-link:hover, .nav-link.active {
        color: var(--accent-gold);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 6rem 0;
    }

    .image-frame {
        width: 100%;
        margin-top: 3rem;
    }

    .image-frame::after {
        display: none;
    }

    .philosophy-section,
    .services-section,
    .testimonials-section,
    .contact-section {
        padding: 6rem 0;
    }

    .highlight-banner {
        padding: 3rem 2rem;
    }

    .testimonial-content-card {
        padding: 3rem 2rem;
    }

    .testimonial-slider {
        height: 420px;
    }

    .contact-form-panel {
        padding: 3rem 2rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .testimonial-slider {
        height: 480px;
    }
}

/* =========================================
   Extended Services Page (services.html)
   ========================================= */

.page-hero-section {
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    border-bottom: 2px solid #C9A44D;
}

.page-hero-section .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.extended-services-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.services-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.ext-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    border-bottom: 3px solid transparent;
}

.ext-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-bottom-color: #C9A44D;
}

.ext-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    color: #C9A44D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.ext-service-card:hover .ext-icon-wrapper {
    background: #C9A44D;
    color: #fff;
    transform: scale(1.1);
}

.ext-service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #123B79;
    margin-bottom: 15px;
    font-weight: 600;
}

.ext-service-desc {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* -------------------------------------------------------------
   CLIENTS MARQUEE SECTION
   ------------------------------------------------------------- */
.clients-marquee-section {
    background-color: var(--white);
    padding: 4rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.marquee-title-container {
    margin-bottom: 2rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

/* Fading edges effect */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.marquee-track {
    display: inline-flex;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding-right: 5rem;
    /* Ensures gap consistency with the duplicated block */
}

.client-logo {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move left by 50% of the track width (which holds two identical content blocks) */
        transform: translateX(-50%);
    }
}

/* =========================================
   GLOBAL RESPONSIVE UTILITIES
   ========================================= */
@media (max-width: 1024px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .highlight-title {
        font-size: 2rem;
    }

    .footer-top .grid {
        grid-template-columns: 1fr;
    }
}