/* ==========================================================================
   Balance Books Financial CSS Stylesheet
   Designed for premium elegance, absolute clarity, and responsiveness.
   ========================================================================== */

@font-face {
    font-family: 'Mistrully';
    src: url('fonts/Mistrully.woff2') format('woff2'),
        url('fonts/Mistrully.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jonathan';
    src: url('fonts/JonathanSignature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- Custom Variables & Tokens --- */
:root {
    --bg-cream: #FAF7F2;
    --bg-card-light: #FFFFFF;
    --bg-dark-slate: #223D3C;
    /* Page 1 Section 2 dark green-teal */
    --bg-dark-brown: #251A12;
    /* Page 1 Section 3 & Page 2 Section 2 dark brown */
    --color-gold: #ffbd59;
    /* Main accent gold color */
    --color-gold-hover: #e6a94f;
    --color-orange-card: #F6B85E;
    /* Credentials orange/yellow cards */

    --color-text-dark: #1F2229;
    --color-text-light: #FAF7F2;
    --color-text-muted: #6B7280;
    --color-text-muted-light: #D1D5DB;

    --font-serif: 'Ovo', Georgia, serif;
    --font-sans: 'Ovo', Georgia, serif;
    --font-script: 'Ovo', Georgia, serif;
    --font-belleza: 'Belleza', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-menu: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.03);

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-pill: 50px;
}

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

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

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

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

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

button {
    font-family: inherit;
    transition: var(--transition-smooth);
}

/* --- Typography System --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 600;
}

.section-script-title {
    font-family: var(--font-script);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-tagline {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.75rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin-bottom: 3rem;
}

/* --- Interactive UI Effects & Ripple --- */
.btn,
.cta-button-gold,
.btn-submit-feedback,
.btn-submit-quote,
.carousel-arrow,
.navigation-toggle {
    position: relative;
    overflow: hidden;
    /* Mask click ripple */
    transition: var(--transition-smooth);
}

.btn:active,
.cta-button-gold:active,
.btn-submit-feedback:active,
.btn-submit-quote:active,
.carousel-arrow:active,
.navigation-toggle:active {
    transform: scale(0.96) !important;
    box-shadow: 0 0 25px rgba(255, 189, 89, 0.75) !important;
}

/* Expanding gold click ripple */
.btn-ripple-glow {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 189, 89, 0.8);
    /* Highly opaque bright gold */
    box-shadow: 0 0 20px rgba(255, 189, 89, 1),
        0 0 40px rgba(255, 189, 89, 0.8),
        0 0 70px rgba(255, 189, 89, 0.5);
    /* Massive radiant glow shadow */
    transform: scale(0);
    pointer-events: none;
    animation: buttonRippleGlow 0.55s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes buttonRippleGlow {
    to {
        transform: scale(4.5);
        /* Scale slightly larger for bigger spread */
        opacity: 0;
    }
}

/* Star rating sparkle feedback */
.interactive-star {
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.35), color 0.2s ease, text-shadow 0.2s ease;
    cursor: pointer;
}

.interactive-star:hover {
    transform: scale(1.25);
    color: #FFC107;
}

.interactive-star.selected {
    transform: scale(1.15);
    color: #FFC107;
    text-shadow: 0 0 12px rgba(255, 193, 7, 0.85);
}

/* Form input focus glow scaling */
.form-control:focus,
.form-select:focus,
.form-text-input:focus,
.form-textarea-field:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 189, 89, 0.2) !important;
}

/* Hardware accelerate 3D card tilt */
.testimonial-card,
.credential-card,
.why-us-card {
    will-change: transform, box-shadow;
    transition: transform 0.1s ease-out, box-shadow 0.15s ease-out;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #FFFFFF;
    color: var(--color-text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-cream);
}

/* --- Header & Hamburger Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    border-bottom: none;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
}

.menu-toggle {
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(34, 61, 60, 0.1);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    z-index: 1001;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.menu-toggle.open {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.hamburger-bar {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--bg-dark-brown);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Menu open animation for hamburger */
.menu-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    background-color: var(--color-text-light);
}

.menu-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    background-color: var(--color-text-light);
}

/* --- Navigation Overlay --- */
.navigation-overlay {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    /* Use GPU-accelerated transform for butter smoothness */
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-text-light);
    z-index: 999;
    padding: 120px 48px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    /* Apple-like cubic ease */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.navigation-overlay.active {
    transform: translateX(0);
    /* Slide overlay in */
}

.nav-logo-box {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.nav-logo-link {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo-link:hover {
    transform: scale(1.03);
}

.nav-logo {
    height: 55px;
    width: auto;
    display: block;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Staggered slide-in animations for links */
.nav-menu li {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.navigation-overlay.active .nav-menu li {
    opacity: 1;
    transform: translateX(0);
}

.navigation-overlay.active .nav-menu li:nth-child(1) {
    transition-delay: 0.15s;
}

.navigation-overlay.active .nav-menu li:nth-child(2) {
    transition-delay: 0.22s;
}

.navigation-overlay.active .nav-menu li:nth-child(3) {
    transition-delay: 0.29s;
}

.navigation-overlay.active .nav-menu li:nth-child(4) {
    transition-delay: 0.36s;
}

.navigation-overlay.active .nav-menu li:nth-child(5) {
    transition-delay: 0.43s;
}

.navigation-overlay.active .nav-menu li:nth-child(6) {
    transition-delay: 0.50s;
}

.nav-item {
    font-family: 'Poppins', sans-serif;
    font-size: 1.26rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    opacity: 0.8;
}

.nav-item:hover,
.nav-item.active {
    opacity: 1;
    color: var(--color-gold);
    transform: translateX(10px);
}

.nav-number {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    border: 1px solid rgba(255, 189, 89, 0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-overlay-footer {
    border-top: 1px solid rgba(250, 247, 242, 0.1);
    padding-top: 2rem;
}

.nav-overlay-footer p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.nav-contact-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--color-text-muted-light);
}

.nav-contact-info i {
    margin-right: 8px;
    color: var(--color-gold);
}

/* Page switches and transitions */
.page-view {
    display: none;
    opacity: 0;
    padding-top: 0;
    min-height: 100vh;
}

.page-view.active-view {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   PAGE 1 STYLES
   ========================================================================== */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('mainPhoto.jpg');
    background-size: cover;
    background-position: 65% center;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    text-align: center;
    position: relative;
}

.hero-title {
    color: #FFFFFF;
    font-size: 5rem;
    font-weight: 100;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    opacity: 0;
    animation: ultraSmoothReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-subtitle {
    color: #FFFFFF;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: ultraSmoothReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

#hero-quote-btn {
    opacity: 0;
    animation: ultraSmoothReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s ease,
        text-shadow 0.3s ease,
        background-color 0.3s ease;
}

#hero-quote-btn:hover {
    transform: translateY(-2px);
    background-color: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 189, 89, 0.85),
        0 0 30px rgba(255, 189, 89, 0.5);
    text-shadow: 0 0 4px rgba(255, 189, 89, 0.5);
}

/* Ultra Smooth Page Load Animations */
@keyframes ultraSmoothReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(4px);
    will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ==========================================================================
   SECTION 2A — Who We Are  (ref: 8.png, bg: collor1.png)
   ========================================================================== */
.sec2a {
    background: #cda97d;
    width: 100%;
    padding: 60px 5% 0 5%;
    box-sizing: border-box;
    position: relative;
}

.sec2a-container {
    max-width: 1450px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 70px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left: logo + office image */
.sec2a-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    container-type: inline-size;
}

.sec2a-logo-box {
    padding: 20px 0 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.sec2a-logo {
    width: 170px;
    height: auto;
    display: block;
}

.sec2a-office-box {
    width: 100%;
    aspect-ratio: 821.5 / 500;
    border-radius: 24.88cqw 24.88cqw 0 0;
    overflow: hidden;
    background-color: transparent;
    position: relative;
}

.sec2a-office-box.reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
}

.sec2a-office-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.1) translateY(-100%);
    opacity: 0;
    transform-origin: center center;
    will-change: transform, opacity;
}

.sec2a-office-box.revealed .sec2a-office-img {
    transform: scale(1.1) translateY(0);
    opacity: 1;
    transition: transform 3.0s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Right: Who We Are text */
.sec2a-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sec2a-title {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    transition: text-shadow 0.4s ease;
}

.sec2a-title:hover {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.65),
        0 0 25px rgba(255, 189, 89, 0.45);
}

.sec2a-body p {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    line-height: 1.55;
    color: rgba(74, 64, 45, 0.92);
    font-weight: 600;
    text-align: left;
    margin-bottom: 1rem;
    transition: text-shadow 0.4s ease;
}

/*.sec2a-body p:hover {
    text-shadow: 0 0 8px rgba(52, 36, 36, 0.55),
        0 0 15px rgba(255, 189, 89, 0.3);
}*/

.sec2a-body p strong {
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6px;
}

.sec2a-body p:last-child {
    margin-bottom: 0;
}

/* Typewriter Typing Blinking Cursor */
.typing-active::after {
    content: '|';
    display: inline-block;
    animation: blinkCursor 0.1s infinite alternate;
    color: var(--color-gold);
    margin-left: 3px;
    font-weight: bold;
}

@keyframes blinkCursor {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* ==========================================================================
   SECTION 2B — The Offering + OUR GOAL  (ref: 9.png, bg: collor2.png)
   ========================================================================== */
.sec2b {
    background: #cda97d;
    width: 100%;
    padding: 0 5% 100px 5%;
    box-sizing: border-box;
    position: relative;
}

.sec2b-container {
    max-width: 1450px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 70px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left: offering dark box with bulbs */
.sec2b-left {
    width: 100%;
    container-type: inline-size;
}

.sec2b-offering-box {
    width: 100%;
    aspect-ratio: 821.5 / 500;
    background-color: transparent;
    border-radius: 0 0 24.88cqw 24.88cqw;
    overflow: hidden;
    padding: 50px 80px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 80px;
    position: relative;
}

.sec2b-offering-box.reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
}

.sec2b-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bulbs.jpg') no-repeat center center / cover;
    z-index: 1;
    transform: scale(1.1);
    opacity: 1;
}

.sec2b-offering-title {
    font-family: 'Mistrully', cursive;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0 0 0 30px;
    text-align: left;
    position: relative;
    z-index: 2;
    transition: text-shadow 0.4s ease;
}

.sec2b-offering-title:hover {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.65),
        0 0 25px rgba(255, 189, 89, 0.45);
}

.sec2b-offering-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.sec2b-offering-list li {
    font-family: var(--font-sans);
    font-size: 1.7rem;
    font-weight: 600;
    color: rgba(96, 86, 65, 0.92);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.sec2b-offering-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #FFFFFF;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Right: OUR GOAL text */
.sec2b-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 35px;
}

.sec2b-goal-title {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: normal;
    transition: text-shadow 0.4s ease;
}

.sec2b-goal-title:hover {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.65),
        0 0 25px rgba(255, 189, 89, 0.45);
}

.sec2b-goal-body p {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    line-height: 1.55;
    color: rgba(74, 64, 45, 0.92);
    font-weight: 600;
    text-align: left;
    margin-bottom: 1rem;
    transition: text-shadow 0.4s ease;
}

/*.sec2b-goal-body p:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.55),
        0 0 15px rgba(255, 189, 89, 0.3);
}*/

.sec2b-goal-body p:last-child {
    margin-bottom: 0;
}

/*sme-section*/
.sme-section {
    background-color: #faffd7;
    padding: 30px 15px;
    text-align: center;
    justify-content: center;
    margin-bottom: 0px;
    line-height: 1.1;
}

.h2-sme-section-text {
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: none;
    background: radial-gradient(circle at 0% 0%, hsl(24, 27%, 29%) 0%, #807b7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: Georgia, serif;
}

.p-sme-section-text {
    font-size: 2.3rem;
    letter-spacing: normal;
    text-transform: none;
    background: radial-gradient(circle at 0% 0%, #5e4636 0%, #807b7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: var(--font-sans);
    font-size: 1.4rem;
}



/* Why Us Section */
.why-us-section {
    background-color: var(--bg-dark-brown);
    color: var(--color-text-light);
    padding: 100px 0;
}

.why-us-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-us-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.why-us-emblem-box {
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
}

.why-us-emblem-link {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-emblem-link:hover {
    transform: scale(1.05);
}

.why-us-emblem {
    width: 170px;
    height: auto;
    display: block;
    margin-bottom: 3rem;
    margin-top: 5rem;
}

.why-us-pretitle {
    font-family: 'Jonathan', cursive;
    font-size: 3.8rem;
    color: #f2f2f2;
    display: block;
    margin-bottom: 28px;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
}

.why-us-main-title {
    font-family: var(--font-sans);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #a5898d;
    display: block;
    margin: 0;
    line-height: 1.1;
}

.why-us-subtitle {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a5898d;
    display: block;
    margin-top: 1rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.why-us-grid.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-grid.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Vertical separator lines between columns - animate after text reveals */
.why-us-grid::before,
.why-us-grid::after {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    width: 1.5px;
    background-color: rgba(255, 189, 89, 0.3);
    pointer-events: none;
    transform: translateX(-50%) scaleY(0);
    transform-origin: center center;
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.why-us-grid.revealed::before,
.why-us-grid.revealed::after {
    transform: translateX(-50%) scaleY(1);
    opacity: 1;
}

.why-us-grid::before {
    left: 33.33%;
}

.why-us-grid::after {
    left: 66.66%;
}

.why-us-card {
    background-color: transparent;
    padding: 30px 45px;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.why-us-card:hover h3 {
    color: var(--color-gold);
}

.why-card-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 10px;
    display: block;
}

.why-us-card h3 {
    font-size: 2.1rem;
    margin-bottom: 15px;
    color: #a5898d;
    line-height: 1.2;
    height: 85px;
}

.why-us-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #a5898d;
    margin-top: 15px;
}

.why-us-cta-box {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}

#sec4-quote-btn {
    background-color: #f2f2f2;
    color: var(--color-text-dark);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s ease,
        text-shadow 0.3s ease,
        background-color 0.3s ease;
}

#sec4-quote-btn:hover {
    transform: translateY(-2px);
    background-color: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 189, 89, 0.85),
        0 0 30px rgba(255, 189, 89, 0.5);
    text-shadow: 0 0 4px rgba(255, 189, 89, 0.5);
}

/* ==========================================================================
   PAGE 2 STYLES
   ========================================================================== */

/* Services Section */
.services-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
}

.services-left {
    display: flex;
    flex-direction: column;
    gap: 60px;
    border-right: 2.5px solid #5e4636;
    padding-right: 60px;
}

.service-item {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.service-item:hover {
    transform: none;
    box-shadow: none;
}

.service-header {
    display: block;
    margin-bottom: 15px;
}

.service-icon-box {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
}

.service-name {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.1;
    color: #55351f;
    font-family: var(--font-belleza);
    text-transform: uppercase;
}

.service-description {
    font-size: 1.12rem;
    color: #5e4636;
    margin-bottom: 15px;
    line-height: 1.65;
    max-width: 480px;
}

.service-tags {
    display: block;
    margin-top: 15px;
}

.service-tag {
    font-size: 1.12rem;
    font-weight: 400;
    color: #5e4636;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    display: inline;
    font-family: var(--font-belleza);
}

.services-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 20px;
}

.our-work-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-family: var(--font-belleza);
    color: #5e4636;
    text-transform: uppercase;
}

.our-work-divider {
    width: 100%;
    height: 3px;
    background-color: #5e4636;
    margin-bottom: 40px;
}

.services-right .section-script-title {
    color: #55351f;
    font-family: var(--font-belleza);
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.services-subtitle {
    font-family: var(--font-belleza);
    font-size: 1.45rem;
    font-weight: 400;
    color: #55351f;
    margin-bottom: 20px;
    line-height: 1.35;
}

.services-intro-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: #5e4636;
    line-height: 1.6;
    max-width: 420px;
}

/* Quote Section */
.quote-section {
    background: #55351f;
    color: var(--color-text-light);
    padding: 100px 0;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.gold-text {
    color: var(--color-gold);
}

.white-text {
    color: #FFFFFF;
}

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

.checkmark-list {
    list-style: none;
    margin-bottom: 40px;
}

.checkmark-list li {
    font-size: 1.05rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.checkmark {
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.email-me-container {
    margin-top: 20px;
}

.email-me-link {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FFFFFF;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 6px;
}

.email-me-link:hover {
    color: var(--color-gold);
    border-bottom-color: #FFFFFF;
}

/* Interactive Accordion Form Styling */
.interactive-quote-form {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    color: var(--color-text-dark);
}

.form-accordion-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 20px 0;
}

.form-accordion-item:first-child {
    padding-top: 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.accordion-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: #374151;
}

.accordion-arrow {
    font-size: 0.8rem;
    color: #9CA3AF;
    transition: transform 0.3s ease;
}

.form-accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.form-accordion-item.active .accordion-title {
    color: var(--bg-dark-slate);
}

.accordion-content {
    display: none;
    padding-top: 20px;
    padding-bottom: 5px;
}

.form-accordion-item.active .accordion-content {
    display: block;
}

/* Radio Cards inside Q1 */
.radio-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.radio-card {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.radio-card:hover {
    background-color: rgba(246, 184, 94, 0.05);
    border-color: rgba(246, 184, 94, 0.3);
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.radio-card input[type="radio"]:checked~.radio-custom {
    border-color: var(--color-gold);
}

.radio-card input[type="radio"]:checked~.radio-custom::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-gold);
}

.radio-card input[type="radio"]:checked~.radio-label-text {
    font-weight: 600;
    color: var(--color-text-dark);
}

.radio-label-text {
    font-size: 0.95rem;
    color: #4B5563;
}

/* Form Select Elements */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    pointer-events: none;
}

.form-select {
    width: 100%;
    padding: 14px 20px;
    font-family: inherit;
    font-size: 0.95rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius-md);
    background-color: #FFFFFF;
    appearance: none;
    -webkit-appearance: none;
    color: #374151;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(255, 189, 89, 0.15);
}

/* Email & Submit Container */
.form-submit-container {
    margin-top: 30px;
}

.submit-email-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.form-text-input {
    width: 100%;
    padding: 14px 20px;
    font-family: inherit;
    font-size: 0.95rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius-md);
    color: #374151;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.form-text-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(255, 189, 89, 0.15);
}

.btn-submit-quote {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(90deg, #55351f 0%, #9b5447 100%);
    color: #FFFFFF;
    font-weight: 700;
    border-radius: var(--border-radius-md);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit-quote:hover {
    background: linear-gradient(90deg, #e76f51 0%, #ffbd59 100%);
    color: #FFFFFF;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(244, 162, 97, 0.55), 0 0 25px rgba(255, 189, 89, 0.45);
}

.btn-submit-quote:disabled {
    background: #D1D5DB;
    color: #9CA3AF;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

/* The Person Behind the Numbers Section */
.credentials-section {
    background-color: #c8aa86;
    padding: 100px 0;
}

.credentials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.credentials-title {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 25px;
    color: #28180b;
    font-family: var(--font-belleza);
}

.credentials-intro p {
    font-size: 1.15rem;
    color: #28180b;
    margin-bottom: 20px;
    line-height: 1.65;
    font-family: var(--font-belleza);
}

.credentials-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.credential-card {
    background-color: #9d8771;
    /* Solid #9d8771 background */
    border: 2px solid #9d8771;
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    color: #FFFFFF;
    /* White text for contrast */
    transition: var(--transition-smooth);
}

.credential-card:hover {
    background-color: #8e7862;
    /* Slightly darker shade for hover interaction */
    border-color: #8e7862;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(157, 135, 113, 0.3);
}

.card-icon {
    font-size: 1.4rem;
    margin-top: 2px;
    color: #FFFFFF;
    /* White icon for contrast */
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.card-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.font-caps {
    text-transform: uppercase;
}

.portrait-container {
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.portrait-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.portrait-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 35px 24px 20px;
    text-align: center;
    color: #FFFFFF;
    box-sizing: border-box;
    z-index: 2;
}

.portrait-name {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.portrait-role {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-gold);
    margin: 0;
    font-weight: 400;
}

/* ==========================================================================
   PAGE 3 STYLES
   ========================================================================== */

/* Testimonials / Success Stories */
.testimonials-section {
    background-color: var(--bg-cream);
    padding: 100px 0;
}

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

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

.testimonials-section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.testimonials-section-desc {
    text-align: center;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
}

.testimonial-carousel-viewport {
    max-width: 850px;
    /* Centered single card width on desktop */
    width: 100%;
    overflow: hidden;
    /* Hide overflow to enable slider */
    margin: 0 auto 30px auto;
}

.testimonial-cards-grid {
    display: flex;
    /* Always display inline for sliding */
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    width: 100%;
    margin-bottom: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    /* Take 100% of viewport width */
    width: 100%;
    background-color: var(--bg-card-light);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.stars-container {
    color: #FFC107;
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.card-quote-icon {
    font-size: 1.5rem;
    color: #F0E6D8;
}

.testimonial-comment {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #4B5563;
    margin-bottom: 30px;
    font-style: italic;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
    margin-top: auto;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-green {
    background-color: #2E5A44;
}

.avatar-slate {
    background-color: #475569;
}

.avatar-blue {
    background-color: #1E3A8A;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--color-text-dark);
}

.client-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.outcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    width: fit-content;
}

.outcome-green {
    background-color: rgba(46, 90, 68, 0.1);
    color: #2E5A44;
}

.outcome-yellow {
    background-color: rgba(246, 184, 94, 0.15);
    color: #C57D1D;
}

.outcome-lightgreen {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
}

/* Feedback Form Card Container */
.feedback-form-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.feedback-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feedback-card-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.feedback-card-desc {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    font-family: inherit;
    font-size: 0.92rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(255, 189, 89, 0.1);
}

.rating-stars-interactive {
    display: flex;
    gap: 8px;
    font-size: 1.5rem;
    color: #D1D5DB;
}

.interactive-star {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.interactive-star.hovered,
.interactive-star.selected {
    color: #FFC107;
}

.form-textarea-field {
    width: 100%;
    padding: 12px 18px;
    font-family: inherit;
    font-size: 0.92rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius-md);
    resize: vertical;
    transition: var(--transition-smooth);
}

.form-textarea-field:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(255, 189, 89, 0.1);
}

.btn-submit-feedback {
    background: linear-gradient(90deg, #55351f 0%, #9b5447 100%);
    color: #FFFFFF;
    border: none;
    padding: 15px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    margin-top: 10px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit-feedback:hover {
    background: linear-gradient(90deg, #e76f51 0%, #ffbd59 100%);
    color: #FFFFFF;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(244, 162, 97, 0.55), 0 0 25px rgba(255, 189, 89, 0.45);
}

/* Carousel dots navigation styling */
.carousel-navigation {
    display: flex;
    /* Always visible to scroll/switch comments */
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 50px;
}

.carousel-arrow {
    background: none;
    border: none;
    font-size: 0.9rem;
    color: #9CA3AF;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.carousel-arrow:hover {
    color: var(--color-text-dark);
    background-color: #EBE6DC;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.write-own-story-link-box {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.write-story-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold-hover);
    text-decoration: underline;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.site-footer {
    background-color: var(--bg-dark-brown);
    color: var(--color-text-light);
    border-top: 1px solid rgba(250, 247, 242, 0.05);
}

.footer-cta-banner {
    background-color: #2e2016;
    /* Original warm dark brown */
    padding: 30px 0;
    /* Reduced top/bottom padding */
    border-bottom: 1px solid rgba(250, 247, 242, 0.05);
}

.footer-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-cta-left h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.footer-cta-left p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(250, 247, 242, 0.7);
}

.cta-button-gold {
    background-color: var(--color-gold);
    /* Gold button */
    color: #251A12;
    padding: 14px 28px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button-gold:hover {
    background-color: #e5b980;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 189, 89, 0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-company-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.footer-description {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: rgba(250, 247, 242, 0.6);
    line-height: 1.65;
    max-width: 480px;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-col-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    font-size: 0.98rem;
    color: rgba(250, 247, 242, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-nav-link:hover {
    color: var(--color-gold);
    padding-left: 0;
}

.footer-bottom-bar {
    background-color: #1a120c;
    padding: 25px 0;
    border-top: 1px solid rgba(250, 247, 242, 0.05);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #FFFFFF;
    font-family: var(--font-serif);
}

.footer-motto {
    font-size: 0.95rem;
    color: #FFFFFF;
    font-family: var(--font-serif);
}


/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLING)
   ========================================================================== */

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

    .sec2a-container,
    .sec2b-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sec2b-offering-box {
        grid-template-columns: 1fr;
    }

    .sec2b-bulbs-side {
        display: none;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-left {
        border-right: none;
        padding-right: 0;
    }

    .services-right {
        order: -1;
        padding-left: 0;
    }

    .quote-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .credentials-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .sec2a-office-box {
        aspect-ratio: auto;
        min-height: unset;
        border-radius: 24.88cqw 24.88cqw 0 0;
    }

    .sec2b-offering-box {
        aspect-ratio: auto;
        min-height: unset;
        border-radius: 0 0 24.88cqw 24.88cqw;
        padding: 40px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
    }

    .sec2b-offering-title {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .sec2b-offering-list {
        width: 100%;
        align-items: center;
    }

    .sec2b-offering-list li {
        justify-content: center;
    }

    .sec2a {
        padding-bottom: 45px;
    }

    .sec2a-right {
        margin-top: 65px;
    }

    .sec2b {
        padding-top: 25px;
    }

    .sec2b-right {
        margin-top: 65px;
    }


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

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

    .why-us-main-title {
        font-size: 1.8rem;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-grid::before,
    .why-us-grid::after {
        display: none;
    }

    .why-us-card {
        padding: 20px 10px;
    }

    .why-us-card:not(:last-child) {
        border-right: none;
        border-bottom: 1.5px solid rgba(255, 189, 89, 0.25);
        padding-bottom: 40px;
    }

    .credentials-cards-grid {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .navigation-overlay {
        padding: 100px 32px 32px 32px;
    }

    .nav-item {
        font-size: 1.5rem;
    }

    .footer-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

    /* Center Section 2 and Section 3 text on mobile */
    .sec2a-title,
    .sec2a-body p,
    .sec2a-body p strong,
    .sec2b-goal-title,
    .sec2b-goal-body p {
        text-align: center;
    }
}

/* ==========================================================================
   DESKTOP ONLY: FULL SCREEN SECTIONS (100VH)
   ========================================================================== */
@media (min-width: 1025px) {
    .hero-section {
        min-height: 100vh;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 6%;
        max-width: 650px;
        margin: 0;
    }

    .hero-title,
    .hero-subtitle {
        width: 100%;
        text-align: center;
    }

    #hero-quote-btn {
        align-self: center;
    }

    .sec2a {
        min-height: 100vh;
        display: flex;
        align-items: flex-end;
    }

    .sec2a-right {
        padding-top: 240px;
        max-width: 400px;
    }

    .sec2b {
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
    }

    .sec2b-right {
        max-width: 400px;
    }

    .why-us-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 60px 0;
    }

    .why-us-container {
        width: 100%;
    }

    .services-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 60px 0;
    }

    .services-container {
        width: 100%;
    }

    .quote-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 60px 0;
    }

    .quote-container {
        width: 100%;
    }

    .credentials-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 60px 0;
    }

    .credentials-container {
        width: 100%;
    }

    .testimonials-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 80px 0;
    }

    .testimonials-container {
        width: 100%;
    }

    .team-section {
        min-height: 100vh !important;
    }
}

/* ==========================================================================
   Pulse Animation Effect for Circle Dot inside Learn More Buttons
   ========================================================================== */
@keyframes circlePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        transform: scale(1.3);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes circlePulseDark {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(85, 53, 31, 0.8);
    }

    70% {
        transform: scale(1.3);
        box-shadow: 0 0 0 10px rgba(85, 53, 31, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(85, 53, 31, 0);
    }
}

.btn-learn-more {
    animation: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 32px 12px 36px !important;
    background: transparent !important;
    border: 4px solid #FFFFFF !important;
    color: #FFFFFF !important;
    font-family: 'Helvetica World', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2.5px !important;
    border-radius: 40px !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    pointer-events: auto !important;
}

.btn-pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    animation: circlePulse 1.8s infinite ease-in-out;
    transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
    transform: translateY(-2px) !important;
    background: #FFFFFF !important;
    color: #55351f !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4) !important;
}

.btn-learn-more:hover .btn-pulse-dot {
    background-color: #55351f;
    animation: circlePulseDark 1.8s infinite ease-in-out;
}

/* ==========================================================================
   PAGE 2 EXTRACTED CLEAN STYLES
   ========================================================================== */

/* Main Page 2 Container */
#page-2 {
    padding: 0;
    background: #ffffff;
    box-sizing: border-box;
}

/* Page 2 Section 1: Our Work Header & Video Grid */
#page-2-sec-1 {
    width: 100%;
    aspect-ratio: 1366 / 1492;
    max-height: 1492px;
    background-image: url('bkpage2sc1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
}

.p2-sec1-pinned-container {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1366px;
    aspect-ratio: 1117 / 690;
    pointer-events: none;
}

.p2-top-header-box {
    position: absolute;
    left: 8%;
    top: 0;
    transform: translateX(-50%);
    width: 16.5%;
    pointer-events: auto;
    z-index: 15;
}

.p2-top-header-inner {
    position: relative;
    width: 100%;
}

.p2-top-header-img {
    width: 100%;
    height: auto;
    display: block;
}

.p2-top-header-text {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-family: 'Helvetica World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    pointer-events: none;
}

.p2-work-gradient-text {
    font-size: 2.3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: radial-gradient(circle at 0% 0%, #5e4636 0%, #807b7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.p2-sec1-acct-wrapper {
    position: absolute;
    left: 135px;
    top: 6px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.p2-sec1-acct-content {
    position: absolute;
    left: 26%;
    top: 64%;
    transform: translate(-50%, -50%);
    width: 48%;
    text-align: left;
    pointer-events: auto;
    z-index: 10;
}

.p2-sec1-title-heading {
    font-family: 'Helvetica World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.p2-heading-lg-gradient {
    font-size: 4.5rem;
    font-weight: 550;
    display: inline-block;
    margin-bottom: 4px;
    background: linear-gradient(90deg, #55351f 0%, #9b5447 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.p2-heading-amp-gradient {
    background: radial-gradient(circle at 0% 0%, #5e4636 0%, #807b7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-size: 3.6rem;
    font-weight: 550;
}

.p2-heading-md-gradient {
    font-size: 3.6rem;
    font-weight: 550;
    display: inline-block;
    background: linear-gradient(90deg, #55351f 0%, #9b5447 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.p2-learn-more-btn-box {
    margin-top: 28px;
}

.p2-learn-more-btn-box-right {
    margin-top: 28px;
    text-align: right;
}

.p2-sec1-taxes-content {
    position: absolute;
    right: 18.53%;
    top: 135%;
    transform: translateY(-50%);
    width: 36%;
    text-align: right;
    pointer-events: auto;
    z-index: 10;
}

.p2-heading-right {
    text-align: right;
}

.p2-grid-container {
    position: absolute;
    left: 135px;
    top: 6px;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.p2-grid-vdio1 {
    position: absolute;
    left: 51.92%;
    top: 48.55%;
    width: 19.7%;
    aspect-ratio: 1;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.p2-grid-medi1 {
    position: absolute;
    left: 51.92%;
    top: 80.44%;
    width: 19.7%;
    height: auto;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.p2-grid-medi2 {
    position: absolute;
    left: 71.62%;
    top: 48.55%;
    width: 19.7%;
    height: auto;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.p2-grid-medi3 {
    position: absolute;
    left: 71.62%;
    top: 80.44%;
    width: 19.7%;
    height: auto;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.p2-grid-vdio2 {
    position: absolute;
    left: 32.22%;
    top: 112.33%;
    width: 19.7%;
    aspect-ratio: 1;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.p2-grid-medi6 {
    position: absolute;
    left: 12.52%;
    top: 112.33%;
    width: 19.7%;
    height: auto;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.p2-grid-medi5 {
    position: absolute;
    left: 32.22%;
    top: 144.22%;
    width: 19.7%;
    height: auto;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.p2-grid-medi7 {
    position: absolute;
    left: 12.52%;
    top: 144.22%;
    width: 19.7%;
    height: auto;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.p2-grid-medi8 {
    position: absolute;
    left: 32.22%;
    top: 176.11%;
    width: 19.7%;
    height: auto;
    transform: translate(-50%, -50%) rotate(90deg);
    pointer-events: auto;
}

/* Page 2 Section 2: Interactive Quote Form */
#page-2-sec-2 {
    width: 100%;
    min-height: 1150px;
    /*background-color: #55351f;*/
    background-color: rgb(49, 46, 46);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    padding: 60px 0 160px 0;

    /*width: 100%;
    background-image: url('bkpage2sc2.avif');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;*/
}

.p2-sec2-bridge-container {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1366px;
    pointer-events: none;
    height: 100%;
}

.p2-sec2-medi8-wrap {
    position: absolute;
    left: 135px;
    top: 0;
    width: 100%;
    height: 100%;
}

.p2-sec2-medi8-img {
    position: absolute;
    left: 32.22%;
    top: 0;
    width: 19.7%;
    height: auto;
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0.2;
    pointer-events: auto;
}

.p2-sec2-medi9-wrap {
    position: absolute;
    left: 30px;
    top: 0;
    width: 100%;
    height: 100%;
}

.p2-sec2-medi9-img {
    position: absolute;
    left: 71.62%;
    top: 100%;
    width: 21.67%;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    pointer-events: auto;
}

#quote-form-section {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    padding: 140px 60px 140px 80px;
}

.quote-section-left {
    flex: 1;
    max-width: 520px;
    color: #FAF7F2;
    text-align: left;
    padding-top: 20px;
}

.p2-quote-title-group {
    margin-bottom: 24px;
}

.p2-quote-title-h2 {
    font-family: var(--font-serif, 'Ovo', serif);
    font-size: 2.8rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0 0 6px 0;
    text-transform: uppercase;
}

.p2-quote-title-h2-no-margin {
    font-family: var(--font-serif, 'Ovo', serif);
    font-size: 2.8rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.p2-quote-desc {
    font-family: var(--font-serif, 'Ovo', serif);
    font-size: 1.4rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 36px 0;
    max-width: 500px;
}

.p2-quote-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--font-serif, 'Ovo', serif);
    font-size: 1.35rem;
    color: #FAF7F2;
}

.p2-quote-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.p2-quote-check {
    font-weight: bold;
    font-size: 1.6rem;
    background: linear-gradient(90deg, #d87664 0%, #9b5447 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.p2-quote-form-col {
    width: 560px;
    max-width: 100%;
    flex-shrink: 0;
}

/* Page 2 Section 3: About Me / Journey */
#page-2-sec-3 {
    width: 100%;
    min-height: 840px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
}

.p2-sec3-bg-layer {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('bkpg2sc3.jpg');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
}

.p2-sec3-bridge-container {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1366px;
    pointer-events: none;
    height: 100%;
    z-index: 2;
    display: block;
}

.p2-sec3-medi9-wrap {
    position: absolute;
    left: 30px;
    top: 0;
    width: 100%;
    height: 100%;
}

.p2-sec3-medi9-img {
    position: absolute;
    left: 71.62%;
    top: 0;
    width: 21.67%;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.43;
    pointer-events: auto;
}

.p2-sec3-main-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 3;
}

.p2-sec3-left-spacer {
    width: 5%;
    min-width: 50px;
    flex-shrink: 0;
    background-color: transparent;
}

.p2-sec3-dark-col {
    width: 320px;
    min-width: 300px;
    flex-shrink: 0;
    margin-right: 50px;
    background-color: #231509;
    color: #FAF7F2;
    padding: 60px 30px 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.p2-sec3-logo-wrap {
    width: 220px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
}

.p2-sec3-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.p2-sec3-photo-wrap {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 35px;
    border: none;
}

.p2-sec3-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p2-sec3-name-group {
    margin-bottom: 30px;
}

.p2-sec3-name-title {
    font-family: 'Belleza', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.p2-sec3-nickname {
    font-size: 0.75em;
    font-weight: 400;
    opacity: 0.9;
}

.p2-sec3-mail-box {
    display: inline-block;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.p2-sec3-mail-box:hover {
    transform: translateY(-3px) scale(1.05);
    opacity: 0.85;
}

.p2-sec3-name-subtitle {
    font-family: 'Belleza', sans-serif;
    font-size: 1.05rem;
    color: rgba(250, 247, 242, 0.85);
    margin: 0;
}

.p2-sec3-mail-box {
    margin-top: 35px;
    margin-bottom: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p2-sec3-mail-icon {
    width: 48px;
    height: 36px;
    color: #FFFFFF;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.p2-sec3-mail-box:hover .p2-sec3-mail-icon {
    transform: scale(1.1);
    color: var(--color-gold);
}

.p2-sec3-right-col {
    flex: 1;
    padding: 60px 40px 60px 10px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    color: #2b2019;
    box-sizing: border-box;
    background: transparent;
    font-family: 'Belleza', sans-serif;
    align-self: center;
}

.p2-sec3-journey-col {
    display: flex;
    flex-direction: column;
}

.p2-sec3-header-group {
    margin-bottom: 25px;
}

.p2-sec3-subhead {
    font-family: 'Belleza', sans-serif;
    font-size: 1.2rem;
    color: #3d3027;
    display: block;
    margin-bottom: 6px;
}

.p2-sec3-mainhead {
    font-family: 'Belleza', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #2b2019;
    margin: 0;
    line-height: 1.1;
}

.p2-sec3-body-text {
    font-family: 'Belleza', sans-serif;
    font-size: 1.28rem;
    line-height: 1.7;
    color: #3d3027;
    text-align: left;
}

.p2-sec3-body-p1 {
    margin: 0 0 25px 0;
}

.p2-sec3-body-p2 {
    margin: 0;
}

.p2-sec3-creds-edu-col {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 38px;
}

.p2-sec3-purple-shape-wrap {
    width: 140px;
    margin-bottom: 15px;
    opacity: 0.75;
}

.p2-sec3-purple-shape-img {
    width: 100%;
    height: auto;
    display: block;
}

.p2-sec3-creds-box {
    margin-bottom: 25px;
}

.p2-sec3-section-title {
    font-family: 'Belleza', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #2b2019;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.p2-sec3-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: 'Belleza', sans-serif;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #3d3027;
}

.p2-sec3-item-row {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 18px;
    align-items: flex-start;
}

.p2-sec3-year-badge {
    font-size: 1.15rem;
    font-weight: 500;
    color: #2b2019;
}

.p2-dashed-divider {
    width: 100%;
    border-bottom: 1.5px dashed #FFFFFF;
    margin: 30px 0;
}

.p2-sec3-edu-box {
    margin-bottom: 0;
}

/*page 2 my journey @media */

/* Base Mobile Styles (Stacked layout) */
.responsive-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Stacks everything into 1 full-width column */
    gap: 30px;
    /* Spacing between the blocks */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-column {
    width: 100%;
}

.center-column {
    text-align: center;
    /* Centers the text and photo in the middle column */
}

.profile-pic-wrapper img {
    width: 200px;
    /* Adjust size as needed */
    height: 200px;
    object-fit: cover;
    border: 2px solid #5e4636;
    /* Optional framing border */
}

/* Desktop Styles (Triggers on tablet landscape / desktops) */
@media (min-width: 768px) {
    .responsive-grid {
        /* Splits into 3 equal columns side-by-side */
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
        /* Keeps columns perfectly aligned at the top */
    }
}

/* Page 2 Section 4: Contact & Social Strip */
#page-2-sec-4 {
    width: 100%;
    min-height: 380px;
    background-color: #28180b;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    padding: 90px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p2-sec4-dashed-line-top {
    width: 100%;
    height: 3.5px;
    background: radial-gradient(circle at 50% 50%, #55351f, #bc887f);
    -webkit-mask-image: repeating-linear-gradient(to right, #000 0, #000 26px, transparent 26px, transparent 31px);
    mask-image: repeating-linear-gradient(to right, #000 0, #000 26px, transparent 26px, transparent 31px);
    position: absolute;
    top: 48px;
    left: 0;
}

.p2-sec4-dashed-line-bottom {
    width: 100%;
    height: 3.5px;
    background: radial-gradient(circle at 50% 50%, #55351f, #bc887f);
    -webkit-mask-image: repeating-linear-gradient(to right, #000 0, #000 26px, transparent 26px, transparent 31px);
    mask-image: repeating-linear-gradient(to right, #000 0, #000 26px, transparent 26px, transparent 31px);
    position: absolute;
    bottom: 48px;
    left: 0;
}

.p2-sec4-container {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 35px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 40px;
    box-sizing: border-box;
}

.p2-sec4-left-group {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 0 0 auto;
    margin-right: 100px;
}

.p2-sec4-logo-wrap {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.p2-sec4-logo-img {
    width: 100%;
    height: auto;
    max-height: 110px;
    object-fit: contain;
}

.p2-sec4-info-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.p2-sec4-name-wrap {
    margin-bottom: 14px;
    text-align: center;
}

.p2-radial-text-name {
    font-family: var(--font-serif, 'Ovo', serif);
    font-size: 2.2rem;
    font-weight: 700;
    background: radial-gradient(circle at 50% 50%, #55351f, #bc887f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.p2-radial-text-subhead {
    font-family: 'Helvetica World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    background: radial-gradient(circle at 50% 50%, #55351f, #bc887f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 4px 0 2px 0;
}

.p2-radial-text-contact {
    font-family: 'Helvetica World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    background: radial-gradient(circle at 50% 50%, #55351f, #bc887f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.5;
    margin-bottom: 12px;
}

.p2-radial-text-email {
    font-family: 'Helvetica World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    background: radial-gradient(circle at 50% 50%, #55351f, #bc887f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.p2-sec4-vertical-divider-wrap {
    position: relative;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    margin-left: 60px;
    flex: 0 0 auto;
}

.p2-sec4-vertical-dashed-line {
    position: absolute;
    top: -65px;
    bottom: -65px;
    width: 2px;
    background: radial-gradient(circle at 50% 50%, #55351f, #bc887f);
    -webkit-mask-image: repeating-linear-gradient(to bottom, #000 0, #000 6px, transparent 6px, transparent 12px);
    mask-image: repeating-linear-gradient(to bottom, #000 0, #000 6px, transparent 6px, transparent 12px);
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}

.p2-sec4-social-box {
    position: relative;
    z-index: 2;
    background-color: #28180b;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.p2-sec4-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.p2-sec4-social-link:hover {
    transform: scale(1.1);
}

.p2-sec4-social-icon {
    width: 32px;
    height: 32px;
}

.p2-sec4-cta-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
    transform: translateX(25px);
}

.sec4-quote-cta-btn {
    display: inline-block;
    padding: 14px 38px;
    background: linear-gradient(#28180b, #28180b) padding-box, radial-gradient(circle at 50% 50%, #55351f, #bc887f) border-box;
    border: 2px solid transparent;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sec4-quote-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 136, 127, 0.25);
}

.sec4-quote-cta-text {
    background: radial-gradient(circle at 50% 50%, #55351f, #bc887f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: var(--font-serif, 'Ovo', serif);
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* ==========================================================================
   PAGE 4 STYLES
   ========================================================================== */
.team-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--bg-cream);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.team-tagline {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.team-title {
    font-size: 3.5rem;
    color: var(--color-text-dark);
    font-family: var(--font-serif);
    margin-bottom: 20px;
}

.team-desc {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    font-family: var(--font-serif);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   SERVICE DETAILS MODAL POPUP
   ========================================================================== */
.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 9, 4, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.service-modal-card {
    background-color: #251A12;
    background-image: linear-gradient(145deg, #2c1e15 0%, #1c130d 100%);
    border: 2px solid rgba(200, 170, 134, 0.45);
    border-radius: 28px;
    width: 100%;
    max-width: 620px;
    padding: 44px 40px 36px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 189, 89, 0.15);
    position: relative;
    color: #FAF7F2;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-modal-overlay.active .service-modal-card {
    transform: scale(1) translateY(0);
}

.service-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.service-modal-close:hover {
    background: #ffbd59;
    color: #251A12;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 189, 89, 0.6);
}

.service-modal-header {
    margin-bottom: 20px;
}

.service-modal-tagline {
    font-family: var(--font-sans, 'Poppins', sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gold, #ffbd59);
    display: block;
    margin-bottom: 8px;
}

.service-modal-title {
    font-family: var(--font-serif, 'Ovo', serif);
    font-size: 2.3rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.25;
    margin: 0;
}

.service-modal-description {
    font-family: var(--font-sans, 'Ovo', serif);
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(250, 247, 242, 0.92);
    margin-bottom: 28px;
}

.service-modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(200, 170, 134, 0.12);
    border: 1.5px solid rgba(200, 170, 134, 0.35);
    color: #c8aa86;
    font-family: 'Helvetica World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.feature-chip:hover {
    background: rgba(255, 189, 89, 0.22);
    border-color: #ffbd59;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 189, 89, 0.25);
}

.feature-chip i {
    color: #ffbd59;
    font-size: 1.05rem;
}

.service-modal-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.modal-cta-btn {
    background-color: var(--color-gold, #ffbd59) !important;
    color: #1F2229 !important;
    font-weight: 700 !important;
    padding: 14px 32px !important;
}

.modal-cta-btn:hover {
    background-color: #FFFFFF !important;
    color: #1F2229 !important;
    box-shadow: 0 0 20px rgba(255, 189, 89, 0.8) !important;
}

/* ==========================================================================
   PAGE 2 MOBILE RESPONSIVE WRAPPING STYLES (Max-Width: 768px)
   Standard responsive mobile behavior: text & elements wrap down vertically
   ========================================================================== */
@media (max-width: 768px) {

    /* --- Page 2 Container --- */
    #page-2 {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    #page-2-sec-1 {
        aspect-ratio: auto !important;
        max-height: none !important;
        min-height: 520px !important;
        padding: 0 20px 60px 20px !important;
        background-color: #231509;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        position: relative !important;
    }

    .p2-sec1-pinned-container {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 35px !important;
    }

    .p2-top-header-box {
        position: relative !important;
        left: auto !important;
        top: 0 !important;
        transform: none !important;
        width: 150px !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        margin-left: 10px !important;
        align-self: flex-start !important;
        z-index: 15 !important;
    }

    .p2-top-header-text {
        top: 35% !important;
    }

    .p2-work-gradient-text {
        font-size: 1.05rem !important;
        letter-spacing: 2px !important;
    }

    .p2-sec1-acct-wrapper {
        position: relative !important;
        z-index: 10 !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 45px !important;
        align-items: center !important;
        margin-top: -20px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        pointer-events: auto !important;
    }

    .p2-sec1-acct-content {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        text-align: center !important;
        z-index: 10 !important;
    }

    .p2-sec1-taxes-content {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        text-align: center !important;
        z-index: 10 !important;
    }

    .p2-sec1-title-heading,
    .p2-heading-right {
        text-align: center !important;
    }

    .p2-heading-lg-gradient {
        font-size: 2.3rem !important;
    }

    .p2-heading-amp-gradient,
    .p2-heading-md-gradient {
        font-size: 1.9rem !important;
    }

    .p2-learn-more-btn-box,
    .p2-learn-more-btn-box-right {
        margin-top: 16px !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
    }

    .btn-learn-more {
        font-size: 1.05rem !important;
        padding: 9px 26px 9px 28px !important;
    }

    /* Mobile Scaled Unified Media Grid (100% Unbroken Desktop Ratio) */
    .p2-grid-container {
        position: absolute !important;
        left: auto !important;
        right: -60px !important;
        top: auto !important;
        bottom: 164px !important;
        width: 700px !important;
        height: auto !important;
        aspect-ratio: 1117 / 690 !important;
        transform: scale(0.68) !important;
        transform-origin: bottom right !important;
        opacity: 0.12 !important;
        z-index: 1 !important;
        pointer-events: none !important;
        display: block !important;
        margin: 0 !important;
    }

    /* --- Section 2: Get a Free Quote --- */
    #page-2-sec-2 {
        min-height: auto !important;
        padding: 60px 16px 80px 16px !important;
    }

    .p2-sec2-bridge-container {
        display: none !important;
    }

    #quote-form-section {
        flex-direction: column !important;
        gap: 40px !important;
        padding: 0 !important;
        align-items: center !important;
    }

    .quote-section-left {
        max-width: 100% !important;
        text-align: center !important;
        padding-top: 0 !important;
    }

    .p2-quote-title-h2,
    .p2-quote-title-h2-no-margin {
        font-size: 2rem !important;
    }

    .p2-quote-desc {
        font-size: 1.15rem !important;
        margin-bottom: 24px !important;
    }

    .p2-quote-list {
        font-size: 1.05rem !important;
        align-items: flex-start !important;
        width: fit-content !important;
        margin: 0 auto !important;
        gap: 8px !important;
    }

    .p2-quote-list-item {
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100% !important;
    }

    .p2-quote-form-col {
        width: 100% !important;
    }

    .interactive-quote-form {
        padding: 24px 18px !important;
        border-radius: var(--border-radius-lg, 16px) !important;
    }

    .accordion-title {
        font-size: 0.9rem !important;
    }

    /* --- Section 3: About Me --- */
    #page-2-sec-3 {
        min-height: auto !important;
        padding: 0 16px 60px 16px !important;
        display: block !important;
    }

    .p2-sec3-bridge-container,
    .p2-sec3-left-spacer {
        display: none !important;
    }

    .p2-sec3-main-container {
        flex-direction: column !important;
        padding: 0 !important;
        gap: 40px !important;
        width: 100% !important;
    }

    .p2-sec3-dark-col {
        width: calc(100% + 32px) !important;
        min-width: 0 !important;
        margin-top: 0 !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
        padding: 50px 20px 50px 20px !important;
        border-radius: 0 !important;
        background-color: #231509 !important;
        box-sizing: border-box !important;
    }

    .p2-sec3-photo-wrap {
        width: 160px !important;
        height: 160px !important;
        margin-bottom: 24px !important;
    }

    .p2-sec3-name-title {
        font-size: 1.35rem !important;
    }

    .p2-sec3-name-subtitle {
        font-size: 0.95rem !important;
    }

    .p2-sec3-right-col {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 20px !important;
        gap: 35px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .p2-sec3-mainhead {
        font-size: 2.2rem !important;
        text-align: center !important;
    }

    .p2-sec3-subhead {
        text-align: center !important;
    }

    .p2-sec3-body-text {
        font-size: 1.1rem !important;
        text-align: center !important;
    }

    .p2-sec3-section-title {
        font-size: 1.8rem !important;
        text-align: center !important;
    }

    .p2-sec3-items-list {
        font-size: 1rem !important;
    }

    .p2-sec3-item-row {
        grid-template-columns: 55px 1fr !important;
        gap: 12px !important;
    }

    /* --- Section 4: Contact & Social Footer --- */
    #page-2-sec-4 {
        min-height: auto !important;
        padding: 60px 16px !important;
    }

    .p2-sec4-container {
        flex-direction: column !important;
        padding: 20px 10px !important;
        gap: 35px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .p2-sec4-left-group {
        flex-direction: column !important;
        margin-right: 0 !important;
        gap: 25px !important;
        align-items: center !important;
    }

    .p2-radial-text-name {
        font-size: 1.7rem !important;
    }

    .p2-radial-text-subhead {
        font-size: 0.65rem !important;
    }

    .p2-radial-text-contact {
        font-size: 0.9rem !important;
    }

    .p2-radial-text-email {
        font-size: 0.75rem !important;
        word-break: break-all;
    }

    .p2-sec4-vertical-divider-wrap {
        margin-left: 0 !important;
        padding: 10px 0 !important;
        width: 100% !important;
    }

    .p2-sec4-vertical-dashed-line {
        display: none !important;
    }

    .p2-sec4-social-box {
        flex-direction: row !important;
        gap: 25px !important;
        padding: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
    }

    .p2-sec4-social-link {
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .p2-sec4-cta-wrap {
        margin-left: 0 !important;
        transform: none !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .sec4-quote-cta-btn {
        padding: 12px 28px !important;
    }

    .sec4-quote-cta-text {
        font-size: 0.95rem !important;
    }
}

/* ==========================================================================
   Form Notification & Loading States
   ========================================================================== */
.form-notif-box {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInSlideDown 0.3s ease-out forwards;
}

@keyframes fadeInSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-notif-box.notif-success {
    background-color: #E6F4EA;
    color: #137333;
    border: 1px solid #CEEAD6;
}

.form-notif-box.notif-error {
    background-color: #FCE8E6;
    color: #C5221F;
    border: 1px solid #FAD2CF;
}

.form-notif-box.notif-warning {
    background-color: #FEF7E0;
    color: #B06000;
    border: 1px solid #FEEFC3;
}

.btn-submit-quote.loading {
    opacity: 0.75;
    cursor: not-allowed !important;
    pointer-events: none;
}