/* Reset & Base Variables */
:root {
    /* Colors */
    --color-primary: #9b2cdd; /* Vibrant Purple */
    --color-primary-hover: #7b1fa2;
    --color-secondary: #f78a2e; /* Orange/Pink */
    --color-accent: #22b1db; /* Blue */
    --color-dark: #111827;
    --color-dark-lighter: #1f2937;
    --color-light: #ffffff;
    --color-light-bg: #f5f3ff;
    --color-gray: #6b7280;
    --color-gray-light: #e5e7eb;
    --color-border: #e5e7eb;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), #da45e2);
    --gradient-dark: linear-gradient(135deg, #1e1b4b, #312e81);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* UI */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    /* Mega Menu */
    --header-height: 85px;
    --topbar-height: 35px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--color-primary);
}

.icon-sm {
    font-size: 0.7em;
    margin-left: 4px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
    box-shadow: 0 4px 15px rgba(248, 152, 29, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 152, 29, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-top {
    background-color: var(--color-dark);
    color: var(--color-gray-light);
    font-size: 0.85rem;
    padding: 8px 0;
}

.header-top a {
    color: var(--color-gray-light);
    margin-left: 20px;
}

.header-top a:hover {
    color: var(--color-primary);
}

.header-main {
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

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

.company-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.company-tagline {
    font-size: 0.7rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Mega Menu Styles */
.main-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    height: var(--header-height);
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    padding: 0 16px;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    font-family: var(--font-body);
}

.nav-item:hover .nav-link {
    color: var(--color-secondary);
}

/* Mega Menu Dropdown Container */
.mega-menu {
    position: absolute;
    top: calc(var(--header-height) + var(--topbar-height));
    left: 0;
    width: 100%;
    background-color: var(--color-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 2px solid var(--color-primary);
    padding: 40px 0;
    z-index: 1000;
    max-height: calc(100vh - var(--header-height) - var(--topbar-height));
    overflow-y: auto;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-section {
    margin-bottom: 30px;
}

.mega-section h4 {
    font-size: 0.95rem;
    color: var(--color-dark);
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 700;
}

.mega-section ul li {
    margin-bottom: 8px;
}

.mega-section ul li a {
    color: var(--color-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    position: relative;
}

.mega-section ul li a i {
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    margin-top: 3px;
}

.mega-section ul li a:hover {
    color: var(--color-primary);
}

.mega-section ul li a:hover::before {
    color: var(--color-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.phone-icon {
    font-size: 1.2rem;
}

.btn-search {
    background: var(--color-secondary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.btn-search:hover {
    background: var(--color-dark);
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + var(--topbar-height) + 60px);
    padding-bottom: 100px;
    background: var(--gradient-dark);
    color: var(--color-light);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--color-primary);
}

.shape-2 {
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--color-secondary);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-light);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.quick-audit-form {
    background: var(--color-light);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 450px;
}

.input-group {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.input-group i {
    color: var(--color-gray);
}

.input-group input {
    width: 100%;
    padding: 16px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    color: var(--color-dark);
}

/* Visuals inside Hero */
.hero-visual {
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.company-logo-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.stat-badge {
    background: var(--color-secondary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.stat-body {
    display: flex;
    gap: 30px;
    align-items: center;
}

.mockup-phone {
    width: 160px;
    height: 320px;
    background: #111;
    border-radius: 24px;
    border: 6px solid #333;
    padding: 10px;
    position: relative;
}

.mockup-screen {
    background: #222;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
}

.details {
    flex: 1;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    margin-top: 5px;
}

.mockup-image {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.mockup-footer .lines {
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    margin-bottom: 6px;
}

.mockup-footer .lines.short {
    width: 60%;
}

.stat-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item h4 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0;
    line-height: 1;
}

.highlight-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

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

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

.section-desc {
    color: var(--color-gray);
    font-size: 1.1rem;
}

.feature-card {
    background: var(--color-light);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(248, 152, 29, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

/* CTA Section */
.cta-banner {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-actions .btn {
    background: white;
    color: var(--color-primary);
}

.cta-actions .btn:hover {
    background: var(--color-dark);
    color: white;
}

/* Footer */
.site-footer {
    background: var(--color-dark);
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: white;
    margin-bottom: 20px;
}

.footer-logo .company-name {
    color: white;
}

.footer-desc {
    color: var(--color-gray-light);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-links a:hover {
    background: var(--color-primary);
}

.footer-links-group h4, .footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links-group ul li {
    margin-bottom: 12px;
}

.footer-links-group ul li a {
    color: var(--color-gray-light);
}

.footer-links-group ul li a:hover {
    color: var(--color-primary);
}

.footer-contact ul li {
    color: var(--color-gray-light);
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact ul li i {
    color: var(--color-primary);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--color-gray-light);
    font-size: 0.9rem;
}

/* Mega Menu Specifics */
.local-mega-menu {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
}

.about-mega-menu,
.learn-mega-menu {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 600px;
}

.with-icons h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.with-icons h4 i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.with-icons h4 a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-dark);
}

.with-icons h4 a:hover {
    color: var(--color-primary);
}

.results-section h4 {
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.results-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 120px;
    display: block;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.result-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 0.5s;
    background-size: cover;
    background-position: center;
}

.card-bg-1 {
    background-image: linear-gradient(to right, rgba(127, 176, 65, 0.9), rgba(127, 176, 65, 0.6)), url('https://images.unsplash.com/photo-1573164713988-8665fc963095?auto=format&fit=crop&w=400&q=80');
}

.card-bg-2 {
    background-image: linear-gradient(to right, rgba(127, 176, 65, 0.9), rgba(127, 176, 65, 0.6)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32d7?auto=format&fit=crop&w=400&q=80');
}

.result-card:hover .result-card-bg {
    transform: scale(1.05);
}

.result-card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.result-card-content h5 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Results Mega Menu Specifics */
.results-mega-menu {
    display: block; /* override grid */
}

.results-horizontal-container {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    width: 100%;
}

.horizontal-card {
    position: relative;
    flex: 1;
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.hc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: transform 0.5s;
    background-size: cover;
    background-position: center;
}

/* Specific Backgrounds for Results Cards */
.hc-bg-1 {
    background-color: #3b82f6;
    background-image: linear-gradient(to right, rgba(59, 130, 246, 0.8), rgba(250, 204, 21, 0.6)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=400&q=80');
}

.hc-bg-2 {
    background-color: #4ade80;
    background-image: linear-gradient(to right, rgba(21, 128, 61, 0.8), rgba(34, 197, 94, 0.6)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32d7?auto=format&fit=crop&w=400&q=80');
}

.hc-bg-3 {
    background-color: #e5e5e0;
    background-image: linear-gradient(to right, rgba(235, 235, 230, 0.95), rgba(235, 235, 230, 0.8)), url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=400&q=80');
}

.hc-bg-4 {
    background-color: #e0f2fe;
    background-image: linear-gradient(to right, rgba(224, 242, 254, 0.95), rgba(224, 242, 254, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=400&q=80');
}

.hc-bg-5 {
    background-color: #1f2937;
    background-image: linear-gradient(to right, rgba(31, 41, 55, 0.9), rgba(249, 115, 22, 0.6)), url('https://images.unsplash.com/photo-1536240478700-b869070f9279?auto=format&fit=crop&w=400&q=80');
}

.horizontal-card:hover .hc-bg {
    transform: scale(1.05);
}

.hc-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hc-content h3 {
    color: white;
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    font-weight: 800;
}

.hc-dark-text h3 {
    color: var(--color-dark);
    text-shadow: none;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .mega-menu-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .badge {
        margin: 0 auto 24px;
    }
    
    .quick-audit-form {
        margin: 0 auto;
    }
    
    .hero-visual {
        display: none;
    }
    
    .main-nav {
        display: none; /* Hide mega menu on mobile/tablet for now */
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .header-top {
        display: none;
    }
}

/* Contact Page Layout */
.contact-page {
    background-color: #6a8a3a;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.contact-split-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background-color: #6a8a3a;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form-side {
    flex: 1.3;
    background-color: white;
    padding: 50px;
    border-radius: 20px;
}

.contact-title {
    color: #6a8a3a;
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-subtitle {
    color: var(--color-gray);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.detailed-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.detailed-contact-form .form-row.full-width {
    flex-direction: column;
}

.detailed-contact-form input[type="text"],
.detailed-contact-form input[type="url"],
.detailed-contact-form input[type="email"],
.detailed-contact-form input[type="tel"],
.detailed-contact-form select,
.detailed-contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-dark);
    background-color: #fcfcfc;
    transition: border-color 0.3s;
}

.detailed-contact-form input:focus,
.detailed-contact-form select:focus,
.detailed-contact-form textarea:focus {
    outline: none;
    border-color: #6a8a3a;
}

.detailed-contact-form textarea {
    resize: vertical;
}

.phone-input {
    display: flex;
    width: 100%;
    gap: 10px;
}

.phone-input select {
    width: 130px;
    flex-shrink: 0;
}

.services-checklist {
    margin: 30px 0;
}

.services-checklist .section-label {
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
    font-size: 1.1rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.checkbox-grid label,
.consent-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-gray);
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-grid input[type="checkbox"],
.consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
    accent-color: #ff6b00;
}

.consent-checkbox {
    margin: 30px 0;
}

.submit-btn {
    font-size: 1.1rem;
    padding: 18px;
    border-radius: 40px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-footer {
    text-align: center;
    font-size: 0.95rem;
}

.form-footer a {
    color: #6a8a3a;
    font-weight: 700;
    text-decoration: underline;
}

/* Right Side: Info */
.contact-info-side {
    flex: 1;
    padding: 50px 45px;
    color: white;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.back-icon {
    width: 45px;
    height: 45px;
    background-color: white;
    color: #6a8a3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-header h2 {
    font-size: 2.2rem;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.info-subtitle {
    margin-bottom: 45px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.steps-timeline {
    position: relative;
    padding-left: 30px;
    margin-bottom: 50px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 25px;
    bottom: 50px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.step-item {
    position: relative;
    margin-bottom: 40px;
}

.step-number {
    position: absolute;
    left: -30px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #88a35e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transform: translateX(-50%);
    z-index: 2;
}

.step-content {
    padding-left: 35px;
}

.step-content h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.info-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 35px;
    display: flex;
    gap: 30px;
}

.info-col h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-col p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 5px;
    line-height: 1.5;
}

.mt-3 {
    margin-top: 25px;
}

@media (max-width: 992px) {
    .contact-split-container {
        flex-direction: column;
    }
    .contact-form-side {
        border-radius: 20px 20px 0 0;
    }
    .steps-timeline::before {
        display: none;
    }
    .step-number {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 15px;
    }
    .step-content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .detailed-contact-form .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    .info-footer {
        flex-direction: column;
        gap: 20px;
    }
}

/* Blog Page Layout */
.blog-page {
    padding: 60px 0;
    background-color: #ffffff;
}

.blog-header h1 {
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: 40px;
    font-weight: 800;
}

/* Editor's Picks Slider */
.editors-picks-slider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.slider-arrow {
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 1.5rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.3s;
}

.slider-arrow:hover {
    color: var(--color-dark);
}

.editors-picks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex: 1;
}

.blog-card {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    background-color: white;
}

.blog-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.card-content {
    padding: 25px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.card-meta .author {
    font-weight: 600;
}

.card-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.card-title a {
    color: var(--color-dark);
    transition: color 0.3s;
}

.card-title a:hover {
    color: var(--color-primary);
}

.card-tags {
    display: flex;
    gap: 10px;
}

.card-tags .tag {
    background-color: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-gray);
    font-weight: 600;
}

.card-tags .icon-tag {
    padding: 6px 10px;
}

.section-divider {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 40px 0;
}

/* Filter Bar */
.blog-filter-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.search-box {
    position: relative;
    width: 250px;
    flex-shrink: 0;
}

.search-box input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: none;
    background-color: #f8fafc;
    border-radius: 8px;
    font-size: 0.95rem;
}

.search-box i {
    position: absolute;
    right: 15px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.category-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    overflow: hidden;
}

.nav-arrow {
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 1.2rem;
    cursor: pointer;
}

.category-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
}

.category-list::-webkit-scrollbar {
    display: none;
}

.cat-link {
    background-color: #f8fafc;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--color-gray);
    transition: background-color 0.3s, color 0.3s;
}

.cat-link:hover {
    background-color: #e2e8f0;
    color: var(--color-dark);
}

/* Horizontal Cards */
.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.blog-horizontal-card {
    display: flex;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    background-color: white;
    height: 160px;
}

.blog-horizontal-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.h-card-image {
    width: 240px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.h-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.h-card-content .card-meta {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;
    justify-content: flex-start;
    gap: 15px;
}

.h-card-content .card-title {
    font-size: 1.15rem;
    margin-bottom: 0;
}

.bg-1 { background-image: linear-gradient(135deg, #a3b18a 0%, #588157 100%); }
.bg-2 { background-image: linear-gradient(135deg, #ddbea9 0%, #cb997e 100%); }
.bg-3 { background-image: linear-gradient(135deg, #588157 0%, #344e41 100%); }
.bg-4 { background-image: linear-gradient(135deg, #606c38 0%, #283618 100%); }
.bg-5 { background-image: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); }
.bg-6 { background-image: linear-gradient(135deg, #334155 0%, #1e293b 100%); }
.bg-7 { background-image: linear-gradient(135deg, #64748b 0%, #475569 100%); }
.bg-8 { background-image: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.bg-9 { background-image: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }
.bg-10 { background-image: linear-gradient(135deg, #10b981 0%, #047857 100%); }
.bg-11 { background-image: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%); }

@media (max-width: 992px) {
    .editors-picks-grid {
        grid-template-columns: 1fr;
    }
    .recent-posts-grid {
        grid-template-columns: 1fr;
    }
    .blog-filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .search-box {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog-horizontal-card {
        flex-direction: column;
        height: auto;
    }
    .h-card-image {
        width: 100%;
        height: 200px;
    }
}

/* Logo specific updates */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-img.dark-variant {
    filter: brightness(0) invert(1);
}

.text-accent {
    color: var(--color-secondary);
}

/* New Hero Section Layout */
.new-hero-section {
    background-color: #ffffff;
    position: relative;
    padding: 0;
    overflow: visible;
}

.new-hero-section .hero-container {
    padding-top: 80px;
    padding-bottom: 60px;
    align-items: center;
}

.hero-pre-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.hero-title.text-primary {
    color: var(--color-secondary); /* Matches requested theme */
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 40px;
}

.horizontal-form {
    display: flex;
    gap: 15px;
    max-width: 650px;
    margin-bottom: 40px;
}

.horizontal-form .input-group {
    flex: 1;
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.horizontal-form .input-group i {
    color: #a0a0a0;
    margin-right: 15px;
}

.horizontal-form .input-group input {
    border: none;
    background: transparent;
    padding: 18px 0;
    width: 100%;
    outline: none;
    font-size: 1rem;
}

.horizontal-form button {
    padding: 0 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--color-secondary);
    border: none;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

.horizontal-form button:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.hero-partners {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.partner-logos-rendered {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.partner-badge {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    color: #666;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.2;
}

.partner-badge.type-box {
    border: 1px solid #d0d0d0;
    width: 90px;
    height: 80px;
}

.partner-badge.type-box .badge-content {
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.partner-badge.type-box .badge-footer {
    background: #666;
    color: white;
    font-size: 0.5rem;
    font-weight: bold;
    padding: 4px 0;
    letter-spacing: 0.5px;
}

/* Google */
.partner-badge .google-g {
    font-size: 1.8rem;
    color: #666;
    font-weight: 900;
    margin-bottom: 2px;
}
.partner-badge .badge-title {
    font-size: 0.55rem;
    font-weight: 600;
}

/* Microsoft */
.partner-badge.ms-badge {
    width: 100px;
}
.partner-badge .ms-logo {
    font-size: 0.45rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: bold;
    margin-bottom: 4px;
}
.partner-badge .badge-subtitle {
    font-size: 0.35rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.partner-badge.ms-badge .badge-title {
    font-size: 0.65rem;
    font-weight: bold;
    margin-top: 2px;
}

/* Meta */
.partner-badge.type-rounded {
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    width: 110px;
    height: 55px;
    justify-content: center;
    padding: 5px;
}
.partner-badge .meta-logo {
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #555;
    margin-bottom: 2px;
}
.partner-badge.type-rounded .badge-title {
    font-size: 0.5rem;
    color: #666;
}

/* IFA */
.partner-badge.ifa-badge {
    width: 100px;
}
.partner-badge .ifa-logo {
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: -1px;
}
.partner-badge .badge-micro {
    font-size: 0.25rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 4px;
}

/* Shopify */
.partner-badge.type-text-only {
    background: transparent;
    border: none;
    align-items: flex-start;
    justify-content: center;
    height: 60px;
    padding-left: 10px;
}
.partner-badge .shopify-logo {
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    line-height: 1;
}
.partner-badge.type-text-only .badge-title {
    font-size: 0.8rem;
    color: #888;
    margin-left: 28px;
    font-style: italic;
    font-weight: normal;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 40px;
}

.leaf-shape {
    position: absolute;
    width: 85%;
    height: 95%;
    background: linear-gradient(135deg, rgba(155, 44, 221, 0.1), rgba(247, 138, 46, 0.1));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 0;
    top: 5%;
    left: 10%;
}

.hero-portrait {
    position: relative;
    z-index: 1;
    max-width: 90%;
    height: auto;
    display: block;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.quote-card {
    position: absolute;
    top: 15%;
    left: -15%;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    max-width: 280px;
    z-index: 2;
    border-left: 4px solid var(--color-primary);
}

.quote-icon {
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.quote-card p {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.quote-author {
    font-size: 0.85rem;
    color: var(--color-gray);
    font-weight: 700;
    display: block;
    text-align: right;
}

/* Trust Strip */
.trust-strip {
    background-color: #fcfdfe;
    padding: 40px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.trust-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.trust-logo.clutch-logo {
    color: var(--color-dark);
}

.trust-stats {
    display: flex;
    flex-direction: column;
}

.trust-stats strong {
    font-size: 1.6rem;
    line-height: 1;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.trust-stats .stars i, .reviews-item .stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.trust-stats span {
    font-size: 0.8rem;
    color: var(--color-gray);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 4px;
}

.reviews-item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.avatars {
    display: flex;
    justify-content: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-item p {
    font-size: 0.95rem;
    margin: 5px 0 0;
    color: var(--color-dark);
    font-weight: 600;
}

.reviews-item .stars.lg i {
    font-size: 1.2rem;
    margin: 0 2px;
}

@media (max-width: 992px) {
    .horizontal-form {
        flex-direction: column;
    }
    .horizontal-form .input-group input {
        padding: 15px 0;
    }
    .horizontal-form button {
        padding: 15px 30px;
    }
    .quote-card {
        left: 0;
        bottom: -20px;
        top: auto;
    }
}

/* Awards Section */
.awards-section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.bg-light {
    background-color: #fafafa;
}

.awards-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

.award-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: #555;
    font-size: 0.7rem;
    line-height: 1.3;
    text-transform: uppercase;
    border: 1px solid #e0e0e0;
    background: white;
    width: 140px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    height: 150px;
    transition: 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--color-primary);
}

.award-item i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.award-item strong {
    font-size: 0.9rem;
    color: #333;
    display: block;
    margin: 3px 0;
}

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

.max-w-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-card-alt {
    background-color: #f8fafc; /* Very light neutral tint */
    border-radius: 8px;
    padding: 35px 30px;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.service-card-alt:hover {
    background-color: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.service-card-alt .card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.service-card-alt .icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.service-card-alt h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.3;
}

.service-card-alt h3 a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: rgba(155, 44, 221, 0.4); /* Based on purple */
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: 0.3s ease;
}

.service-card-alt h3 a:hover {
    color: var(--color-secondary);
    text-decoration-color: var(--color-secondary);
}

.service-card-alt p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .services-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Introduction Section */
.intro-section {
    padding: 80px 0 20px;
    background-color: #ffffff;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(34, 177, 219, 0.3); /* Accent color transparent */
    border-radius: 30px;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    background: rgba(34, 177, 219, 0.05);
}

.intro-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 25px;
    font-weight: 800;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.intro-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(34, 177, 219, 0.2);
}

.btn-accent:hover {
    background-color: #1a96bc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(34, 177, 219, 0.3);
}

.intro-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
}

.intro-trust .stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .intro-title {
        font-size: 2.2rem;
    }
    .intro-actions {
        flex-direction: column;
        align-items: center;
    }
    .intro-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}