.elementor-5900 .elementor-element.elementor-element-9e325b3{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5900 .elementor-element.elementor-element-871e5ff{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-5900 .elementor-element.elementor-element-8d0eaa2{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5900 .elementor-element.elementor-element-fa9a421{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5900 .elementor-element.elementor-element-fa8ecd8{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5900 .elementor-element.elementor-element-a649d8a{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5900 .elementor-element.elementor-element-c116e94{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5900 .elementor-element.elementor-element-b3480a4{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-871e5ff */:root {
    --gm-green: #28A745;
    --gm-black: #111111;
    --gm-gray: #666666;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

/* 1. Common Grid Pattern */
.gm-global-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* 2. Nav Alignment Fixes */
.gm-header {
    /*position: fixed; */
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0px 0;
    padding-top: 20px;
}

.gm-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertical center for the whole bar */
}

.gm-logo {
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 19%;
}

.gm-logo-box {
    background: var(--gm-green);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
}

.gm-nav-right {
    display: flex;
    align-items: center; /* Aligns Nav Links and Button on same horizontal line */
    gap: 40px;
}

.gm-desktop-nav a {
    text-decoration: none;
    color: var(--gm-gray);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-left: 30px;
}

/* 3. Reversed Button Colors (Green -> Black) */
.gm-btn-nav {
    background: var(--gm-green) ;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}


.gm-btn-nav:hover {
    background: #a9d22c;
    color: white;
}

/* Hero Section Adjustments */
.gm-hero {
    min-height: 100vh;
    padding: 120px 5% 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.gm-label {
    color: var(--gm-green);
    font-size: 10px;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.gm-line { width: 30px; height: 1px; background: var(--gm-green); }

.gm-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 30px;
}

.gm-serif-thin {
    font-style: italic;
    color: #e0e0e0;
    color:var(--gm-green);
}

.gm-subtext {
    font-size: 1.1rem;
    color: var(--gm-gray);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.gm-btn-hero {
    background: var(--gm-green) !important;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 700;
    margin-right: 30px;
}

.gm-btn-hero:hover{
    background: #a9d22c;
}

.gm-stats-row {
    margin-top: auto;
    display: flex;
    gap: 80px;
    padding-top: 50px;
}

.gm-stat-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    display: block;
}

.gm-stat p {
    font-size: 10px;
    color: #999;
    letter-spacing: 2px;
}

.gm-watermark-01 {
    position: absolute;
    right: 5%;
    top: 20%;
    font-family: var(--font-serif);
    font-size: 20rem;
    color: rgba(0,0,0,0.02);
    z-index: -1;
}

/* Mobile Toggle */
.gm-burger { display: none; background: none; border: none; cursor: pointer; }
.gm-burger span { width: 25px; height: 2px; background: black; display: block; }

@media (max-width: 1024px) {
    .gm-desktop-nav, .gm-btn-nav { display: none; }
    .gm-burger { display: block; }
    .gm-stats-row { gap: 40px; flex-wrap: wrap; }
}

/* --- Mobile Responsive Overrides --- */

@media (max-width: 768px) {
    /* 1. Hero Adjustments */
    .gm-hero {
        padding: 140px 5% 40px;
        min-height: auto;
    }

    .gm-title {
        font-size: 2.8rem; /* Reduced size for mobile */
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .gm-subtext {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    /* 2. Fix Overlapping Buttons */
    .gm-cta-group {
        display: flex;
        flex-direction: column; /* Stack buttons to prevent overlap */
        gap: 20px;
        align-items: flex-start;
    }

    .gm-btn-hero {
        margin-right: 0;
        width: 100%; /* Full width for better mobile UX */
        text-align: center;
        padding: 18px 20px;
    }

    .gm-link-works {
        font-size: 11px;
        letter-spacing: 2px;
    }

    /* 3. Stats Adjustment */
    .gm-stats-row {
        gap: 30px;
        margin-top: 60px;
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2x2 grid for stats */
    }

    .gm-stat-num {
        font-size: 2.2rem;
    }

    /* 4. Watermark & Grid Fix */
    .gm-watermark-01 {
        font-size: 10rem;
        top: 10%;
        right: -10%;
    }

    .gm-global-grid {
        background-size: 30px 30px; /* Smaller grid for mobile scale */
    }

    /* 5. Mobile Menu Overlay (Required for your JS) */
    .gm-mobile-overlay {
        position: fixed;
        inset: 0;
        background: #FFFFFF;
        z-index: 2000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        transform: translateY(-100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gm-mobile-overlay.active {
        transform: translateY(0);
    }

    .gm-mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .gm-mobile-nav a {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        text-decoration: none;
        color: var(--gm-black);
    }

    /* 6. Burger Icon Animation */
    .gm-burger {
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 3000;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .gm-burger span {
        width: 100%;
        height: 2px;
        background: var(--gm-black);
        transition: 0.3s;
    }
    .gm-logo {
        width: auto; /* Removes the 19% desktop constraint */
    }

    .gm-logo img {
        height: 45px; /* Adjust this value to your preference */
        width: auto;
        display: block;
    }
    
    .gm-hero {
   
    padding: 50px 5% 60px;
    }

    /* X Animation when active */
    .active .gm-burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .active .gm-burger span:nth-child(2) { opacity: 0; }
    .active .gm-burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-9e325b3 */:root {
    --green: #28A745;
    --black: #111111;
    --gray: #666666;
    --white: #ffffff;
    --serif: "Playfair Display", serif;
    --sans: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--sans); color: var(--black); background: var(--white); overflow-x: hidden; }

/* Grid Background */
.blueprint-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* Header */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 2rem 5%; background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; }
.logo-box { background: var(--green); color: white; padding: 4px 10px; border-radius: 4px; font-weight: bold; margin-right: 8px; }
.nav-links a { text-decoration: none; color: var(--gray); margin: 0 1.5rem; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { background: var(--black); color: white; text-decoration: none; padding: 12px 24px; font-size: 0.85rem; transition: 0.3s; }
.nav-cta:hover { background: var(--green); }

/* Hero */
.hero { padding: 100px 5%; max-width: 1400px; margin: 0 auto; }
.section-label { color: var(--green); font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 2rem; }
.hero-title { font-family: var(--serif); font-size: clamp(3rem, 8vw, 6rem); line-height: 1; margin-bottom: 2rem; font-weight: 400; }
.hero-desc { font-size: 1.25rem; color: var(--gray); max-width: 600px; margin-bottom: 3rem; }
.btn-green { background: var(--green); color: white; padding: 20px 40px; text-decoration: none; display: inline-block; font-weight: 600; margin-right: 2rem; }

/* Philosophy (Dark Section) */
.dark-mode { background: var(--black); color: white; padding: 100px 5%; position: relative; }
.serif-title { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; line-height: 1.1; margin-bottom: 4rem; }
.green-text { color: var(--green); }

.phil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.item { border-bottom: 1px solid #333; padding: 2rem 0; }
.item span { color: var(--green); margin-right: 1rem; }
.formula-box { border: 1px solid #333; padding: 3rem; margin-top: 2rem; background: #161616; }

/* Footer */
.footer { background: var(--black); color: white; padding: 80px 5% 40px; border-top: 1px solid #222; }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 60px; }
.footer-nav { display: flex; gap: 100px; }
.col h5 { font-size: 0.7rem; color: #444; margin-bottom: 1.5rem; letter-spacing: 2px; }
.col a { display: block; text-decoration: none; color: white; margin-bottom: 0.8rem; font-size: 0.8rem; transition: 0.3s; }
.col a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid #222; padding-top: 30px; font-size: 0.75rem; color: #444; }

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .phil-grid { grid-template-columns: 1fr; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2badddc */.gm-philosophy-section {
    background-color: #0A0A0A;
    color: #FFFFFF;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.gm-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

/* Header Styling */
.gm-section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 80px;
}

.gm-label-line { width: 30px; height: 1px; background: #28A745; }
.gm-label-text { font-size: 10px; letter-spacing: 3px; color: #666; font-weight: 700; }

.gm-philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 7.5rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 120px;
}

.gm-philosophy-italic {
    font-style: italic;
    color: #444; /* Matches the lower contrast in the screenshot */
}

/* Grid Layout */
.gm-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}

/* Principle Rows */
.gm-principle-row {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #1A1A1A;
}

.gm-principle-row:first-child { border-top: 1px solid #1A1A1A; }

.gm-roman { color: #28A745; font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.gm-principle-content h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 15px; font-weight: 400; }
.gm-principle-content p { color: #888; line-height: 1.6; font-size: 1rem; max-width: 400px; }

/* Method & Formula */
.gm-green-dash { display: block; width: 25px; height: 1px; background: #28A745; margin-bottom: 30px; }
.gm-method-quote p { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #999; line-height: 1.5; font-style: italic; margin-bottom: 25px; }
.gm-method-quote cite { color: #28A745; font-size: 11px; letter-spacing: 2px; font-weight: 700; font-style: normal; }

.gm-formula-box {
    margin-top: 80px;
    border: 1px solid #1A1A1A;
    background: #0D0D0D;
    padding: 60px;
}

.gm-formula-box small { font-size: 10px; letter-spacing: 3px; color: #444; margin-bottom: 30px; display: block; }
.gm-formula-equation { font-family: 'Playfair Display', serif; font-size: 1.8rem; line-height: 1.4; margin-bottom: 30px; font-weight: 300; }
.gm-formula-result { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #28A745; border-top: 1px solid #1A1A1A; padding-top: 30px; margin-bottom: 40px; }

.gm-formula-stats { display: flex; gap: 60px; }
.gm-stat-value { display: block; font-size: 1.5rem; font-weight: 400; margin-bottom: 5px; }
.gm-stat-label { font-size: 9px; letter-spacing: 2px; color: #555; }

/* Background Watermark */
.gm-bg-watermark {
    position: absolute;
    bottom: -50px;
    right: 5%;
    font-family: 'Playfair Display', serif;
    font-size: 25rem;
    color: rgba(255, 255, 255, 0.02);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

@media (max-width: 1024px) {
    .gm-philosophy-grid { grid-template-columns: 1fr; gap: 80px; }
    .gm-bg-watermark { font-size: 15rem; }
}

/* Initial hidden states */
.gm-principle-row, 
.gm-method-quote, 
.gm-formula-box {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reveal class triggered by JS */
.gm-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for the principles list */
.gm-principle-row:nth-child(2) { transition-delay: 0.2s; }
.gm-principle-row:nth-child(3) { transition-delay: 0.4s; }

@media (max-width: 768px) {
    .gm-philosophy-title {
        /* Reduced from clamp(4rem, 10vw, 7.5rem) to be more mobile-friendly */
        font-size: clamp(2.8rem, 12vw, 4rem);
        line-height: 1.1; /* Tighter leading keeps the serif font looking high-end */
        margin-bottom: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c41d72d */.gm-services-section {
    background-color: #FFFFFF;
    color: #111111;
    padding: 140px 0;
    font-family: 'Inter', sans-serif;
}

.gm-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header Logic */
.gm-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 100px;
}

.gm-section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 10px;
    letter-spacing: 3px;
    color: #999;
    font-weight: 600;
}

.gm-label-line {
    width: 30px;
    height: 1px;
    background: #DDD;
}

.gm-services-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    margin: 0;
    line-height: 1;
}

/* Grid Layout with Internal Borders */
.gm-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #F0F0F0;
    border-left: 1px solid #F0F0F0;
}

.gm-service-card {
    padding: 80px 60px;
    border-right: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
    transition: background 0.4s ease;
}

.gm-service-card:hover {
    background: #FAFAFA;
}

/* Card Elements */
.gm-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.gm-card-num {
    font-size: 12px;
    color: #CCC;
    font-weight: 500;
}

.gm-card-tag {
    font-size: 9px;
    letter-spacing: 2px;
    color: #28A745;
    border: 1px solid rgba(40, 167, 69, 0.2);
    padding: 6px 12px;
    font-weight: 700;
}

.gm-card-icon {
    width: 24px;
    height: 24px;
    color: #111;
    margin-bottom: 30px;
}

.gm-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.gm-card-text {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    max-width: 380px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .gm-services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .gm-services-grid {
        grid-template-columns: 1fr;
    }
    .gm-service-card {
        padding: 60px 40px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d8573d3 */.gm-portfolio-section {
    background-color: #FFFFFF;
    padding: 140px 0;
}

/* Horizontal Header Alignment */
.gm-portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 100px;
}

.gm-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    max-width: 500px;
}

.gm-portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    margin: 0 0 20px 0;
}

.gm-portfolio-intro {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

/* Portfolio Grid - 2 Column Layout */
.gm-portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px 60px; /* Large vertical gap for breathing room */
}

.gm-work-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* Image Hover Effects */
.gm-work-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #F9F9F9;
    aspect-ratio: 4 / 3;
    margin-bottom: 30px;
}

.gm-work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gm-work-card:hover .gm-work-img {
    transform: scale(1.05);
}

/* Metadata Styling */
.gm-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.gm-client-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
}

.gm-location-tag {
    font-size: 9px;
    letter-spacing: 2px;
    color: #28A745;
    border: 1px solid rgba(40, 167, 69, 0.2);
    padding: 4px 10px;
    font-weight: 700;
}

.gm-service-offered {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

/* Mobile Tweak */
@media (max-width: 900px) {
    .gm-portfolio-grid {
        grid-template-columns: 1fr;
    }
    .gm-portfolio-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .gm-header-right {
        align-items: flex-start;
        text-align: left;
        margin-top: 20px;
    }
}
/* Initial hidden state for reveal */
.gm-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Visible state triggered by JS */
.gm-revealed {
    opacity: 1;
    transform: translateY(0);
}

.gm-portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline; /* Horizontal alignment for label and title */
    margin-bottom: 100px;
}

/* Staggered delay for grid items */
.gm-portfolio-grid .gm-work-card:nth-child(even) {
    transition-delay: 0.2s;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b634d22 */.gm-testimonials-section {
    background-color: #FFFFFF;
    padding: 120px 0;
    border-top: 1px solid #F0F0F0;
}

.gm-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.gm-testimonial-card {
    padding: 40px;
    border-left: 1px solid #F0F0F0; /* Subtle vertical separation */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gm-quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #28A745; /* Brand Green */
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.3;
}

.gm-quote-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 40px;
}

.gm-client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gm-client-avatar {
    width: 45px;
    height: 45px;
    background: #000;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.gm-client-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.gm-client-role {
    font-size: 0.8rem;
    color: #888;
    margin: 2px 0 8px 0;
}

.gm-location-tag-small {
    font-size: 8px;
    letter-spacing: 1px;
    color: #28A745;
    text-transform: uppercase;
    font-weight: 700;
}

/* Animation Staggering */
.gm-testimonial-grid .gm-testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.gm-testimonial-grid .gm-testimonial-card:nth-child(3) { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .gm-testimonial-grid { grid-template-columns: 1fr; gap: 0; }
    .gm-testimonial-card { border-left: none; border-bottom: 1px solid #F0F0F0; padding: 60px 0; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-13633dd */.gm-cta-section {
    background-color: #0A0A0A; /* Matches screenshot background */
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

/* Refined Background Grid */
.gm-cta-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Smaller grid size (60px) with improved visibility */
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px; 
    z-index: 1;
}

/* Giant "Moat" Watermark */
.gm-bg-watermark {
    position: absolute;
    bottom: -80px;
    left: -40px;
    font-family: 'Playfair Display', serif;
    font-size: 35vw; /* Extremely large as per screenshot */
    color: rgba(255, 255, 255, 0.03); /* Subtle dark grey/white blend */
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.gm-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.gm-limited-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    letter-spacing: 2px;
    color: #28A745; /* Brand green */
    margin-bottom: 50px;
}

.gm-tag-line {
    width: 25px;
    height: 1px;
    background-color: #28A745;
}

/* Strategic Typography */
.gm-cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
}

.gm-strategic-italic {
    font-style: italic;
    color: #666; /* Grey color for "elimination strategy" look */
}

.gm-cta-description {
    font-size: 1.25rem;
    color: #888;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 70px;
}

.gm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: #28A745; /* Brand green button */
    color: #FFF;
    padding: 24px 48px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.gm-btn-primary:hover {
    background-color: #218838;
    transform: translateY(-5px);
}

.gm-email-wrapper {
    margin-top: 120px;
}

.gm-email-label {
    font-size: 14px;
    color: #555;
}

.gm-interactive-email {
    color: #888;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.gm-interactive-email:hover {
    color: #28A745;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-c116e94 */.gm-cta-section {
    background-color: #0A0A0A; /* Deep dark background */
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.gm-limited-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 10px;
    letter-spacing: 2px;
    color: #28A745; /* Brand Green */
    margin-bottom: 40px;
}

.gm-tag-line {
    width: 30px;
    height: 1px;
    background-color: #28A745;
}

.gm-cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem); /* Responsive typography */
    line-height: 1.1;
    margin-bottom: 30px;
}

.gm-cta-description {
    font-size: 1.2rem;
    color: #A0A0A0;
    max-width: 500px;
    margin-bottom: 60px;
}

.gm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: #28A745;
    color: white;
    padding: 22px 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.gm-btn-primary:hover {
    background-color: #218838;
    transform: translateY(-5px);
}

/* Email Interaction Styling */
.gm-email-wrapper {
    margin-top: 100px;
    border-top: 1px solid #222;
    padding-top: 40px;
}

.gm-email-label {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

.gm-interactive-email {
    font-size: 1.1rem;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.gm-interactive-email:hover {
    border-color: #28A745;
}

.gm-copy-tooltip {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: #28A745;
    color: white;
    padding: 5px 12px;
    font-size: 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gm-interactive-email:hover .gm-copy-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 130%;
}

.gm-bg-watermark {
    position: absolute;
    bottom: -50px;
    left: -20px;
    font-size: 25vw;
    font-family: 'Playfair Display', serif;
    color: #111; /* Extremely subtle */
    z-index: 0;
    pointer-events: none;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9854683 */.gm-footer {
    background-color: #FFFFFF; /* White background as requested */
    padding: 100px 0 40px;
    color: #1A1A1A; /* Black for primary text */
    border-top: 1px solid #F0F0F0;
}

.gm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.gm-footer-logo img {
    height: 75px;
    margin-bottom: 20px;
}

.gm-footer-tagline {
    color: #666; /* grey text */
    font-size: 13px;
    margin-bottom: 40px;
     letter-spacing: 1.5px;
     font-weight: 500;
}

.gm-footer-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #28A745; /* Light grreen for labels */
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Hub Tags Styling */
.gm-hub-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gm-hub {
    padding: 8px 16px;
    border: 1px solid #EAEAEA;
    font-size: 13px;
    color: #28A745; /* Dark grey */
    transition: all 0.3s ease;
}

.gm-hub:hover {
    border-color: #28A745; /* Green highlight on hover */
    color: #28A745;
}

/* Links Styling */
.gm-footer-links {
    list-style: none;
    padding: 0;
}

.gm-footer-links li {
    margin-bottom: 15px;
}

.gm-footer-links a {
    text-decoration: none;
    color: #444; /* Medium grey links */
    font-size: 14px;
    transition: color 0.3s ease;
}

.gm-footer-links a:hover {
    color: #28A745; /* Brand green */
}

.gm-link-highlight {
    color: #1A1A1A !important;
    font-weight: 500;
}

/* Bottom Bar */
.gm-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #F0F0F0;
}

.gm-copyright {
    font-size: 13px;
    color: #666;
}

.gm-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.gm-status-dot {
    width: 8px;
    height: 8px;
    background-color: #28A745; /* Status green */
    border-radius: 50%;
    display: inline-block;
}

@media (max-width: 768px) {
    .gm-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}/* End custom CSS */