/* ========================================================================
   Variables and Base Styles
   ======================================================================== */

/* UPDATED: Zoho-inspired color palette */
:root {
    /* Primary & Accents */
    --primary-blue: #0974B0; /* Honolulu Blue (Zoho Primary) */
    --accent-red: #CE2232;   /* Amaranth Red (Zoho Accent) */
    --accent-green: #219E4A; /* Sea Green (Zoho Accent) */
    --accent-yellow: #FFE004;/* Vivid Yellow (Zoho Accent) */

    /* Neutrals */
    --neutral-light: #F5F5F5; /* Light Gray (Zoho Background) */
    --neutral-dark: #333333;  /* Dark Gray (Zoho Text) */
    --neutral-medium: #5e6c84; /* Medium Gray for borders/secondary text */
    --neutral-border: #dfe1e6; /* Lighter border color */
    --white: #ffffff;
    --black: #000000; /* Keeping black if needed */

    /* Component Specific (Examples) */
    --header-bg: var(--primary-blue);
    --header-text: var(--white);
    --footer-bg: var(--primary-blue);
    --footer-text: var(--white);
    --link-color: var(--primary-blue);
    --link-hover-color: var(--accent-red);
    --button-primary-bg: var(--accent-green);
    --button-primary-text: var(--white);
    --button-secondary-bg: var(--accent-red); /* Example for other buttons */
    --button-secondary-text: var(--white);

    /* Typography & Spacing */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Keep existing font */
    --base-font-size: 16px; /* Base for rem calculation */
    --line-height-base: 1.6;
    --line-height-heading: 1.3;
    --spacing-unit: 8px; /* Base spacing unit */
    --section-padding-y: calc(var(--spacing-unit) * 10); /* 80px */
    --container-max-width: 1200px;

    /* Other Variables */
    --transition-speed: 0.3s ease;
    --border-radius: 8px; /* Example */
    --box-shadow: 0 4px 15px rgba(0, 82, 204, 0.08); /* Slightly softer shadow */
    --box-shadow-hover: 0 8px 25px rgba(0, 82, 204, 0.12); /* Slightly softer hover shadow */
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--base-font-size); /* Set base font size */
    scroll-behavior: smooth; /* Optional: Smooth scrolling */
}

body {
    font-family: var(--font-primary);
    line-height: var(--line-height-base);
    color: var(--neutral-dark);
    background-color: var(--white);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

a {
    text-decoration: none;
    color: var(--link-color);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--link-hover-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevent bottom space */
}

h1, h2, h3, h4, h5, h6 {
    line-height: var(--line-height-heading);
    margin-bottom: calc(var(--spacing-unit) * 2); /* Spacing: Consistent bottom margin */
    font-weight: 700; /* Hierarchy: Ensure headings are bold */
}

/* Hierarchy: Define heading sizes using rem for scalability */
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; } /* Slightly smaller than H1 */
h3 { font-size: 1.5rem; } /* Clearly smaller than H2 */
h4 { font-size: 1.2rem; }

/* Import breadcrumb styles */
@import url('breadcrumbs.css');

p {
    margin-bottom: calc(var(--spacing-unit) * 2); /* Spacing: Consistent paragraph bottom margin */
}
p:last-child {
    margin-bottom: 0; /* Avoid double margin */
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 2.5); /* 20px padding */
}

/* Spacing: Utility class for standard section padding */
.section-padding {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

/* SEO/Highlighting: Simple class for brand names */
.brand-highlight {
    font-weight: 600;
    vertical-align: baseline;
    color: var(--primary-blue); /* Or choose another distinct color */
}


/* ========================================================================
   Loader Styles (Keep as is)
   ======================================================================== */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease; /* Add transition for hiding */
}

/* Add this class via JS when content is loaded */
#loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.loader {
    width: 40px;
    height: 30px;
    --c: no-repeat linear-gradient(var(--accent-green) 0 0);
    background:
        var(--c) 0    100%/8px 30px,
        var(--c) 50%  100%/8px 20px,
        var(--c) 100% 100%/8px 10px;
    position: relative;
    clip-path: inset(-100% 0);
    transform: scale(2);
}
.loader:before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-yellow);
    left: -16px;
    top: 0;
    animation:
        l5-1 2s linear infinite,
        l5-2 0.5s cubic-bezier(0,200,.8,200) infinite;
}
@keyframes l5-1 { 0% {left:-16px;transform:translateY(-8px)} 100% {left:calc(100% + 8px);transform:translateY(22px)} }
@keyframes l5-2 { 100% {top:-0.1px} }


/* ========================================================================
   Header Styles
   ======================================================================== */
header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: calc(var(--spacing-unit) * 0.5) 0; /* Spacing: Reduced padding slightly */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px; /* Ensure minimum height */
}

.logo img {
    height: 55px; /* Typography: Slightly smaller logo */
    display: block;
    /* filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); */ /* Removed filter */
}

nav {
    /* flex: 2; */ /* Removed flex for better centering control if needed */
    display: flex;
    justify-content: flex-end; /* Align nav to the right */
}

.nav-links {
    display: flex;
    gap: calc(var(--spacing-unit) * 3.5); /* Spacing: 28px gap */
    align-items: center; /* Vertically align items */
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--header-text);
    font-weight: 500; /* Typography: Standard weight */
    font-size: 0.95rem; /* Typography: Slightly smaller nav links */
    padding: calc(var(--spacing-unit) * 1.25) 0; /* Spacing: 10px top/bottom padding */
    position: relative;
    transition: color var(--transition-speed);
    text-transform: uppercase; /* Consistency: Uppercase nav items */
    letter-spacing: 0.5px; /* Spacing */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-yellow);
}

/* Underline effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px; /* Position underline closer to text */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-yellow);
    transform: scaleX(0); /* Hide by default */
    transform-origin: center;
    transition: transform 0.3s ease-out;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1); /* Show on hover/active */
}


/* Dropdown Menu Styles */
.dropdown { position: relative; }

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    /* Dropdown Size: Reduced min-width */
    min-width: 170px;
    background-color: var(--header-bg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: visibility 0s linear 0.3s, opacity 0.3s ease, transform 0.3s ease; /* Adjusted transition */
    z-index: 1;
    border-radius: 0 0 var(--border-radius) var(--border-radius); /* Rounded bottom corners */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    border-top: none;
    /* border-left: 3px solid var(--accent-green); */ /* Removed side border */
}

.dropdown-content li { width: 100%; }

.dropdown-content a {
    /* Dropdown Size: Reduced padding */
    padding: calc(var(--spacing-unit) * 1.25) calc(var(--spacing-unit) * 2); /* 10px 16px */
    display: block;
    color: var(--header-text);
    /* Dropdown Size: Reduced font size */
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s;
    /* Removed padding-left and :before pseudo-element for arrow */
}

.dropdown-content a:hover {
    background-color: var(--accent-green);
    color: var(--white);
}

/* Prevent nav underline from showing in dropdown */
.dropdown-content a::after { display: none; }

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s; /* Show immediately on hover */
}

.fa-chevron-down {
    font-size: 0.7em; /* Smaller chevron */
    margin-left: calc(var(--spacing-unit) * 0.5); /* 4px */
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none; /* Hidden on desktop */
    color: var(--header-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-unit); /* Tappable area */
    background: none;
    border: none;
}

/* Header Responsive Styles */
@media screen and (max-width: 992px) {
    .nav-links {
        gap: calc(var(--spacing-unit) * 2.5); /* 20px */
    }
}

@media screen and (max-width: 768px) {
    header .container {
        position: relative; /* Needed for absolute positioning of nav */
    }
    .logo {
       flex-grow: 1; /* Allow logo to take space */
       text-align: center; /* Center logo */
       position: absolute; /* Position independently */
       left: 50%;
       top: 50%;
       transform: translate(-50%, -50%);
       width: auto; /* Let image size dictate */
       z-index: 1; /* Ensure logo is clickable if overlaps */
    }
    .logo img {
        height: 45px; /* Responsiveness: Smaller logo */
        margin: 0 auto; /* Center within its container */
    }
    .menu-toggle {
        display: block; /* Show hamburger */
        order: -1; /* Move to the left */
        z-index: 102; /* Above nav */
    }
    nav {
        /* Hide nav, position below header */
        display: none;
        position: absolute;
        top: 100%; /* Position below the calculated header height */
        left: 0;
        width: 100%;
        background-color: var(--header-bg);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 101; /* Below toggle */
        max-height: calc(100vh - 70px); /* Limit height */
        overflow-y: auto; /* Allow scroll if needed */
    }
    /* Class added by JS to show menu */
    nav.nav-open {
        display: block;
    }
    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-unit) 0; /* Spacing */
        align-items: stretch; /* Full width links */
    }
    .nav-links li {
        width: 100%;
        text-align: left; /* Align text left */
    }
    .nav-links a {
        padding: calc(var(--spacing-unit) * 1.75) calc(var(--spacing-unit) * 2.5); /* 14px 20px */
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        font-size: 1rem; /* Typography: Slightly larger on mobile nav */
    }
     .nav-links li:last-child a {
        border-bottom: none;
    }
    .nav-links a::after { display: none; } /* Remove desktop underline on mobile */

    /* Mobile Dropdown */
    .dropdown-content {
        position: static; /* Remove absolute positioning */
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        max-height: 0; /* Collapse by default */
        overflow: hidden;
        transition: max-height 0.3s ease-out; /* Smooth expand/collapse */
        background-color: rgba(0, 0, 0, 0.15); /* Darker background for nested items */
        border: none;
        margin: 0;
        border-radius: 0;
        padding-left: calc(var(--spacing-unit) * 2); /* Indent sub-menu items */
    }
    /* Class added by JS when dropdown parent is clicked */
    .dropdown.active .dropdown-content {
        max-height: 500px; /* Allow space for items */
    }
    .dropdown-content a {
        padding-top: calc(var(--spacing-unit) * 1.25); /* 10px */
        padding-bottom: calc(var(--spacing-unit) * 1.25);
        color: var(--accent-yellow); /* Make sub-items stand out */
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
     .dropdown-content li:last-child a {
        border-bottom: none;
    }
    .dropdown-content a:hover {
        background-color: rgba(0, 0, 0, 0.25);
        color: var(--white);
    }
}

@media screen and (max-width: 480px) {
    .logo img { height: 40px; }
}


/* ========================================================================
   General Button Styles
   ======================================================================== */
.btn {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3.75); /* 12px 30px */
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 50px; /* Pill shape */
    transition: all var(--transition-speed);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.2; /* Ensure text fits */
}
/* Hierarchy: Ensure button text is clearly readable */
.btn span {
    display: inline-block;
    vertical-align: middle;
}

.btn-primary {
    background-color: var(--button-primary-bg);
    color: var(--button-primary-text);
}
.btn-primary:hover {
    background-color: var(--button-secondary-bg);
    color: var(--button-secondary-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--button-secondary-bg);
    color: var(--button-secondary-text);
}
.btn-secondary:hover {
    background-color: var(--accent-yellow);
    color: var(--neutral-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


/* ========================================================================
   Hero Section Styles
   ======================================================================== */
.hero {
    background-color: var(--neutral-light);
    padding: var(--section-padding-y) 0; /* Spacing: Use standard section padding */
    color: var(--neutral-dark);
    min-height: 70vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    overflow: hidden; /* Prevent overflow */
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; /* Space between content and image */
    gap: calc(var(--spacing-unit) * 5); /* 40px gap */
    position: relative;
}

.hero-content,
.hero-image {
    flex: 1 1 48%; /* Roughly equal split, allow wrapping */
    min-width: 300px; /* Prevent excessive shrinking */
}

.hero-content {
    text-align: left;
    order: 1;
}

.hero-image {
    order: 2;
    display: flex; /* Center image if needed */
    justify-content: center;
    align-items: center;
    position: relative; /* For accent shape positioning */
}

.hero-cta {
    flex-basis: 100%; /* Full width */
    text-align: center; /* Center button */
    margin-top: calc(var(--spacing-unit) * 5); /* Spacing: 40px above button */
    order: 3;
}

/* Hierarchy: Styling the H1 words */
.hero-content h1 {
    font-size: 3rem; /* Typography: Slightly larger H1 */
    font-weight: 800; /* Hierarchy: Bolder H1 */
    line-height: var(--line-height-heading);
    margin-bottom: calc(var(--spacing-unit) * 3); /* Spacing: 24px below H1 */
    color: var(--primary-blue); /* Default color */
}

/* Specific word styling */
.hero-content h1 .automate,
.hero-content h1 .analyze,
.hero-content h1 .accelerate {
    display: block; /* Ensure each word is on its own line or control wrapping */
    margin-bottom: calc(var(--spacing-unit) * 0.5); /* Small space between words */
    padding: 0 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Subtle shadow */
}
.hero-content h1 .automate { color: var(--accent-red); }
.hero-content h1 .analyze { color: #E6B800; } /* Keep darker yellow */
.hero-content h1 .accelerate { color: var(--accent-green); }

.hero-content p {
    font-size: 1.15rem; /* Existing size */
    line-height: var(--line-height-base); /* Existing line height (e.g., 1.6) */
    max-width: 550px;
    vertical-align: baseline;
    color: var(--neutral-dark);
    margin-bottom: calc(var(--spacing-unit) * 4); /* Existing spacing */
    /* Ensure enough line-height for slightly larger elements */
}

/* Inline Zoho Logo */
.zoho-span {
    display: inline-flex;      /* Use flex to easily align the image vertically */
    align-items: center;      /* Vertically center the image within the span */
    vertical-align: middle;   /* Align the whole span with the middle of the text */
    margin: 0 0.25em;         /* Add small horizontal space around the span (adjust as needed) */
    position: relative;       /* Optional: for fine-tuning position */
    top: -0.05em;             /* Optional: slight nudge upwards if needed */
}

.zoho-logo {
    /* --- KEY CHANGES --- */
    height: 70px;           /* **Crucial**: Set height relative to the paragraph's font size. Adjust multiplier (1.2em, 1.4em) as needed. */
    /* OR use a fixed pixel value that fits well, e.g., height: 22px; */
    width: auto;             /* Maintain aspect ratio */
    vertical-align: middle;  /* Helps alignment within its container (the span) */
    /* Remove any large default margins the image might have */
    margin: 0;
}
.main-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    z-index: 1;
}
.main-image:hover {
    transform: scale(1.03); /* Smaller hover scale */
    box-shadow: var(--box-shadow-hover);
}

/* Accent Shape (Optional) */
.accent-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: rgba(var(--accent-yellow-rgb), 0.2); /* Example */
    border-radius: 50%;
    z-index: 0;
    /* Add :root variable --accent-yellow-rgb: 255, 224, 4; if using rgba */
}


/* Hero Responsive */
@media (max-width: 991.98px) {
    .hero-content h1 { font-size: 2.6rem; }
    .hero-content p { font-size: 1.1rem; }
}

@media (max-width: 767.98px) {
    .hero {
        padding: calc(var(--section-padding-y) * 0.75) 0; /* Responsiveness: Reduced padding */
        min-height: auto; /* Remove min-height */
        text-align: center; /* Center align all hero content */
    }
    .hero-container {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 4); /* 32px */
    }
    .hero-content,
    .hero-image {
        flex-basis: auto; /* Reset basis */
        width: 100%;
        text-align: center;
    }
    .hero-content {
        order: 1;
        margin-bottom: 0; /* Remove bottom margin as gap handles spacing */
    }
    .hero-image {
        order: 2;
        max-width: 450px; /* Limit image size */
        margin: 0 auto; /* Center image */
    }
    .hero-cta {
        order: 3;
        margin-top: calc(var(--spacing-unit) * 3); /* Spacing: 24px */
    }
    .hero-content h1 {
        font-size: 2.3rem; /* Responsiveness: Smaller H1 */
        margin-bottom: calc(var(--spacing-unit) * 2); /* 16px */
    }
     .hero-content h1 span {
        display: inline; /* Allow wrapping */
        margin-bottom: 0;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%; /* Allow wider text */
        font-size: 1.05rem; /* Responsiveness: Slightly smaller P */
        margin-bottom: calc(var(--spacing-unit) * 3); /* 24px */
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-cta .btn-primary {
        width: 90%; /* Responsiveness: Wider button */
        max-width: 300px;
        padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 2.5); /* 12px 20px */
        font-size: 0.95rem;
    }
}

/* ========================================================================
   WhatsApp Link (Keep most styles, minor spacing/size adjustments)
   ======================================================================== */
.whatsapp-link.fixed {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    padding: calc(var(--spacing-unit) * 1.5); /* 12px */
    border-radius: 50px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.whatsapp-link.fixed i {
    font-size: 1.6rem; /* Responsiveness: Slightly smaller icon */
    margin-right: var(--spacing-unit); /* 8px */
}
.whatsapp-link.fixed p {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem; /* Typography: Slightly smaller text */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-right: calc(var(--spacing-unit) * 1.5); /* 12px */
}
.whatsapp-link.fixed:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.35);
}
@keyframes pulse { /* Keep animation */
    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); }
}
.whatsapp-link.fixed { animation: pulse 2s infinite; }

/* Responsive styles */
@media screen and (max-width: 576px) {
    .whatsapp-link.fixed {
        bottom: 20px;
        right: 20px;
        padding: var(--spacing-unit); /* 8px */
    }
    .whatsapp-link.fixed i { font-size: 1.4rem; margin-right: calc(var(--spacing-unit) * 0.75); /* 6px */ }
    .whatsapp-link.fixed p { font-size: 0.8rem; padding-right: var(--spacing-unit); /* 8px */ }
}
@media screen and (max-width: 380px) {
    .whatsapp-link.fixed { border-radius: 50%; padding: calc(var(--spacing-unit) * 1.25); /* 10px */ }
    .whatsapp-link.fixed i { margin-right: 0; }
    .whatsapp-link.fixed p { display: none; }
}

/* ========================================================================
   Section Header Styles (Shared)
   ======================================================================== */
.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 6); /* Spacing: 48px consistent spacing */
}

.section-header h2 {
    font-size: 2.5rem; /* Hierarchy: Consistent H2 size */
    margin-bottom: calc(var(--spacing-unit) * 3); /* Spacing: 24px below H2 */
    position: relative;
    display: inline-block; /* Contain underline */
    padding-bottom: calc(var(--spacing-unit) * 1.25); /* 10px for underline space */
}

/* Underline for Section Headers */
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px; /* Consistency: Standard width */
    height: 4px;
    /* Color will be set by specific section */
}

.section-header .subtitle {
    font-size: 1.1rem; /* Typography */
    color: var(--neutral-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: var(--line-height-base);
}

/* ========================================================================
   About Zoho Section
   ======================================================================== */
.about-zoho {
    /* padding uses .section-padding */
    background-color: var(--white);
    text-align: center;
}

/* Specific H2 color and underline */
.about-zoho .section-header h2 { color: var(--primary-blue); }
.about-zoho .section-header h2::after { background: var(--accent-yellow); }

.zoho-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Responsiveness: Slightly larger min */
    gap: calc(var(--spacing-unit) * 3.75); /* Spacing: 30px */
    text-align: left;
}

.zoho-feature {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5); /* Spacing: 12px between elements */
    background: var(--white);
    border-radius: var(--border-radius);
    padding: calc(var(--spacing-unit) * 3.75); /* Spacing: 30px */
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    border-left: 4px solid transparent; /* Keep placeholder */
}

/* Assign border colors */
.zoho-feature:nth-child(1) { border-left-color: var(--primary-blue); }
.zoho-feature:nth-child(2) { border-left-color: var(--accent-green); }
.zoho-feature:nth-child(3) { border-left-color: var(--accent-yellow); }
.zoho-feature:nth-child(4) { border-left-color: var(--accent-red); }

.zoho-feature i {
    font-size: 2rem; /* Typography: Slightly smaller icon */
    width: 45px;
    line-height: 1;
    margin-bottom: var(--spacing-unit); /* Spacing */
}
/* Assign icon colors */
.zoho-feature:nth-child(1) i { color: var(--primary-blue); }
.zoho-feature:nth-child(2) i { color: var(--accent-green); }
.zoho-feature:nth-child(3) i { color: var(--accent-yellow); }
.zoho-feature:nth-child(4) i { color: var(--accent-red); }

.zoho-feature h3 {
    font-size: 1.3rem; /* Typography: Consistent H3 size */
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: calc(var(--spacing-unit) * 0.5); /* 4px */
    position: relative;
    padding-bottom: var(--spacing-unit); /* 8px */
}
/* Optional: Underline for H3 */
.zoho-feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: currentColor;
}

.zoho-feature p {
    color: var(--neutral-dark);
    line-height: var(--line-height-base);
    font-size: 0.95rem; /* Typography */
    margin-bottom: 0; /* Remove default P margin inside card */
}

.zoho-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

/* About Zoho Responsive */
@media (max-width: 768px) {
    .about-zoho .section-header h2 { font-size: 2.2rem; } /* Responsiveness */
}
@media (max-width: 576px) {
     .zoho-content { grid-template-columns: 1fr; } /* Stack */
     .about-zoho .section-header h2 { font-size: 2rem; }
}


/* ========================================================================
   What We Offer Section
   ======================================================================== */
.what-we-offer {
    /* padding uses .section-padding */
    background-color: var(--neutral-light);
}

/* Specific H2 color and underline */
.what-we-offer .section-header h2 { color: var(--accent-green); }
.what-we-offer .section-header h2::after { background: var(--accent-green); }

.what-we-offer .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Responsiveness */
    gap: calc(var(--spacing-unit) * 3.75); /* Spacing: 30px */
}

.what-we-offer .service-card {
    background-color: var(--white);
    padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 3); /* Spacing: 32px 24px */
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.what-we-offer .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.what-we-offer .service-icon {
    width: 65px; /* Typography: Slightly smaller icon container */
    height: 65px;
    border-radius: 50%;
    margin-bottom: calc(var(--spacing-unit) * 3); /* Spacing: 24px */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-speed);
}
.what-we-offer .service-icon i {
    font-size: 28px; /* Typography */
    color: var(--white);
}
/* Assign Icon Background Colors */
.what-we-offer .service-card:nth-child(1) .service-icon { background-color: var(--primary-blue); }
.what-we-offer .service-card:nth-child(2) .service-icon { background-color: var(--accent-green); }
.what-we-offer .service-card:nth-child(3) .service-icon { background-color: var(--accent-yellow); }
.what-we-offer .service-card:nth-child(4) .service-icon { background-color: var(--accent-red); }

.what-we-offer .service-content h3 {
    font-size: 1.3rem; /* Typography */
    font-weight: 700; /* Hierarchy */
    color: var(--neutral-dark);
    margin-bottom: calc(var(--spacing-unit) * 1.5); /* Spacing: 12px */
}
.what-we-offer .service-content p {
    font-size: 1rem; /* Typography */
    line-height: var(--line-height-base);
    color: var(--neutral-dark);
    flex-grow: 1; /* Helps alignment if text lengths vary */
    margin-bottom: 0; /* Remove default P margin */
}

.what-we-offer .services-cta {
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 6); /* Spacing: 48px */
}

/* What We Offer Responsive */
@media (max-width: 768px) {
    .what-we-offer .section-header h2 { font-size: 2.2rem; }
}
@media (max-width: 576px) {
    .what-we-offer .services-grid { grid-template-columns: 1fr; } /* Stack */
    .what-we-offer .section-header h2 { font-size: 2rem; }
}

/* ========================================================================
   Quote Modal Styles (Keep most styles, minor spacing/typography tweaks)
   ======================================================================== */
.modal {
    display: none; /* Hidden by default, JS controls visibility */
    position: fixed;
    inset: 0; /* top, right, bottom, left = 0 */
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    overflow-y: auto;
    transition: opacity 0.3s ease;
    opacity: 0;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-unit) * 2.5; /* 20px */
}
.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    width: 100%;
    max-width: 550px; /* Keep max-width */
    border-radius: 16px; /* More rounded */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--neutral-dark);
    cursor: pointer;
    transition: all var(--transition-speed);
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.05);
    border-radius: 50%;
    border: none; /* Ensure it's a button */
}
.close-btn:hover {
    color: var(--white);
    background-color: var(--accent-red);
    transform: rotate(90deg);
}

.form-step {
    padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 4.5); /* Spacing: 32px 36px */
    display: none;
    position: relative;
    flex-grow: 1;
    overflow-y: auto;
    animation: fadeIn 0.4s;
}
.form-step.active { display: block; }

/* Step Backgrounds (Keep as is) */
#step1 { background: linear-gradient(135deg, var(--white) 0%, rgba(9, 116, 176, 0.05) 100%); }
#step2 { background: linear-gradient(135deg, var(--white) 0%, rgba(206, 34, 50, 0.05) 100%); }
#step3 { background: linear-gradient(135deg, var(--white) 0%, rgba(33, 158, 74, 0.05) 100%); }
#contact-step { background: linear-gradient(135deg, var(--white) 0%, rgba(255, 224, 4, 0.05) 100%); }

/* Step Headings */
.form-step h2 {
    font-size: 1.8rem; /* Typography: Slightly smaller modal headings */
    margin-bottom: calc(var(--spacing-unit) * 1.5); /* 12px */
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green)); /* Default gradient */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
}
/* Specific gradients (Keep as is) */
#step1 h2 { background-image: linear-gradient(90deg, var(--primary-blue), #3a7fd5); }
#step2 h2 { background-image: linear-gradient(90deg, var(--accent-red), #f54e62); }
#step3 h2 { background-image: linear-gradient(90deg, var(--accent-green), #41b48e); }
#contact-step h2 { background-image: linear-gradient(90deg, var(--accent-yellow), #ffc957); }

/* Step Counter Text */
.form-step > p:first-of-type {
    color: var(--neutral-medium);
    margin-bottom: calc(var(--spacing-unit) * 3); /* Spacing: 24px */
    font-size: 1rem; /* Typography */
}

/* Progress Bar & Dots (Keep as is - visually effective) */
.progress-bar { height: 8px; background-color: var(--neutral-border); border-radius: 4px; margin-bottom: calc(var(--spacing-unit) * 3); overflow: hidden; }
.progress { height: 100%; background: linear-gradient(90deg, var(--primary-blue), var(--accent-red), var(--accent-green), var(--accent-yellow)); border-radius: 4px; transition: width 0.4s ease; background-size: 400% 100%; animation: gradientShift 4s ease infinite; }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.step-indicator { display: flex; justify-content: center; margin-bottom: calc(var(--spacing-unit) * 3.5); /* 28px */ }
.step-dot { width: 12px; height: 12px; border-radius: 50%; background-color: var(--neutral-border); margin: 0 var(--spacing-unit); transition: all 0.3s ease; position: relative; }
.step-dot::before { content: ''; position: absolute; top: 50%; right: 100%; transform: translateY(-50%); height: 2px; width: 16px; background-color: var(--neutral-border); margin-right: 4px; transition: background-color 0.3s ease; }
.step-dot:first-child::before { display: none; }
.step-dot.active { transform: scale(1.3); box-shadow: 0 0 0 3px rgba(255,255,255,0.5), 0 0 0 5px rgba(0,0,0,0.1); }
/* Step-specific dot/line colors (Keep as is) */
#step1 .step-dot:nth-child(1) { background-color: var(--primary-blue); } #step1 .step-dot.active:nth-child(1) { box-shadow: 0 0 0 3px rgba(9, 116, 176, 0.2), 0 0 0 5px rgba(9, 116, 176, 0.1); }
#step2 .step-dot:nth-child(1), #step2 .step-dot:nth-child(2) { background-color: var(--accent-red); } #step2 .step-dot:nth-child(2)::before { background-color: var(--accent-red); } #step2 .step-dot.active:nth-child(2) { box-shadow: 0 0 0 3px rgba(206, 34, 50, 0.2), 0 0 0 5px rgba(206, 34, 50, 0.1); }
#step3 .step-dot:nth-child(1), #step3 .step-dot:nth-child(2), #step3 .step-dot:nth-child(3) { background-color: var(--accent-green); } #step3 .step-dot:nth-child(2)::before, #step3 .step-dot:nth-child(3)::before { background-color: var(--accent-green); } #step3 .step-dot.active:nth-child(3) { box-shadow: 0 0 0 3px rgba(33, 158, 74, 0.2), 0 0 0 5px rgba(33, 158, 74, 0.1); }
#contact-step .step-dot { background-color: var(--accent-yellow); } #contact-step .step-dot::before { background-color: var(--accent-yellow); } #contact-step .step-dot.active:nth-child(4) { box-shadow: 0 0 0 3px rgba(255, 224, 4, 0.2), 0 0 0 5px rgba(255, 224, 4, 0.1); }

/* Form Group & Labels */
.form-group {
    margin-bottom: calc(var(--spacing-unit) * 3); /* Spacing: 24px */
    position: relative;
}
.form-group label {
    display: block;
    margin-bottom: var(--spacing-unit); /* Spacing: 8px */
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1rem; /* Typography */
    position: relative;
    padding-left: 12px;
}
.form-group label::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 16px; background-color: var(--primary-blue); border-radius: 2px; }
/* Step-specific label/accent colors (Keep as is) */
#step2 .form-group label { color: var(--accent-red); } #step2 .form-group label::before { background-color: var(--accent-red); }
#step3 .form-group label { color: var(--accent-green); } #step3 .form-group label::before { background-color: var(--accent-green); }
#contact-step .form-group label { color: var(--accent-yellow); } #contact-step .form-group label::before { background-color: var(--accent-yellow); }

/* Inputs, Textarea, Select */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 2); /* Spacing: 12px 16px */
    border: 2px solid var(--neutral-border);
    border-radius: 10px;
    font-size: 1rem; /* Typography */
    font-family: inherit; /* Ensure correct font */
    transition: all 0.3s;
    background-color: var(--white);
    color: var(--neutral-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.form-group textarea { line-height: var(--line-height-base); } /* Ensure textarea line height is normal */
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }
.form-group input:hover, .form-group textarea:hover, .form-group select:hover { border-color: var(--neutral-medium); }
/* Input Focus Styles (Keep as is) */
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(9, 116, 176, 0.15); }
#step2 .form-group input:focus, #step2 .form-group textarea:focus, #step2 .form-group select:focus { border-color: var(--accent-red); box-shadow: 0 0 0 3px rgba(206, 34, 50, 0.15); }
#step3 .form-group input:focus, #step3 .form-group textarea:focus, #step3 .form-group select:focus { border-color: var(--accent-green); box-shadow: 0 0 0 3px rgba(33, 158, 74, 0.15); }
#contact-step .form-group input:focus, #contact-step .form-group textarea:focus, #contact-step .form-group select:focus { border-color: var(--accent-yellow); box-shadow: 0 0 0 3px rgba(255, 224, 4, 0.15); }

/* Required fields styling */
.form-group textarea:required,
.form-group select:required,
.form-group input:required {
    border-left: 2px solid var(--primary-blue);
}
.form-group label:has(+ :required)::after { /* Add asterisk to labels of required fields */
    content: " *";
    color: var(--accent-red);
    font-weight: normal;
    margin-left: 2px;
}


/* Form Navigation Buttons */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Align buttons vertically */
    margin-top: calc(var(--spacing-unit) * 4); /* Spacing: 32px */
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: var(--spacing-unit); /* Space between buttons if they wrap */
}
.form-nav button {
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3.5); /* Spacing: 12px 28px */
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 0.95rem; /* Typography */
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
/* Hover Effect Overlay (Keep as is) */
.form-nav button::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%; background-color: rgba(255,255,255,0.2); transition: width 0.3s; z-index: -1; }
#contact-step .submit-btn::before { background-color: rgba(0,0,0,0.1); }
.form-nav button:hover::before { width: 100%; }

/* Back Button Style */
.back-btn {
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    order: 1; /* Ensure back button is first */
}
.back-btn:hover { background-color: #e0e0e0; transform: translateX(-2px); }

/* Next/Submit Buttons */
.next-btn, .submit-btn {
    color: var(--white); /* Default white text */
    margin-left: auto; /* Push to right */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    order: 2; /* Ensure next/submit is second */
}
/* Step Specific Colors (Keep as is) */
#step1 .next-btn { background: linear-gradient(90deg, var(--primary-blue), #3a7fd5); color: var(--white); }
#step1 .next-btn:hover { background: linear-gradient(90deg, #075a8f, var(--primary-blue)); transform: translateX(2px); box-shadow: 0 6px 20px rgba(9, 116, 176, 0.3); }
#step2 .next-btn { background: linear-gradient(90deg, var(--accent-red), #f54e62); color: var(--white); }
#step2 .next-btn:hover { background: linear-gradient(90deg, #a71b27, var(--accent-red)); transform: translateX(2px); box-shadow: 0 6px 20px rgba(206, 34, 50, 0.3); }
#step3 .next-btn { background: linear-gradient(90deg, var(--accent-green), #41b48e); color: var(--white); } /* Used next-btn class here */
#step3 .next-btn:hover { background: linear-gradient(90deg, #1a7d3a, var(--accent-green)); transform: translateX(2px); box-shadow: 0 6px 20px rgba(33, 158, 74, 0.3); }
#contact-step .submit-btn { background: linear-gradient(90deg, var(--accent-yellow), #ffc957); color: var(--neutral-dark); }
#contact-step .submit-btn:hover { background: linear-gradient(90deg, #e0a020, var(--accent-yellow)); transform: translateX(2px); box-shadow: 0 6px 20px rgba(255, 224, 4, 0.3); }
.next-btn:active, .submit-btn:active { transform: translateY(1px); box-shadow: 0 2px 10px rgba(0,0,0,0.1); }

/* Success Message Step (Keep most styles) */
#success-step { background: linear-gradient(135deg, rgba(33, 158, 74, 0.05) 0%, rgba(9, 116, 176, 0.08) 100%); display: none; }
#success-step.active { display: block; }
.success-message { text-align: center; padding: calc(var(--spacing-unit) * 6) calc(var(--spacing-unit) * 4); border-radius: 16px; position: relative; color: var(--neutral-dark); }
/* Background pattern (Keep as is) */
.success-message::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230974B0' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"); opacity: 0.8; z-index: -1; border-radius: 16px; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto calc(var(--spacing-unit) * 3); position: relative; animation: successPulse 2s infinite ease-in-out; background: conic-gradient(var(--primary-blue), var(--accent-red), var(--accent-green), var(--accent-yellow), var(--primary-blue)); box-shadow: 0 15px 35px rgba(33, 158, 74, 0.25); }
.success-icon::after { content: "✓"; position: absolute; color: var(--white); font-size: 2.2rem; animation: scaleIn 0.5s ease-out; }
@keyframes successPulse { 0% { box-shadow: 0 0 0 0 rgba(33, 158, 74, 0.4); transform: scale(1); } 70% { box-shadow: 0 0 0 15px rgba(33, 158, 74, 0); transform: scale(1.05); } 100% { box-shadow: 0 0 0 0 rgba(33, 158, 74, 0); transform: scale(1); } }
@keyframes scaleIn { from { transform: scale(0); } to { transform: scale(1); } }
.success-message h2 { margin-bottom: calc(var(--spacing-unit) * 2); font-size: 2rem; background: linear-gradient(90deg, var(--primary-blue), var(--accent-green)); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }
.success-message p { color: var(--neutral-dark); margin-bottom: calc(var(--spacing-unit) * 4); line-height: var(--line-height-base); font-size: 1.05rem; /* Typography */ }
.close-modal-btn { background: var(--accent-green); color: white; border: none; padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 4); border-radius: 50px; font-weight: 600; cursor: pointer; transition: all 0.3s; font-size: 1rem; /* Typography */ box-shadow: 0 8px 20px rgba(33, 158, 74, 0.25); }
.close-modal-btn:hover { background: #1a7d3a; transform: translateY(-3px); box-shadow: 0 12px 25px rgba(33, 158, 74, 0.35); }

/* Form Validation Styles (Keep as is) */
.form-group input.error, .form-group textarea.error, .form-group select.error { border-color: var(--accent-red) !important; animation: shake 0.5s; }
#form-error-message { color: var(--accent-red); background-color: rgba(206, 34, 50, 0.1); border: 1px solid rgba(206, 34, 50, 0.3); border-radius: var(--border-radius); padding: var(--spacing-unit) calc(var(--spacing-unit) * 1.5); font-size: 0.9rem; } /* Style the main error container */
@keyframes shake { 0%, 100% { transform: translateX(0); } 10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); } 20%, 40%, 60%, 80% { transform: translateX(5px); } }


/* Modal Responsive */
@media (max-width: 600px) {
    .modal-content { width: 95%; margin: 10px auto; border-radius: 12px; }
    .form-step { padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2.5); /* 24px 20px */ }
    .form-step h2 { font-size: 1.6rem; } /* Responsiveness */
    .form-nav button { padding: calc(var(--spacing-unit) * 1.25) calc(var(--spacing-unit) * 2.5); /* 10px 20px */ font-size: 0.9rem; }
    .success-message { padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 2.5); /* 32px 20px */ }
    .success-icon { width: 70px; height: 70px; }
    .success-icon::after { font-size: 2rem; }
    .success-message h2 { font-size: 1.8rem; }
}


/* ========================================================================
   Testimonials Section (Placeholder - Assuming exists on another page or will be added)
   ======================================================================== */
/* Styles for .testimonials-section, .clients-heading, .logos-container etc. */
/* Keep original styles if they exist, ensuring spacing/typography match */


/* ========================================================================
   CTA Section (Placeholder - Assuming exists on another page or will be added)
   ======================================================================== */
/* Styles for .cta-section-form, .cta-content, .cta-form etc. */
/* Keep original styles if they exist, ensuring spacing/typography match */


/* ========================================================================
   Footer Styles
   ======================================================================== */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: calc(var(--spacing-unit) * 6) 0 calc(var(--spacing-unit) * 3) 0; /* Spacing: 48px top, 24px bottom */
    font-size: 0.9rem; /* Typography */
    border-top: 4px solid var(--accent-yellow);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: calc(var(--spacing-unit) * 5); /* Spacing: 40px */
    margin-bottom: calc(var(--spacing-unit) * 5); /* Spacing: 40px */
}

.footer-column {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-title {
    font-size: 1.1rem; /* Typography */
    margin-bottom: calc(var(--spacing-unit) * 2.5); /* Spacing: 20px */
    font-weight: 600;
    color: var(--accent-yellow);
    position: relative;
    padding-bottom: calc(var(--spacing-unit) * 1.25); /* 10px */
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-yellow);
}

/* Footer Certifications */
.footer-logo-section .certification-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(var(--spacing-unit) * 1.5); /* Spacing: 12px */
}
.partner-badge, .partner-badgee {
    max-height: 45px;
    width: auto;
    max-width: 150px;
    background-color: var(--white);
    padding: var(--spacing-unit); /* 8px */
    border-radius: 4px;
    display: block;
}
.partner-badgee { max-height: 50px; width: 150px; } /* Specific override */

/* Footer Links */
.footer-links li { margin-bottom: calc(var(--spacing-unit) * 1.25); /* Spacing: 10px */ }
.footer-links a {
    color: var(--footer-text);
    transition: color var(--transition-speed), transform var(--transition-speed); /* Added transform transition */
    display: inline-block;
}
.footer-links a:hover {
    color: var(--accent-yellow);
    transform: translateX(4px); /* Hover effect */
}

/* Footer Contact Info */
.footer-contact-section address { font-style: normal; }
.footer-contact-section p {
    margin-bottom: calc(var(--spacing-unit) * 1.5); /* Spacing: 12px */
    display: flex;
    /* align-items: center; */ /* Align items start for multi-line */
    align-items: flex-start;
    gap: calc(var(--spacing-unit) * 1.25); /* 10px */
    line-height: 1.5; /* Improve readability for multi-line */
}
.footer-contact-section a { color: var(--footer-text); }
.footer-contact-section a:hover { color: var(--accent-yellow); }
.footer-contact-section i {
    color: var(--accent-yellow);
    width: 18px;
    text-align: center;
    font-size: 1rem; /* Typography */
    margin-top: 3px; /* Align icon better with first line */
    flex-shrink: 0; /* Prevent icon shrinking */
}

/* Multi-contact styling */
.multi-contact { display: flex; align-items: flex-start; }
.multi-contact i { margin-top: 3px; margin-right: 8px; }
.contact-group { display: flex; flex-direction: column; /* Stack links vertically */ }
.contact-group a { display: inline-block; margin-bottom: 2px; line-height: 1.4; }

/* Footer Social Icons */
.footer-social-section .social-icons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    gap: calc(var(--spacing-unit) * 1.8); /* Spacing: 15px */
}
.social-icon {
    color: var(--footer-text);
    font-size: 1.3rem; /* Typography */
    transition: color var(--transition-speed), transform var(--transition-speed);
    display: inline-block;
}
.social-icon:hover {
    color: var(--accent-yellow);
    transform: translateY(-3px) scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: calc(var(--spacing-unit) * 3); /* Spacing: 24px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 2); /* Spacing: 16px */
    font-size: 0.85rem; /* Typography */
    color: rgba(255, 255, 255, 0.7);
}
.copyright p { margin: 0; }
.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 var(--spacing-unit); /* 8px */
    transition: color var(--transition-speed);
}
.footer-links-bottom a:hover { color: var(--accent-yellow); }

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content { gap: calc(var(--spacing-unit) * 4); /* 32px */ }
    .footer-column { min-width: 45%; } /* Aim for 2 columns */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .footer-column { min-width: 100%; } /* Stack columns */
}
/* Quick Links Section */
.quick-links {
    background: linear-gradient(135deg, var(--neutral-light) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.quick-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green), var(--accent-red));
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    margin-top: calc(var(--spacing-unit) * 6);
}

.quick-link-card {
    background: var(--white);
    padding: calc(var(--spacing-unit) * 5);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(9, 116, 176, 0.08);
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--neutral-border);
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}

.quick-link-card:hover::before {
    transform: scaleX(1);
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(9, 116, 176, 0.15);
    border-color: var(--primary-blue);
}

.quick-link-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: calc(var(--spacing-unit) * 3);
    transition: all var(--transition-speed) ease;
}

.quick-link-card:hover i {
    color: var(--accent-green);
    transform: scale(1.1);
}

.quick-link-card h3 {
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-size: 1.4rem;
    font-weight: 700;
}

.quick-link-card h3 a {
    color: var(--neutral-dark);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.quick-link-card h3 a:hover {
    color: var(--primary-blue);
}

.quick-link-card p {
    color: var(--neutral-medium);
    margin-bottom: calc(var(--spacing-unit) * 4);
    line-height: 1.7;
    font-size: 0.95rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.link-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    transition: left var(--transition-speed) ease;
    z-index: -1;
}

.link-arrow:hover::before {
    left: 0;
}

.link-arrow:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Related Pages Section */
.related-pages {
    background: linear-gradient(135deg, var(--neutral-light) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.related-pages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green), var(--accent-red));
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 4);
    margin-top: calc(var(--spacing-unit) * 6);
}

.related-link-card {
    background: var(--white);
    padding: calc(var(--spacing-unit) * 5);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(9, 116, 176, 0.08);
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--neutral-border);
    position: relative;
    overflow: hidden;
}

.related-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}

.related-link-card:hover::before {
    transform: scaleX(1);
}

.related-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(9, 116, 176, 0.15);
    border-color: var(--primary-blue);
}

.related-link-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: calc(var(--spacing-unit) * 3);
    transition: all var(--transition-speed) ease;
}

.related-link-card:hover i {
    color: var(--accent-green);
    transform: scale(1.1);
}

.related-link-card h3 {
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-size: 1.4rem;
    font-weight: 700;
}

.related-link-card h3 a {
    color: var(--neutral-dark);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.related-link-card h3 a:hover {
    color: var(--primary-blue);
}

.related-link-card p {
    color: var(--neutral-medium);
    margin-bottom: calc(var(--spacing-unit) * 4);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Enhanced Section Headers for Related Pages */
.quick-links .section-header,
.related-pages .section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 6);
    position: relative;
}

.quick-links .section-header h2,
.related-pages .section-header h2 {
    color: var(--neutral-dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 2);
    position: relative;
    display: inline-block;
}

.quick-links .section-header h2::after,
.related-pages .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    border-radius: 2px;
}

.quick-links .section-header .subtitle,
.related-pages .section-header .subtitle {
    color: var(--neutral-medium);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design for Related Sections */
@media (max-width: 768px) {
    .quick-links-grid,
    .related-links-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 3);
    }
    
    .quick-link-card,
    .related-link-card {
        padding: calc(var(--spacing-unit) * 4);
    }
    
    .quick-link-card i,
    .related-link-card i {
        font-size: 2.5rem;
    }
    
    .quick-links .section-header h2,
    .related-pages .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .link-arrow {
        padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
        font-size: 0.9rem;
    }
}