/* About section - legacy styles kept for backward compatibility */
.about-us-section {
    background: linear-gradient(135deg, #ede9fe 0%, #f9fafb 100%);
    padding: 4rem 0 4rem 0;
}

.about-us-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .about-us-wrapper {
        flex-direction: row;
        align-items: stretch;
        gap: 4rem;
        padding: 0 2rem;
    }
}

.about-us-image {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(124, 58, 237, 0.10), 0 1.5px 8px 0 rgba(0, 0, 0, 0.08);
    border: 4px solid #fff;
    object-fit: cover;
    aspect-ratio: 4/5;
    background: #fff;
}

.about-us-content {
    flex: 2 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    align-items: flex-start;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-title .text-accent {
    background: linear-gradient(90deg, #f59e0b 60%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 2.75rem;
    }
}

.about-description {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 12px 0 rgba(124, 58, 237, 0.06);
    border: 1.5px solid #ede9fe;
    transition: box-shadow 0.2s, border 0.2s;
}

.about-features li svg {
    flex-shrink: 0;
    color: #7c3aed;
}

.about-features li:hover {
    box-shadow: 0 4px 24px 0 #7c3aed22;
    border: 1.5px solid #c4b5fd;
}

.about-cta {
    margin-top: 0.5rem;
}

.about-cta .primary-btn {
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: #fff;
    box-shadow: 0 8px 24px -6px #7c3aed33;
    border: none;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.about-cta .primary-btn:hover {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    transform: scale(1.05);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #374151;
}

/* Professional color palette */
:root {
    --color-bee-primary: #f59e0b;
    /* Amber 500 */
    --color-bee-secondary: #eab308;
    /* Yellow 500 */
    --color-bee-accent: #f97316;
    /* Orange 500 */
    --color-professional-blue: #1e40af;
    /* Blue 700 */
    --color-professional-gray: #374151;
    /* Gray 700 */
    --color-trust-green: #059669;
    /* Emerald 600 */
    --color-purple: #7c3aed;
    /* Purple 600 */
}

/* Utility Classes */
.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.hidden {
    display: none !important;
}

/* Text Colors */
.text-accent {
    color: var(--color-bee-primary);
}

.text-blue {
    color: var(--color-professional-blue);
}

.text-green {
    color: var(--color-trust-green);
}

.text-purple {
    color: var(--color-purple);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .header-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 0 2rem;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    position: relative;
    height: 3rem;
}

.logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-height: 3rem;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show logo1 (for blue/transparent header) when NOT scrolled */
.header:not(.scrolled) .logo-default {
    opacity: 1;
    visibility: visible;
}

.header:not(.scrolled) .logo-scrolled {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Show logo2 (for white header) when scrolled */
.header.scrolled .logo-default {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.header.scrolled .logo-scrolled {
    opacity: 1;
    visibility: visible;
}

/* --- Desktop Navigation --- */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.nav-link:hover {
    transform: scale(1.05);
}

.header:not(.scrolled) .nav-link {
    color: white;
}

.header:not(.scrolled) .nav-link:hover {
    color: #fcd34d;
}

.header.scrolled .nav-link {
    color: #374151;
}

.header.scrolled .nav-link:hover {
    color: var(--color-bee-primary);
}

.chevron-down {
    transition: transform 0.3s ease;
}

.dropdown-container:hover .chevron-down {
    transform: rotate(180deg);
}


/* ================================================================
   5. SERVICES DROPDOWN - TWO LEVEL DESIGN
   ================================================================ */

/* --- Dropdown Container --- */
.services-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(-50%) translateY(0.5rem);
}

.dropdown-container:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Arrow Indicator */
/* .services-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    z-index: 1001;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
} */

/* --- Two Level Content Container --- */
.two-level-content {
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    width: 70vw;
    max-width: 900px;
    max-height: 500px;
    position: relative;
    z-index: 1000;
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden;
}

/* --- Left Panel: Main Categories --- */
.main-categories {
    background: #f8fafc;
    border-right: 1px solid #e5e7eb;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.main-categories-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    padding: 0.75rem 1rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border-radius: 0.375rem;
    white-space: nowrap;
    min-height: 3rem;
}

.category-item:hover,
.category-item.active {
    background: #ffffff;
    border-left-color: var(--color-bee-primary);
    color: var(--color-bee-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-icon {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6b7280;
    transition: all 0.3s ease;
    background: #e5e7eb;
    border-radius: 0.25rem;
}

.category-item:hover .category-icon,
.category-item.active .category-icon {
    color: white;
    background: var(--color-bee-primary);
    transform: scale(1.05);
}

.category-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    flex: 1;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-item:hover span,
.category-item.active span {
    color: var(--color-bee-primary);
    font-weight: 600;
}

.arrow-right {
    color: #9ca3af;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}

.category-item:hover .arrow-right,
.category-item.active .arrow-right {
    color: var(--color-bee-primary);
    transform: translateX(0.125rem);
}

/* --- Right Panel: Sub Services --- */
.sub-services-panel {
    padding: 0.75rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.sub-services-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sub-category-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.sub-category-title svg {
    color: var(--color-bee-primary);
    width: 20px;
    height: 20px;
}

/* --- Sub Services Grid --- */
.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0 1rem 1rem 1rem;
    max-height: 420px;
    overflow-y: auto;
}

/* Custom Scrollbar */
.sub-services-grid::-webkit-scrollbar {
    width: 6px;
}

.sub-services-grid::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 3px;
}

.sub-services-grid::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.sub-services-grid::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* --- Sub Service Items --- */
.sub-service-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.sub-service-item:hover {
    background: #fef3c7;
    border-color: #fde68a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.sub-service-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef3c7;
    border-radius: 0.25rem;
    flex-shrink: 0;
    color: var(--color-bee-primary);
    transition: all 0.3s ease;
}

.sub-service-item:hover .sub-service-icon {
    background: var(--color-bee-primary);
    color: white;
    transform: scale(1.1);
}

.sub-service-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    transition: color 0.3s ease;
    flex: 1;
}

.sub-service-item:hover .sub-service-name {
    color: var(--color-bee-primary);
    font-weight: 600;
}

/* --- Dropdown Responsive Design --- */
@media (max-width: 900px) {
    .two-level-content {
        width: 90vw;
        grid-template-columns: 250px 1fr;
    }

    .sub-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .two-level-content {
        width: 95vw;
        grid-template-columns: 1fr;
        max-height: 70vh;
        overflow-y: auto;
    }

    .main-categories {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 1rem 0;
    }

    .category-item {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .sub-services-panel {
        padding: 1.5rem;
    }

    .sub-services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .sub-service-item {
        padding: 0.5rem;
    }

    .sub-service-name {
        font-size: 0.8125rem;
    }
}


/* ================================================================
   6. HEADER ACTIONS
   ================================================================ */

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header:not(.scrolled) .phone-link {
    color: #fcd34d;
}

.header:not(.scrolled) .phone-link:hover {
    color: white;
}

.header.scrolled .phone-link {
    color: var(--color-bee-primary);
}

.header.scrolled .phone-link:hover {
    color: #92400e;
}

.cta-btn {
    background: var(--color-bee-primary);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn:hover {
    background: #d97706;
    transform: scale(1.05);
}


/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.header:not(.scrolled) .mobile-menu-btn {
    color: white;
}

.header:not(.scrolled) .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .mobile-menu-btn {
    color: #374151;
}

.header.scrolled .mobile-menu-btn:hover {
    background: #f3f4f6;
}

/* ========================================
   MOBILE MENU - TREE STRUCTURE
   ======================================== */

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid #e5e7eb;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-content {
    padding: 0.75rem;
}

/* Mobile Menu Item Container */
.mobile-menu-item {
    margin-bottom: 0.25rem;
}

/* Regular Nav Links */
.mobile-nav-link {
    display: block;
    padding: 0.875rem 1rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--color-bee-primary);
    background: #fef3c7;
    transform: translateX(4px);
}

/* Mobile Menu Toggle Buttons */
.mobile-menu-toggle,
.mobile-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: #f9fafb;
    border: none;
    border-radius: 0.5rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.mobile-menu-toggle:hover,
.mobile-submenu-toggle:hover {
    background: #f3f4f6;
    border-color: var(--color-bee-primary);
    color: var(--color-bee-primary);
}

.mobile-menu-toggle.active,
.mobile-submenu-toggle.active {
    background: #fef3c7;
    border-color: var(--color-bee-primary);
    color: var(--color-bee-primary);
}

/* Nested Toggle Buttons */
.mobile-submenu-toggle {
    background: #fff;
    border: 1px solid #e5e7eb;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 0.875rem;
    gap: 0.5rem;
}

.mobile-submenu-toggle-nested {
    background: #fafafa;
    font-size: 0.875rem;
    padding: 0.625rem 0.75rem;
}

/* Chevron Icons */
.mobile-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: #6b7280;
}

.mobile-menu-toggle.active .mobile-chevron,
.mobile-submenu-toggle.active .mobile-chevron {
    transform: rotate(90deg);
    color: var(--color-bee-primary);
}

/* Menu Icons */
.mobile-menu-icon {
    flex-shrink: 0;
    color: #9ca3af;
}

.mobile-submenu-toggle.active .mobile-menu-icon {
    color: var(--color-bee-primary);
}

/* Submenu Containers */
.mobile-submenu {
    display: none;
    padding-left: 0;
    margin-top: 0.5rem;
    overflow: hidden;
}

.mobile-submenu.open {
    display: block;
    animation: slideDown 0.3s ease-out;
}

/* Nested Submenus */
.mobile-submenu-nested {
    padding-left: 0.75rem;
    /* border-left: 2px solid #e5e7eb; */
}

.mobile-submenu-deep {
    padding-left: 1rem;
    border-left: 2px solid #fde68a;
}

/* Service Links in Submenus */
.mobile-service-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.mobile-service-link:hover,
.mobile-service-link:active {
    color: var(--color-bee-primary);
    background: #fef3c7;
    transform: translateX(4px);
}

.mobile-link-icon {
    flex-shrink: 0;
    color: #d1d5db;
}

.mobile-service-link:hover .mobile-link-icon {
    color: var(--color-bee-primary);
}

/* CTA Button */
.mobile-menu-cta {
    padding: 1rem 0.5rem 0.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.mobile-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-bee-primary), var(--color-bee-secondary));
    color: white;
    border: none;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}

.mobile-cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 8px -1px rgba(245, 158, 11, 0.4);
}

/* Slide Down Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 1000px;
    }
}

/* Scrollbar Styling for Mobile Menu */
.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Spacing between nested levels */
.mobile-menu-item .mobile-menu-item {
    margin-bottom: 0.5rem;
}

.mobile-submenu .mobile-menu-item:last-child {
    margin-bottom: 0;
}



.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 5rem;
    width: 100%;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #0f172a 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0.2;
}

/* Floating Animated Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(20px);
}

.floating-1 {
    top: 8rem;
    left: 5%;
    width: 12rem;
    height: 12rem;
    background: radial-gradient(circle, var(--color-bee-primary), var(--color-bee-secondary));
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    top: 20%;
    right: 8%;
    width: 8rem;
    height: 8rem;
    background: radial-gradient(circle, #fbbf24, #f59e0b);
    animation: float 5s ease-in-out infinite 1s;
}

.floating-3 {
    bottom: 10%;
    left: 15%;
    width: 10rem;
    height: 10rem;
    background: radial-gradient(circle, #fcd34d, #fbbf24);
    animation: float 7s ease-in-out infinite 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -20px) scale(1.1);
    }

    50% {
        transform: translate(-15px, -40px) scale(0.9);
    }

    75% {
        transform: translate(15px, -25px) scale(1.05);
    }
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    height: 100%;
    display: flex;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 3rem 2rem;
    }
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    animation: slideInFromLeft 1s ease-out;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 1.5rem;
}

.trust-badge svg {
    color: #fbbf24;
    fill: #fbbf24;
}

.trust-badge span {
    color: #fcd34d;
    font-size: 0.875rem;
    font-weight: 500;
}


.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    overflow: visible;
    word-wrap: normal;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.25rem;
        line-height: 1.25;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4.25rem;
    }
}

.hero-main-line {
    color: white;
    font-weight: 700;
    font-size: 3rem;
    display: block;
    /* margin-bottom: 0.75rem; */
    animation: slideInFromLeft 0.8s ease-out;
}

.hero-highlight-line {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: slideInFromRight 0.8s ease-out, shimmer 3s ease-in-out infinite;
    font-weight: 900;
    display: block;
    font-size: 3.2rem;
    overflow: visible;
    white-space: normal;
    line-height: 1.2;
}

@media (max-width: 580px) {

    .hero-highlight-line,
    .hero-main-line {
        font-size: 1.5rem;
    }
    .typewriter-text {
        font-size: 1.5rem !important;
    }
    .typewriter-cursor {
        font-size: 1.5rem !important;
    }


}

@media (max-width: 1024px) {
    .scroll-indicator {
        bottom: 0.1rem !important;
        left: 0% !important;
        animation: bounce 2s ease-in-out infinite !important;
        will-change: transform !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

.hero-highlight-line br {
    display: block;
    content: "";
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.hero-highlight-line br+span {
    display: inline;
    white-space: nowrap;
}

.typewriter-wrapper {
    display: inline;
    white-space: nowrap;
    line-height: 1;
}

.typewriter-text {
    display: inline;
    white-space: nowrap;
    overflow: visible;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s ease-in-out infinite;
    font-weight: 900;
    font-size: 3.2rem;
    line-height: 1.2;
    vertical-align: baseline;
}



.typewriter-cursor {
    display: inline;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 3.2rem;
    line-height: 1.2;
    animation: blink 1s infinite;
    margin-left: 2px;
    vertical-align: baseline;
}



@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}


.hero-description {
    font-size: 1.125rem;
    color: #e5e7eb;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-bee-primary), var(--color-bee-secondary));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
}

.primary-btn svg {
    transition: transform 0.3s ease;
}

.primary-btn:hover svg {
    transform: translateX(0.25rem);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
}

@media (min-width: 640px) {
    .secondary-btn {
        text-align: left;
        width: auto;
    }
}

.secondary-btn:hover {
    background: white;
    color: #1f2937;
    transform: scale(1.05);
    text-decoration: none;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.trust-item svg {
    color: #10b981;
}

/* Hero Stats */
.hero-stats {
    animation: slideInFromRight 1s ease-out 0.3s both;
}

.stats-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 500;
}

.stats-testimonial {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.rating-stars svg {
    color: #fbbf24;
}

.stats-testimonial p {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    /* left: 50%; */
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
    will-change: transform;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: white;
    border-radius: 9999px;
    margin-top: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}


/* Section Styles */
section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-badge.blue {
    background: #dbeafe;
}

.section-badge.green {
    background: #d1fae5;
}

.section-badge.purple {
    background: #ede9fe;
}

.section-badge span {
    color: #92400e;
    font-size: 0.875rem;
    font-weight: 500;
}

.section-badge.blue span {
    color: var(--color-professional-blue);
}

.section-badge.green span {
    color: var(--color-trust-green);
}

.section-badge.purple span {
    color: var(--color-purple);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .section-title {
        font-size: 3.25rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: #f9fafb;
}

/* Services Slider Container */
.services-slider-container {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}

.services-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
    perspective: 1200px;
    transition: transform 0.5s ease-in-out;
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Services Navigation Buttons */
.services-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 1rem;
}

.services-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #1f2937;
}

.services-nav-btn:hover:not(:disabled) {
    background: #fff;
    border-color: #3b82f6;
    color: #3b82f6;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.services-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.services-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* See More Button */
.services-see-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.services-see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.services-see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.services-see-more-btn:active {
    transform: translateY(0);
}

.services-see-more-btn svg {
    transition: transform 0.3s ease;
}

.services-see-more-btn:hover svg {
    transform: translateX(4px);
}

/* Mobile Styles */
@media (max-width: 767px) {
    .services-navigation {
        padding: 0 0.5rem;
    }

    .services-nav-btn {
        width: 40px;
        height: 40px;
    }

    .services-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .services-see-more-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .services-grid {
        gap: 1.5rem;
    }
}

/* Services cards — new layout */
.service-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 24px 24px 20px 24px;
    overflow: hidden;
    cursor: default;
    transition: box-shadow .25s ease, transform .25s ease;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.06);
    border: 1px solid #eef2f7;
}

.service-card.hovered {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(2, 6, 23, 0.12);
}

.svc-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #3b82f6;
    /* default, overridden by accents */
}

/* Accent color themes */
.accent-blue .svc-top-accent {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.accent-green .svc-top-accent {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.accent-purple .svc-top-accent {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.accent-orange .svc-top-accent {
    background: linear-gradient(90deg, #f97316, #fb923c);
}

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.service-icon-container {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
}

.accent-blue .service-icon-container {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
}

.accent-green .service-icon-container {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
}

.accent-purple .service-icon-container {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    color: #fff;
}

.accent-orange .service-icon-container {
    background: linear-gradient(135deg, #c2410c, #f97316);
    color: #fff;
}

.service-icon-container svg {
    width: 32px;
    height: 32px;
    color: currentColor;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 8px 0 8px;
    letter-spacing: -0.01em;
}

.service-card-desc {
    color: #475569;
    line-height: 1.7;
    min-height: 48px;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.service-category {
    font-size: .875rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    background: #3b82f6;
    color: #fff;
}

.accent-green .service-category {
    background: #10b981;
    color: #fff;
}

.accent-purple .service-category {
    background: #8b5cf6;
    color: #fff;
}

.accent-orange .service-category {
    background: #f97316;
    color: #fff;
}

.service-learn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ea580c;
    font-weight: 600;
    text-decoration: none;
}

.service-learn svg {
    stroke: currentColor;
}

.services-cta {
    margin-top: 3rem;
}

.cta-content {
    background: linear-gradient(to right, #0f172a, #1e293b);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333333%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.cta-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: var(--color-bee-primary);
    transform: rotate(12deg) translateX(25%) translateY(-25%);
    border-radius: 1.5rem;
    opacity: 0.1;
    z-index: 1;
}

.cta-content>* {
    position: relative;
    z-index: 10;
}

.cta-content h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-bee-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-button:hover {
    background: #d97706;
    transform: scale(1.05);
}

/* News & Updates Section */
.news-updates {
    padding: 5rem 0;
    background: #f9fafb;
}

.section-badge.amber {
    background: #fef3c7;
}

.section-badge.amber span {
    color: #92400e;
}

.news-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.news-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.news-category.gst {
    background: #fef3c7;
    color: #92400e;
}

.news-category.tax {
    background: #fef3c7;
    color: #92400e;
}

.news-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 8rem;
    background: #f3f4f6;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    color: #9ca3af;
}

.news-content {
    position: relative;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.news-date svg {
    width: 16px;
    height: 16px;
}

.news-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.news-author svg {
    width: 16px;
    height: 16px;
}

.news-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.news-stats>span {
    margin-left: 0.25rem;
    margin-right: 0.5rem;
}

.news-stats svg {
    width: 16px;
    height: 16px;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-bee-primary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: #d97706;
    transform: translateX(0.25rem);
}

.news-read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.news-read-more:hover svg {
    transform: translateX(0.25rem);
}

.news-cta {
    text-align: center;
    margin-top: 3rem;
}

.explore-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-bee-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
}

.explore-more-btn:hover {
    background: #d97706;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.4);
}

.explore-more-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.explore-more-btn:hover svg {
    transform: translateX(0.25rem);
}

/* Why Choose Us Section */
.features-grid {
    display: grid;
    gap: 2.5rem 2rem;
    margin-bottom: 5rem;
    grid-template-columns: 1fr;
    justify-items: center;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}


/* Why Choose Us Feature Card */
.feature-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 30px -10px rgba(2, 6, 23, 0.16), 0 2px 10px rgba(2, 6, 23, 0.06);
    border: 1px solid rgba(30, 64, 175, 0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 320px;
    /* max-width: 370px; */
    min-height: 220px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: 0 24px 50px -12px rgba(30, 64, 175, 0.22), 0 8px 24px rgba(2, 6, 23, 0.10);
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(30, 64, 175, 0.18);
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.06);
}

/* Card 3D pop and color accent on hover */
.service-card.hovered {
    transform: translateY(-10px) rotate3d(1, 1, 0, 7deg) scale(1.045);
    box-shadow: 0 32px 64px -12px rgba(2, 6, 23, 0.22), 0 4px 16px rgba(59, 130, 246, 0.10);
    z-index: 2;
}

.service-card.hovered .service-icon-container {
    filter: brightness(1.15) saturate(1.2);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.10);
    transform: scale(1.08) rotate(-4deg);
}

.accent-blue .service-card.hovered .service-icon-container {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.accent-green .service-card.hovered .service-icon-container {
    background: linear-gradient(135deg, #059669, #047857);
}

.accent-purple .service-card.hovered .service-icon-container {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.accent-orange .service-card.hovered .service-icon-container {
    background: linear-gradient(135deg, #ea580c, #f59e42);
}

.service-card.hovered .service-card-title {
    color: #ea580c;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(234, 88, 12, 0.08);
}

.accent-green .service-card.hovered .service-card-title {
    color: #059669;
}

.accent-purple .service-card.hovered .service-card-title {
    color: #7c3aed;
}

.accent-blue .service-card.hovered .service-card-title {
    color: #2563eb;
}

.service-card-top-arrow {
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), color 0.2s;
    color: #eab308;
}

.service-card.hovered .service-card-top-arrow {
    transform: translateX(6px) scale(1.18) rotate(12deg);
    color: #ea580c;
    filter: drop-shadow(0 2px 4px rgba(234, 88, 12, 0.12));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon {
    background: #2563eb;
    border-radius: 18px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px 0 rgba(37, 99, 235, 0.10);
}

.feature-icon svg {
    color: #fff;
    width: 32px;
    height: 32px;
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    text-align: center;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: var(--color-professional-blue);
}

.feature-desc {
    color: #4b5563;
    font-size: 1.08rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.trust-indicators-section {
    margin-top: 5rem;
}

.trust-stats {
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
    border-radius: 1rem;
    padding: 2rem;
    display: grid;
    gap: 2rem;
    text-align: center;
}

/* Trust stat items - add card-like elevation */
.trust-stat {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.25rem 1rem;
    box-shadow: 0 10px 25px -12px rgba(2, 6, 23, 0.18), 0 2px 8px rgba(2, 6, 23, 0.06);
    border: 1px solid rgba(30, 64, 175, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.trust-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px -14px rgba(30, 64, 175, 0.22), 0 10px 20px rgba(2, 6, 23, 0.10);
    border-color: rgba(30, 64, 175, 0.16);
}

@media (min-width: 768px) {
    .trust-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* .trust-stat intentionally inherits from number/label rules */

.trust-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--color-professional-blue);
    margin-bottom: 0.5rem;
}

.trust-label {
    color: #6b7280;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f9fafb 0%, #dbeafe 100%);
    overflow-x: hidden;
}

.testimonial-carousel {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    overflow-x: hidden;
}

.testimonial-container {
    position: relative;
    overflow: visible;
    overflow-x: hidden;
    overflow-y: visible;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    margin: 0 1rem;
    min-height: 450px;
    max-height: 450px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-quote-icon {
    width: 4rem;
    height: 4rem;
    min-height: 4rem;
    background: linear-gradient(135deg, var(--color-trust-green), #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.testimonial-quote-icon svg {
    color: white;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    min-height: 24px;
}

.testimonial-rating svg {
    color: #fbbf24;
}

.testimonial-content {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
    font-style: italic;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: center;
}

.testimonial-more {
    color: var(--color-trust-green);
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
    display: inline;
    position: relative;
    white-space: nowrap;
}

.testimonial-more:hover {
    color: #059669;
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    min-height: 4rem;
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.testimonial-client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
    width: 100%;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin: 0;
    text-align: center;
}

.testimonial-role {
    color: var(--color-trust-green);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin: 0;
    font-size: 1rem;
    text-align: center;
}

/* Tooltip for full message */
.testimonial-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: #1f2937;
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    width: auto;
    max-width: min(calc(100vw - 2rem), 500px);
    min-width: 200px;
    height: auto;
    max-height: none;
    min-height: auto;
    overflow: visible;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-align: left;
    box-sizing: border-box;
    display: block;
}

/* Custom scrollbar for tooltip */
.testimonial-tooltip::-webkit-scrollbar {
    width: 6px;
}

.testimonial-tooltip::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.testimonial-tooltip::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.testimonial-tooltip::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.testimonial-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #1f2937;
    transition: left 0.3s ease, right 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

/* When tooltip is right-aligned */
.testimonial-tooltip.tooltip-right::after {
    left: auto;
    right: 20px;
    transform: translateX(0);
}

/* When tooltip is below the button (mobile) */
.testimonial-tooltip.tooltip-below::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: #1f2937;
}

.testimonial-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {
    .testimonial-tooltip {
        max-width: calc(100vw - 2rem);
        min-width: 200px;
        width: auto;
        height: auto;
        max-height: none;
        min-height: auto;
        font-size: 0.75rem;
        line-height: 1.4;
        padding: 0.625rem 0.875rem;
        left: 50%;
        transform: translateX(-50%) translateY(-5px);
        right: auto;
        box-sizing: border-box;
        overflow: visible;
        overflow-y: visible;
        overflow-x: visible;
        display: block;
        margin: 0;
        word-spacing: normal;
        letter-spacing: normal;
        position: absolute;
        z-index: 10000;
        pointer-events: auto;
    }

    .testimonial-more {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        user-select: none;
    }

    .testimonial-tooltip.show {
        transform: translateX(-50%) translateY(0);
    }

    .testimonial-tooltip::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
        min-height: 500px;
        max-height: 500px;
        height: 500px;
    }

    .testimonial-quote-icon {
        width: 3rem;
        height: 3rem;
        min-height: 3rem;
        aspect-ratio: 1;
        margin-bottom: 1rem;
    }

    .testimonial-quote-icon svg {
        width: 24px;
        height: 24px;
    }

    .testimonial-rating {
        margin-bottom: 1rem;
    }

    .testimonial-rating svg {
        width: 20px;
        height: 20px;
    }

    .testimonial-content {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        hyphens: auto;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 0;
        overflow: visible;
        margin-bottom: 0.5rem;
    }

    .testimonial-client {
        flex-shrink: 0;
        margin-top: auto;
        padding-top: 1rem;
    }

    .testimonial-avatar {
        width: 3rem;
        height: 3rem;
        min-width: 3rem;
        min-height: 3rem;
        font-size: 1rem;
    }

    .testimonial-name {
        font-size: 1.1rem;
    }

    .testimonial-role {
        font-size: 0.9rem;
    }

    .testimonial-more {
        display: inline;
        word-break: keep-all;
        white-space: nowrap;
    }
}

.carousel-btn {
    position: absolute;
    top: 10%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #f9fafb;
    border-color: var(--color-trust-green);
    color: var(--color-trust-green);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-trust-green);
    transform: scale(1.25);
}

.carousel-dot:hover {
    background: #9ca3af;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.contact-content {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    align-items: stretch; /* Ensure equal height columns */
}

.contact-form-container,
.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .contact-content {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .contact-section {
        min-height: 100vh;
        padding: 1rem 0;
    }

    .contact-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .contact-card {
        margin: 0;
        border-radius: 0.75rem;
    }

    .card-header {
        padding: 1rem;
    }

    .card-header h3 {
        font-size: 1.125rem;
    }

    .card-content {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
        min-height: 3.5rem;
        max-height: 6rem;
    }

    .submit-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .contact-cards {
        gap: 0.75rem;
    }

    .info-card {
        padding: 1rem;
    }

    .info-icon {
        width: 2.25rem;
        height: 2.25rem;
    }

    .info-content h3 {
        font-size: 0.95rem;
    }

    .info-content p {
        font-size: 0.8rem;
    }

    .info-content a,
    .info-content span {
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .contact-section {
        min-height: 100vh;
        padding: 1.5rem 0;
    }

    .contact-content {
        gap: 2rem;
        padding: 0 2rem;
    }

    .contact-card {
        max-width: 600px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .info-card {
        padding: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .contact-section {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }

    .contact-card {
        margin: 0;
        max-width: none;
    }
}

@media (min-width: 1280px) {
    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-content {
        gap: 4rem;
    }
}

/* About Us Section */
.about-us-section {
    background: linear-gradient(135deg, #ede9fe 0%, #f9fafb 100%);
    padding: 5rem 0;
}

.about-us-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .about-us-wrapper {
        flex-direction: row;
        align-items: stretch;
        gap: 5rem;
    }
}

.about-us-image {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.15);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-us-content {
    flex: 2 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 2.75rem;
    }
}

.about-description {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 480px) {
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
    background: #f3f4f6;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    transition: background 0.2s;
}

.about-features li svg {
    flex-shrink: 0;
    color: #7c3aed;
}

.about-features li:hover {
    background: #ede9fe;
}

.about-cta {
    margin-top: 1rem;
}

.about-cta .primary-btn {
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: #fff;
    box-shadow: 0 8px 24px -6px #7c3aed33;
    border: none;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.about-cta .primary-btn:hover {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    transform: scale(1.05);
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* .contact-form-container removed: contact layout handled by grid and .contact-card */

.contact-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(124, 58, 237, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Fill container height */
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.15);
}

@media (min-width: 1024px) {
    .contact-card {
        margin: 0;
        max-width: none;
    }
}

.card-header {
    padding: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.card-content {
    padding: 1.5rem;
    flex: 1; /* Fill remaining space in card */
    display: flex;
    flex-direction: column;
}

/* .contact-form wrapper not needed; inputs styled directly */

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 4.5rem;
    max-height: 8rem;
}

/* Error Message Styles */
.error-message {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    min-height: 1rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* Searchable Select Styles */
.searchable-select {
    position: relative;
    width: 100%;
}

.searchable-select input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.searchable-select input:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.searchable-select input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.select-dropdown.show {
    display: block;
}

.select-option {
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f3f4f6;
}

.select-option:last-child {
    border-bottom: none;
}

.select-option:hover {
    background-color: #f9fafb;
}

.select-option.selected {
    background-color: var(--color-purple);
    color: white;
}

.select-option.highlighted {
    background-color: #ede9fe;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-purple), #8b5cf6);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.submit-btn.validation-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #9ca3af;
}

.submit-btn.validation-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Loading spinner animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(8px);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-icon svg {
    color: var(--color-trust-green);
}

.success-message h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #6b7280;
}

/* Contact Info Cards */
/* .contact-info wrapper not needed; using .contact-cards for layout */

.contact-cards {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    height: 100%; /* Match parent height */
    align-content: start; /* Align cards to top but fill available space */
}

@media (min-width: 640px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.info-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 0, 0, 0.1);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card.purple .info-icon {
    background: linear-gradient(135deg, var(--color-purple), #8b5cf6);
}

.info-card.blue .info-icon {
    background: linear-gradient(135deg, var(--color-professional-blue), #3b82f6);
}

.info-card.green .info-icon {
    background: linear-gradient(135deg, var(--color-trust-green), #10b981);
}

.info-card.amber .info-icon {
    background: linear-gradient(135deg, var(--color-bee-primary), var(--color-bee-secondary));
}

.info-icon svg {
    color: white;
}

.info-content h3 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.info-content a {
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card.purple .info-content a {
    color: var(--color-purple);
}

.info-card.blue .info-content a {
    color: var(--color-professional-blue);
}

.info-card.green .info-content span {
    color: var(--color-trust-green);
    font-weight: 500;
}

.info-card.amber .info-content span {
    color: var(--color-bee-primary);
    font-weight: 500;
}

.info-content a:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
}

.newsletter-section {
    border-bottom: 1px solid #374151;
}


.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .newsletter-content {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
        justify-content: space-between;
        padding: 3rem 0;
    }
}

.newsletter-text h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: #9ca3af;
}


.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

@media (min-width: 480px) {
    .newsletter-form {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
}


.newsletter-form input {
    flex: 1 1 0%;
    padding: 0.75rem 1rem;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-bee-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}


.newsletter-btn {
    background: linear-gradient(135deg, var(--color-bee-primary), var(--color-bee-secondary));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}

@media (min-width: 480px) {
    .newsletter-btn {
        width: auto;
        min-width: 120px;
    }
}

.newsletter-btn:hover {
    transform: scale(1.05);
}


.footer-main {
    padding: 2.5rem 0;
}


.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

/* .footer-company wrapper inherits default styles */


.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    height: 3rem;
}

.footer-logo-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-height: 3rem;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-item svg {
    color: var(--color-bee-primary);
}

.contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

.contact-item span {
    color: #d1d5db;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-bee-primary);
    transform: scale(1.1);
}


.footer-section h4 {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}


.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateX(0.25rem);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 1.5rem 0;
}


.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 600px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

@media (min-width: 480px) {
    .footer-links {
        flex-direction: row;
        gap: 1.5rem;
        align-items: unset;
    }
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}





/* Policy page hero alignment fix */
.breadcrumb-area.section-padding.img-bg-2 {
    /* display: flex; */
    align-items: center;
    min-height: 280px;
    position: relative;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /* padding-top: 32px; */
    padding-bottom: 32px;
    padding-left: 30px;
}

.section-heading {
    margin-bottom: 0.5rem;
}

.section__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #142454;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.section__title_hero {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.generic-list-item-white.generic-list-item-arrow {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #fff;
    gap: 0.5rem;
}

.generic-list-item-white li,
.generic-list-item-white li a {
    color: #fff !important;
    opacity: 0.92;
    font-weight: 500;
}

.generic-list-item-arrow li {
    position: relative;
    padding-left: 16px;
    margin-left: 0;
}

.generic-list-item-arrow li:first-child {
    padding-left: 0;
}

.generic-list-item-arrow li::after {
    content: '\203A';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-size: 1.1em;
    font-weight: bold;
    opacity: 0.7;
}

.generic-list-item-arrow li:first-child::after {
    display: none;
}

/*============= img-bg =================*/
.img-bg,
.img-bg-2,
.img-bg-3,
.pattern-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.img-bg {
    background-image: url(../images/img7.jpg);
}

.img-bg-2 {
    background-image: url("../images/breadcrumb-bg.jpg");
}

.img-bg-3 {
    background-image: url("../images/breadcrumb-bg-2.jpg");
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #000;
    opacity: .8;
}

.pattern-bg {
    background-image: url("../images/pattern.png");
}