/* =====================================================
   RESET & BASE
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


/* =====================================================
   LAYOUT UTILITIES
===================================================== */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.split {
    display: flex;
    gap: 40px;
    align-items: center;
}


/* =====================================================
   BUTTON SYSTEM
===================================================== */

.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #F5C400;
    color: #128836;
}

.primary-btn:hover {
    background: #ffffff;
}

.secondary-btn {
    border: 2px solid #F5C400;
    color: #F5C400;
}

.secondary-btn:hover {
    background: #F5C400;
    color: #128836;
}

.whatsapp-btn {
    background-color: #F2D202;
    color: #35823F;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background-color: #ffffff;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    background: linear-gradient(135deg, #128836, #0f3d22);
    padding: 14px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}


/* =====================================================
   HAMBURGER MENU
===================================================== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}


/* ================= HERO SECTION ================= */

.stark-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #128836;
    /* Fallback */
}


/* Slide Layers */

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
    /* Start slightly zoomed for the effect */
}

.slide.active {
    opacity: 1;
    animation: kenBurns 10s linear infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}


/* Overlay & Content */

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(20, 83, 45, 0.9) 0%, rgba(20, 83, 45, 0.6) 50%, transparent 100%);
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-content {
    max-width: 650px;
    color: #ffffff;
}

.hero-eyebrow {
    color: #F2D202;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.1;
    margin-bottom: 25px;
}

.accent-text {
    color: #F2D202;
    font-style: italic;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}


/* Buttons */

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #F2D202;
    color: #128836;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}


/* Divider */

.hero-bottom-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.hero-bottom-divider svg {
    height: 60px;
    width: 100%;
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .hero-overlay {
        background: rgba(20, 83, 45, 0.7);
        /* Darker for readability */
        text-align: center;
    }
    .hero-inner {
        padding: 0 20px;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* ================= ABOUT SNAPSHOT ================= */

.stark-about {
    padding: 40px 20px;
    background: #F9F9F8;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}


/* Image Styling */

.about-image-container {
    flex: 1.1;
    position: relative;
    padding: 20px;
}

.image-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 90%;
    border: 8px solid #F2D202;
    z-index: 1;
    border-radius: 12px;
}

.about-image-container img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.experience-tag {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #128836;
    color: white;
    padding: 20px;
    border-radius: 12px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tag-year {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #F2D202;
    line-height: 1;
}

.tag-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Panel Styling */

.about-panel {
    flex: 1;
    z-index: 4;
}

.stark-badge {
    background: rgba(20, 83, 45, 0.08);
    color: #128836;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.about-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 42px);
    color: #128836;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-panel em {
    color: #8A733E;
    font-style: italic;
}

.about-lead {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.inline-link {
    color: #128836;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #F2D202;
}


/* Proof Grid */

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.proof-card {
    background: white;
    padding: 20px 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.proof-icon {
    font-size: 20px;
    color: #F2D202;
    margin-bottom: 10px;
}

.proof-numbers strong {
    display: block;
    font-size: 24px;
    color: #128836;
}

.proof-numbers span {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}


/* CTAs */

.about-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-stark-primary {
    background: #128836;
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-stark-primary:hover {
    background: #F2D202;
    color: #128836;
}

.btn-stark-link {
    font-weight: 700;
    color: #128836;
    font-size: 15px;
}


/* Mobile */

@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .about-image-container {
        order: 2;
        margin-top: 40px;
    }
    .about-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .proof-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= SERVICES DECISION RESTYLE ================= */

.services-decision {
    background: #FAFAFA;
    padding: 40px 20px;
}

.decision-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.decision-eyebrow {
    color: #F2D202;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
    display: block;
}

.decision-header h2 {
    font-size: 40px;
    color: #128836;
    margin-bottom: 20px;
}


/* --- THE GRID --- */

.decision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}


/* --- THE CARDS --- */

.decision-card {
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Keeps buttons aligned */
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid #EDEDED;
    position: relative;
}

.decision-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}


/* Card Visual Accents */

.urgent-style {
    border-top: 5px solid #D32F2F;
}

.planning-style {
    border-top: 5px solid #F2D202;
}

.support-style {
    border-top: 5px solid #128836;
}

.card-icon-wrap {
    font-size: 32px;
    color: #128836;
    margin-bottom: 25px;
    opacity: 0.8;
}

.decision-card h3 {
    font-size: 24px;
    color: #128836;
    margin-bottom: 15px;
    line-height: 1.2;
}

.decision-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}


/* --- LIST STYLING --- */

.decision-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.decision-list li {
    font-size: 14px;
    color: #444;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.decision-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #F2D202;
    font-weight: bold;
}


/* --- LABELS & BUTTONS --- */

.decision-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.decision-label.urgent {
    background: #fee2e2;
    color: #D32F2F;
}

.decision-label.planning {
    background: #fef9c3;
    color: #854d0e;
}

.decision-label.support {
    background: #dcfce7;
    color: #128836;
}

.decision-btn {
    display: block;
    text-align: center;
    padding: 14px;
    background: #128836;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.decision-btn:hover {
    background: #F2D202;
    color: #128836;
}


/* --- FOOTER BOX --- */

.decision-cta-box {
    margin-top: 80px;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px dashed #ddd;
}

.decision-cta-box p {
    margin-bottom: 20px;
    font-weight: 500;
}


/* --- RESPONSIVE --- */

@media (max-width: 968px) {
    .decision-grid {
        grid-template-columns: 1fr;
    }
    .decision-card {
        padding: 35px 25px;
    }
}


/* ================= TESTIMONIAL SECTION ================= */

.stark-testimonial {
    background: linear-gradient(135deg, #128836 0%, #0D3B20 100%);
    color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 2;
}


/* Header Styling */

.testimonial-eyebrow {
    color: #F2D202;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.testimonial-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    line-height: 1.3;
}

.header-line {
    width: 60px;
    height: 3px;
    background: #F2D202;
    margin: 0 auto 50px;
}


/* Slider Logic */

.slider-wrapper {
    position: relative;
    padding: 40px 0;
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 150px;
    color: rgba(242, 210, 2, 0.15);
    /* Subtle gold tint */
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    z-index: -1;
}

.testimonial-item {
    display: none;
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-item.active {
    display: block;
}

.testimonial-text {
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 700;
    color: #F2D202;
}

.testimonial-location {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}


/* Dots Navigation */

.slider-dots {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #F2D202;
    transform: scale(1.3);
}


/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .stark-testimonial {
        padding: 80px 20px;
    }
    .quote-icon {
        font-size: 100px;
        top: -10px;
    }
}


/* ================= CANAVS COVER SECTION ================= */

.cover-section {
    padding: 40px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.canvas-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}


/* Header Styling */

.stark-eyebrow {
    color: #F2D202;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

.accent-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #128836;
}

.content-header h2 {
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.1;
    margin-bottom: 25px;
    color: #333;
}

.content-header p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}


/* Feature Stack */

.feature-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.feature-item:hover {
    background: #F9FDFB;
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #128836;
    color: #F2D202;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 18px;
    color: #128836;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #777;
    margin: 0;
}


/* Action Area */

.action-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stark-btn-main {
    background: #128836;
    color: white;
    padding: 20px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.stark-btn-main:hover {
    background: #F2D202;
    color: #128836;
    box-shadow: 0 15px 30px rgba(242, 210, 2, 0.3);
}

.underwrite-tag {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}


/* --- VISUAL SIDE --- */

.visual-side {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 2;
}

.main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 2;
}

.decorative-border {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 15px solid #F2D202;
    z-index: 1;
}

.stat-bubble {
    position: absolute;
    top: 40px;
    left: -40px;
    background: #128836;
    color: white;
    padding: 25px;
    border-radius: 4px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #F2D202;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}


/* Responsive */

@media (max-width: 1100px) {
    .canvas-container {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    .main-img {
        height: 400px;
    }
    .visual-side {
        order: 2;
    }
    .content-side {
        order: 1;
    }
    .stat-bubble {
        left: 20px;
        top: -30px;
    }
}


/* =====================================================
   WHY CHOOSE US – CONVERSION OPTIMIZED
===================================================== */

.why-us {
    padding: 40px 20px;
    background: #ffffff;
    text-align: center;
}

.why-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #F2D202;
    margin-bottom: 12px;
}

.why-us h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #35823F;
}


/* GRID */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}


/* CARD */

.why-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}


/* ICON STYLING */

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(31, 119, 44, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    fill: #35823F;
}


/* TEXT */

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #35823F;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}


/* RESPONSIVE */

@media (max-width: 600px) {
    .why-us h2 {
        font-size: 30px;
    }
}


/* ================= GALLERY SECTION ================= */

.stark-gallery {
    padding: 40px 20px;
    background-color: #FBFBFA;
    /* Extremely light off-white for elegance */
}

.gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.gallery-eyebrow {
    color: #F2D202;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.gallery-header h2 {
    font-family: 'Playfair Display', serif;
    /* Or Inter if you prefer */
    font-size: clamp(32px, 5vw, 42px);
    color: #35823F;
    margin-bottom: 20px;
}


/* ================= THE GRID ================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #35823F;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}


/* Sizing Logic */

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    /* Large square */
}

.gallery-item.tall {
    grid-row: span 2;
    /* Vertical rectangle */
}


/* ================= IMAGE & OVERLAY ================= */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.item-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(20, 83, 45, 0.8) 0%, transparent 60%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.item-category {
    color: #F2D202;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.item-overlay h3 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
}


/* ================= HOVER EFFECTS ================= */

.gallery-item:hover img {
    filter: grayscale(0%) scale(1.08);
}

.gallery-item:hover .item-overlay {
    opacity: 1;
    transform: translateY(0);
}


/* ================= RESPONSIVE DESIGN ================= */

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        display: flex;
        flex-direction: column;
    }
    .gallery-item {
        height: 300px !important;
        /* Stacked layout for mobile */
    }
}


/* --- NEWS SPOTLIGHT COMPONENT --- */

.news-spotlight {
    background: #35823F;
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(242, 210, 2, 0.3);
    box-shadow: 0 15px 35px rgba(20, 83, 45, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-spotlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(20, 83, 45, 0.2);
}

.spotlight-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.live-tag {
    background: #F2D202;
    color: #35823F;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #35823F;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.headline-wrapper p {
    color: #FFFFFF;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.spotlight-link {
    color: #F2D202;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}


/* --- ANIMATED PROGRESS BAR --- */

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-fill {
    height: 100%;
    background: #F2D202;
    width: 0;
    animation: newsProgress 6s linear infinite;
}

@keyframes newsProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}


/* Mobile Adjustments */

@media (max-width: 768px) {
    .news-spotlight {
        flex-direction: column;
        border-radius: 15px;
        padding: 20px;
        gap: 10px;
    }
    .spotlight-content {
        flex-direction: column;
        text-align: center;
    }
}


/* ================= GALLERY CTA ================= */

.gallery-cta {
    padding: 40px 20px;
    background: linear-gradient(135deg, #35823F, #1F7A3E);
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* SOFT BACKGROUND DEPTH */

.gallery-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at top right, rgba(242, 210, 2, 0.15), transparent 60%);
}


/* INNER */

.gallery-cta-inner {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* EYEBROW */

.gallery-cta-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F2D202;
    margin-bottom: 14px;
}


/* HEADLINE */

.gallery-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.25;
}


/* TEXT */

.gallery-cta-text {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 40px;
}


/* ACTIONS */

.gallery-cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}


/* NOTE */

.gallery-cta-note {
    font-size: 13px;
    opacity: 0.85;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .gallery-cta h2 {
        font-size: 30px;
    }
    .gallery-cta-text {
        font-size: 16px;
    }
}


/* ================= CONTACT HUB STYLE ================= */

.stark-contact-hub {
    padding: 40px 20px;
    background: radial-gradient(circle at top right, #35823F, #35823F);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 70px;
}

.hub-eyebrow {
    color: #F2D202;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 46px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-header em {
    font-style: italic;
    color: #F2D202;
}

.hub-lead {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}


/* --- THE GRID --- */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hub-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Card Specifics */

.phone-card {
    background: #F2D202;
    color: #35823F;
    transform: scale(1.05);
    z-index: 3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.whatsapp-card,
.email-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
}

.hub-card:hover {
    transform: translateY(-10px) scale(1.08);
    background: rgba(255, 255, 255, 0.2);
    border-color: #F2D202;
}

.phone-card:hover {
    background: #ffffff;
}


/* Icons & Labels */

.hub-icon {
    font-size: 28px;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.phone-card .hub-icon {
    background: rgba(20, 83, 45, 0.1);
}

.hub-info strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.hub-info span {
    font-size: 15px;
    opacity: 0.8;
}


/* Speed Tag */

.speed-tag {
    position: absolute;
    top: 15px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    background: #35823F;
    color: #F2D202;
    padding: 4px 10px;
    border-radius: 4px;
}


/* Footer */

.hub-footer {
    margin-top: 60px;
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}


/* --- MOBILE --- */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .phone-card {
        transform: scale(1);
        margin-bottom: 10px;
    }
    .hub-card:hover {
        transform: translateY(-5px);
    }
}


/* =====================================================
   FOOTER – AGENCY GRADE
===================================================== */

.footer {
    background: linear-gradient(135deg, #35823F, #0f3d22);
    color: #ffffff;
    padding: 70px 20px 30px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}


/* BRAND */

.footer-brand h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-location {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-whatsapp {
    display: inline-block;
    background: #25D366;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}


/* LINKS */

.footer-links h4,
.footer-trust h4,
.footer-social h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links ul,
.footer-trust ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-trust li {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F2D202;
}


/* SOCIAL */

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: #F2D202;
    color: #35823F;
}


/* BOTTOM */

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.85;
}

.powered-by a {
    color: #F2D202;
    font-weight: 600;
    text-decoration: none;
}


/* BACK TO TOP */

.back-to-top {
    position: absolute;
    top: -18px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #F2D202;
    color: #35823F;
    font-size: 18px;
    cursor: pointer;
    font-weight: 700;
    align-items: center;
}


/* RESPONSIVE */

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
    .social-icons {
        justify-content: center;
    }
}


/* FOOTER LOGO */

.footer-logo {
    max-width: 140px;
    margin-bottom: 15px;
}


/* ICON SPACING */

.footer i {
    margin-right: 8px;
}


/* SOCIAL ICONS */

.social-icons a i {
    font-size: 18px;
}


/* BACK TO TOP ICON */

.back-to-top i {
    font-size: 18px;
}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 768px) {
    /* NAV */
    .hamburger {
        display: flex;
    }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #35823F, #2F8F3A);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        display: none;
    }
    .nav.active {
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    /* HERO */
    .hero {
        min-height: 60vh;
    }
    .hero-overlay {
        background: rgba(31, 119, 44, 0.9);
    }
    .hero-inner {
        padding: 0 20px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    /* LAYOUT */
    .split {
        flex-direction: column;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}

.hero-content h1 {
    font-size: 32px;
}


/* LAYOUT */

.split {
    flex-direction: column;
}

.about-container {
    flex-direction: column;
    text-align: center;
}


/* ================= STICKY WHATSAPP ================= */

.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    /* Adjusted for better clearance of mobile browser bars */
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Apply animation here */
    animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-sticky i {
    font-size: 24px;
    display: flex;
}


/* Hover State */

.whatsapp-sticky:hover {
    transform: scale(1.05) translateY(-5px);
    background: #20ba5a;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: none;
    /* Stop pulsing when user interacts */
}


/* Mobile Optimization */

@media (max-width: 600px) {
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
        padding: 0;
        width: 60px;
        /* Fixed size creates a perfect circle */
        height: 60px;
        border-radius: 50%;
    }
    .whatsapp-text {
        display: none;
        /* Hides text on mobile */
    }
    .whatsapp-sticky i {
        font-size: 30px;
    }
}


/* Improved Pulse Animation */

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ================= THANK YOU PAGE (STARK BRANDING) ================= */

.stark-thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--stark-light);
    padding: 60px 20px;
}

.thanks-canvas {
    max-width: 800px;
    margin: 0 auto;
    background: var(--stark-white);
    padding: 80px 40px;
    border-radius: 32px;
    box-shadow: var(--stark-shadow);
    text-align: center;
}

/* Icon Animation */
.thanks-icon-wrap {
    margin-bottom: 30px;
}

.thanks-circle {
    width: 80px;
    height: 80px;
    background: var(--stark-gold-soft);
    color: var(--stark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.thanks-circle svg {
    width: 40px;
    height: 40px;
}

/* Typography */
.thanks-text-block h1 {
    font-size: clamp(48px, 8vw, 64px);
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 18px;
    color: var(--stark-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Next Steps Box */
.thanks-next-steps {
    background: var(--stark-light);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.step-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.step-num {
    font-weight: 800;
    color: var(--stark-gold);
    font-size: 14px;
}

/* Actions */
.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline-green {
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--stark-green);
    color: var(--stark-green);
    transition: 0.3s ease;
}

.btn-outline-green:hover {
    background: var(--stark-green);
    color: var(--stark-white);
}

/* Responsive */
@media (max-width: 600px) {
    .thanks-canvas { padding: 40px 20px; }
    .thanks-actions { flex-direction: column; }
    .btn-outline-green { width: 100%; }
}