/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Colors */
    --bg-color: #ffffff;
    --bg-darker: #f5f5f5;
    --text-color: #333333;
    --text-muted: #666666;
    --primary-gold: #73c93e;
    /* Green Logo Color */
    --primary-gold-hover: #5dae2d;
    --accent-blue: #f0f0f0;
    --white: #ffffff;
    --nav-text: #000000;
    --about-bg: #ffffff;


    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

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

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    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(--text-color);
    /* Updated to use variable */
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

/* =========================================
   2. UTILITIES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-gold {
    color: var(--primary-gold);
    font-weight: 600;
}

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

.mt-5 {
    margin-top: 3rem;
}

.w-100 {
    width: 100%;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-gold);
    color: var(--bg-darker);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-gold);
    border-radius: 2px;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--white);
    border-radius: 2px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: #000000;
}

/* Headings */
.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    /* Visual silence - grey */
    margin-bottom: 1rem;
    display: block;
}

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

.separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 2rem 0;
}

/* =========================================
   3. PRELOADER
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
}

.loader-line {
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    animation: load 1.5s ease forwards;
}

@keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 150px;
    }
}

/* =========================================
   4. HEADER & NAV
   ========================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Logo SVG Colors - Transparent Header (Dark BG) */
.logo-svg {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

/* Logo SVG Colors */
.logo-icon {
    fill: var(--primary-gold);
}

/* Default Logo Colors (Dark Text for White Backgrounds - About, Portfolio etc) */
.logo-rect {
    fill: var(--text-color);
}

.text-go {
    fill: var(--text-color);
}

.text-stand {
    fill: var(--primary-gold);
}

.text-design {
    fill: var(--text-muted);
}

/* Home Page specific (Dark Hero Background) - Invert to White */
.home-page #navbar:not(.scrolled) .logo-rect,
.home-page #navbar:not(.scrolled) .text-go {
    fill: var(--white);
}

.home-page #navbar:not(.scrolled) .text-stand {
    fill: var(--white);
}

.home-page #navbar:not(.scrolled) .text-design {
    fill: var(--white);
    opacity: 0.8;
}

/* Logo SVG Colors - Sticky Header (Light BG) */
#navbar.scrolled .logo-rect {
    fill: var(--text-color);
}

#navbar.scrolled .text-go {
    fill: var(--text-color);
}

#navbar.scrolled .text-stand {
    fill: var(--primary-gold);
}

#navbar.scrolled .text-design {
    fill: var(--text-muted);
}

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

.logo {
    display: block;
    line-height: 0;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nav-text);
    /* Default black for white pages */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

/* Home page transparent header overrides */
.home-page #navbar:not(.scrolled) .desktop-nav a {
    color: var(--white);
}

/* Scrolled header overrides */
#navbar.scrolled .desktop-nav a {
    color: var(--nav-text);
}

.desktop-nav a:not(.btn-primary):hover,
.desktop-nav a.active {
    opacity: 0.6;
}

.desktop-nav .btn-primary {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--nav-text);
    /* Black default */
    margin: 5px 0;
    transition: 0.3s;
}

.home-page #navbar:not(.scrolled) .mobile-toggle span {
    background-color: var(--white);
    /* White for home page hero */
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-darker);
    padding: 20px;
    transform: translateY(-150%);
    /* Hidden by default */
    transition: transform 0.4s ease;
    z-index: 999;
}

.logo img {
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    /* 3D effect */
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* =========================================
   5. HERO SECTION
   ========================================= */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Add zoom effect for extra dynamism */
.hero-slide {
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 6s linear;
}

.hero-slide.active {
    transform: scale(1.05);
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 13, 18, 0.7) 0%, rgba(13, 13, 18, 0.8) 100%);
    z-index: 3;
    /* Just above slides */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}



#hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#hero p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background-color: var(--white);
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
    }
}

/* =========================================
   6. ABOUT SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-list {
    margin-top: 3rem;
    display: flex;
    gap: 40px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.about-image .image-block {
    width: 100%;
    height: 500px;
    background-color: #222;
    /* Fallback */
    background-image: url('../images/architect_team_meeting_modern_office.png');
    /* Premium internal team shot */
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    position: relative;
    box-shadow: 20px 20px 0 0 var(--accent-blue);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image .image-block {
        height: 300px;
    }
}

/* =========================================
   7. PORTFOLIO SECTION (ACCORDION SLIDER)
   ========================================= */

.premium-preview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 15px;
    margin-bottom: 4rem;
    padding-bottom: 0;
}

.premium-preview img:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    height: 100%;
}

.premium-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: all 0.5s ease;
    filter: brightness(0.9);
    cursor: pointer;
}

.premium-preview img:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .premium-preview {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .premium-preview img {
        height: 250px;
    }
}

/* Normalized Section Spacing - Compact (60px) */
#about {
    padding-top: 60px;
    padding-bottom: 60px;
}

#portfolio {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

#portfolio-list {
    padding-top: 60px;
    padding-bottom: 30px;
    background-color: #e6e6e6;
}

#services {
    padding-top: 60px;
}


.portfolio-accordion {
    display: flex;
    width: 100%;
    height: 500px;
    /* Reduced from 80vh */
    overflow: hidden;
    gap: 0;
}

.accordion-item {
    flex: 1;
    position: relative;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.accordion-item:hover,
.accordion-item.active {
    flex: 3;
    /* Expands on hover */
}

/* Ensure the slider images cover the full accordion panel */
.accordion-item .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease, transform 6s ease;
    /* Add slow zoom effect */
    transform: scale(1);
    z-index: 0;
}

.accordion-item .slider-slide.active {
    opacity: 1;
    transform: scale(1.1);
    /* Slow zoom in */
}

/* Info Overlay */
.accordion-item .project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    transform: translateY(0);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.accordion-item .project-info h3 {
    font-size: 2rem;
    /* Big title */
    color: var(--white);
    margin: 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    writing-mode: horizontal-tb;
    transform-origin: bottom left;
    transition: all 0.5s ease;
}

/* collapsed state styling (optional enhancement) */
.accordion-item:not(:hover) .project-info h3 {
    font-size: 1.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .portfolio-accordion {
        flex-direction: column;
        height: 100vh;
    }

    .accordion-item .project-info h3 {
        font-size: 1.5rem;
    }
}

/* =========================================
   8. SERVICES SECTION
   ========================================= */
/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 2px;
}

.slider-slide.active {
    opacity: 1;
}

.contain-slider .slider-slide {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 4rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.icon-box {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    font-weight: 700;
}


/* =========================================
   9. TESTIMONIALS SECTION
   ========================================= */
#testimonials {
    background-color: #111;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#testimonials .section-title,
#testimonials .section-subtitle {
    color: var(--white);
}

#testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 4px;
    position: relative;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    opacity: 0.8;
}

.review-text {
    font-family: var(--font-body);
    font-style: italic;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.client-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.client-info p {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.rating {
    color: #FFD700;
    /* Gold for stars */
    font-size: 1rem;
    letter-spacing: 2px;
}


.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   9. CONTACT SECTION
   ========================================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Removed .contact-icon */

.contact-details {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 60px;
    border-left: 1px solid #E5E5E5;
    /* Thin vertical line detail */
    padding-left: 40px;
}

.contact-details .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.contact-text h4 {
    color: #999;
    /* Muted */
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.contact-text h4::before {
    content: '•';
    color: #E5E5E5;
    font-size: 10px;
    margin-right: 5px;
}

.contact-text a,
.contact-text p {
    color: #000;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.contact-text a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-icon {
    transition: transform 0.3s ease;
}

.phone-link:hover .whatsapp-icon {
    transform: scale(1.1);
}



.glass-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: var(--white);
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   10. FOOTER
   ========================================= */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

.footer-links a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

/* =========================================
   11. ANIMATIONS UI
   ========================================= */
.fade-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

/* Active Class for Scroll Observer */
.active-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* Delays */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* =========================================
   9. CLIENTS SECTION
   ========================================= */
.clients-section {
    padding: 60px 0;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Scaling Logo Ticker */
.clients-grid {
    overflow: hidden;
    padding: 10px 0;
    /* Reduced from 20px */
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll-ticker 30s linear infinite;
}

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

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

    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    height: 45px;
    /* Increased by ~12% */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Green Color Hover Effect matching #73c93e (What They Say) */
.client-logo:hover {
    filter: invert(68%) sepia(61%) saturate(464%) hue-rotate(64deg) brightness(96%) contrast(90%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .clients-grid {
        gap: 30px;
    }

    .client-logo {
        height: 30px;
    }
}

/* =========================================
   10. TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    padding: 100px 0;
    background-color: #111111;
    /* Dark Background */
    color: var(--white);
    position: relative;
}

.testimonial-card {
    background: #1a1a1a;
    /* Darker Card */
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
    z-index: 2;
}

.testimonial-text::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: #333;
    position: absolute;
    top: -40px;
    left: 20px;
    opacity: 0.1;
    z-index: 1;
}

.client-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.client-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* =========================================
   About Section Specifics
   ========================================= */
#about {
    background-color: var(--about-bg);
    position: relative;
    z-index: 5;
    padding-bottom: 50px;
}