/* ===================================
   AVNI & ASSOCIATES - Home Page Styles
   =================================== */

:root {
    --primary-color: #1a365d;
    --primary-dark: #0f2744;
    --primary-light: #e8eef7;
    --secondary-color: #0ca350;
    --accent-gold: #35f48b;
    --accent-gold-1: #FFA726;
    --accent-green: #2a9d8f;

    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0f0f0;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;

    --gradient-primary: linear-gradient(135deg, #0ca350 0%, #35f48b 100%);
    /* --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2c5282 100%); */
    --gradient-brand: linear-gradient(135deg, #0ca350 0%, #1a365d 100%);

    --font-primary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition-normal: 0.3s ease;
    --radius-md: 12px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

/* ===================================
   MODERN NAVBAR (bulksmswale-style)
   =================================== */

.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    background: rgba(255, 255, 255, 0.98);
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    border-bottom-color: rgba(26, 54, 93, 0.1);
}

.modern-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--dark-gray);
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: translateY(-2px);
    color: var(--dark-gray);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 0.1rem; */
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    background: var(--secondary-color);
}

/* Navbar dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 260px;
    max-width: 320px;
    padding: 0.5rem 0;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid var(--light-gray);
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.25rem;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.dropdown-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: rgba(26, 54, 93, 0.06);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.dropdown-item::after {
    display: none;
}

/* Nested dropdown (submenu) */
.dropdown-item.has-submenu {
    position: relative;
    justify-content: space-between;
    cursor: default;
}
.dropdown-item.has-submenu > span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.dropdown-item.has-submenu > span i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.dropdown-item.has-submenu > i.fa-chevron-right {
    font-size: 0.65rem;
    color: var(--dark-gray);
    flex-shrink: 0;
}
.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 260px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-left: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 101;
    border: 1px solid var(--light-gray);
}
.dropdown-item.has-submenu:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
}
.dropdown-submenu .dropdown-item {
    padding: 0.65rem 1.25rem;
}
/* Our Services - wider main dropdown */
.nav-dropdown.services-dropdown .dropdown-menu {
    min-width: 300px;
}

/* Mobile menu - professional structure */
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu-list > li {
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}
.mobile-menu-list > li:last-child {
    border-bottom: none;
}

/* Mobile dropdown - main trigger (Our Services) */
.mobile-dropdown {
    position: relative;
}
.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.25s ease;
    min-height: 48px;
}
.mobile-dropdown-trigger:hover,
.mobile-dropdown-trigger:focus {
    background: rgba(26, 54, 93, 0.06);
    color: var(--primary-color);
    outline: none;
}
.mobile-chevron {
    font-size: 0.7rem;
    color: #64748b;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}
.mobile-dropdown.active > .mobile-dropdown-trigger .mobile-chevron,
.mobile-submenu.active > .mobile-submenu-trigger .mobile-chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Mobile dropdown menu - first level */
.mobile-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(26, 54, 93, 0.03);
}
.mobile-dropdown.active > .mobile-dropdown-menu {
    max-height: 2000px;
}

/* Mobile submenu - nested accordion */
.mobile-submenu {
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}
.mobile-submenu:last-child {
    border-bottom: none;
}
.mobile-submenu-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.25s ease;
    min-height: 44px;
}
.mobile-submenu-trigger:hover,
.mobile-submenu-trigger:focus {
    background: rgba(26, 54, 93, 0.06);
    color: var(--primary-color);
    outline: none;
}
.mobile-submenu-trigger i:first-of-type {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.mobile-submenu-trigger .mobile-chevron {
    margin-left: auto;
}

/* Mobile dropdown inner - submenu items */
.mobile-dropdown-inner {
    list-style: none;
    margin: 0;
    padding: 0 0 0.5rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(26, 54, 93, 0.02);
    border-left: 3px solid rgba(26, 54, 93, 0.15);
    margin-left: 1.25rem;
}
.mobile-submenu.active > .mobile-dropdown-inner {
    max-height: 600px;
}
.mobile-dropdown-inner li {
    margin: 0;
}

/* Mobile dropdown item - links */
.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem 0.65rem 1.5rem;
    color: #475569;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.25s ease;
    min-height: 44px;
}
.mobile-dropdown-item i {
    color: var(--primary-color);
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}
.mobile-dropdown-item:hover,
.mobile-dropdown-item:focus {
    background: rgba(26, 54, 93, 0.08);
    color: var(--primary-color);
}
.mobile-dropdown-item:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

/* Direct link (Startup) inside services */
.mobile-direct-link {
    padding: 0.75rem 1rem 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.whatsapp-btn {
    background: var(--accent-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(42, 157, 143, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: #1e8a7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -1px rgba(42, 157, 143, 0.4);
}

.whatsapp-btn i {
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
}

.mobile-menu-btn button {
    background: none;
    border: none;
    color: #475569;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn button:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s;
    pointer-events: none;
}

.mobile-menu.active {
    max-height: 90vh;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    padding: 0.5rem 0;
}

.mobile-link {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.25s ease;
    min-height: 48px;
    line-height: 1.4;
}
.mobile-link:hover,
.mobile-link:focus,
.mobile-link.active {
    background: rgba(26, 54, 93, 0.06);
    color: var(--primary-color);
}
.mobile-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

/* ===================================
   HERO
   =================================== */

.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 58, 0.85) 50%, rgba(15, 20, 25, 0.85) 100%),
                url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-modern-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-modern-background .bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-modern-background .bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-modern-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-modern-content {
    color: var(--white);
}

.hero-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-modern-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(214, 158, 46, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(214, 158, 46, 0.25);
}

.hero-modern-badge i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-modern-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -1px;
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-modern-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-modern-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-modern i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 54, 93, 0.25);
}

.btn-outline:hover i {
    transform: translateX(5px);
}

/* 404 Error Page */
.error-404-section {
    padding: 140px 0 100px !important;
}

.error-404-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-404-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 2rem;
}

.error-404-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-404-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-404-desc {
    font-size: 1.1rem;
    color: var(--text-muted, #666);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.error-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-modern-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-gold-1));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.visual-card:hover::before {
    transform: scaleX(1);
}

.visual-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(214, 158, 46, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-brand);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.card-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.card-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* ===================================
   CONTAINER & SECTION
   =================================== */

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.content-section {
    padding: 100px 0;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.about-company-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* About page only: wider content column */
.page-about .about-company-wrapper {
    grid-template-columns: 1fr 2fr;
}

.about-company-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-single {
    position: relative;
    /* max-width: 400px; */
}

.about-visual-single .layer-image-inner-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    border: 4px solid var(--primary-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-visual-single .layer-image-inner-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.about-visual-single .layer-image-inner-wrapper:hover img {
    transform: scale(1.03);
}

.image-hover-effect-shine:before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    transition: all 0.3s ease;
    z-index: 1;
}

.image-hover-effect-shine:hover:before {
    animation: shine 1s;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.about-company-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-title-wrapper {
    position: relative;
}

.sub-title-outer {
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
}

.subtitle {
    position: relative;
    display: block;
    z-index: 1;
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subtitle:before {
    position: absolute;
    right: -70px;
    bottom: 8px;
    content: "";
    background: var(--secondary-color);
    height: 3px;
    width: 54px;
}

.section-title-main {
    font-size: clamp(2rem, 3vw, 3.5rem);
    /* font-weight: 700; */
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.about-company-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.about-company-text p {
    margin: 0;
}

.about-company-actions-wrapper {
    margin-top: 1rem;
}

.about-company-actions-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.tm-sc-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.tm-sc-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tm-sc-list li:hover i {
    transform: rotate(360deg);
}

.tm-sc-list li span {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.theme-btn {
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    transition: all 300ms ease;
    text-decoration: none;
}

.btn-style5 {
    align-items: center;
    background-color: var(--secondary-color);
    border-radius: 30px;
    color: var(--white);
    display: inline-flex;
    font-weight: 700;
    height: 56px;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    transition: all 400ms ease;
    z-index: 0;
}

.btn-style5 .left-arrow {
    left: 7px;
    transform: scale(0);
    position: absolute;
}

.btn-style5 .btn-title {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    padding: 0 70px 0 26px;
    text-transform: uppercase;
    transition: all 400ms ease;
}

.btn-style5 .left-arrow,
.btn-style5 .right-arrow {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 10px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    width: 40px;
    transition: all 400ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-style5 .right-arrow {
    left: auto;
    right: 7px;
    transform: scale(1);
}

.btn-style5:hover .left-arrow {
    transform: scale(1);
}

.btn-style5:hover .btn-title {
    transform: translateX(37px);
}

.btn-style5:hover .right-arrow {
    transform: scale(0);
}

/* ===================================
   START BUSINESS / PROCESS SECTION
   =================================== */

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.process-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.process-content .section-title-wrapper {
    margin-bottom: 0;
}

.process-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
    margin-bottom: 1rem;
}

.process-list {
    grid-template-columns: 1fr;
    gap: 1rem 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.process-step-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
    position: relative;
}

.process-step-card:hover {
    border-color: rgba(12, 163, 80, 0.2);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.process-step-num {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--medium-gray);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.process-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

.process-step-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin: 0;
}

/* ===================================
   OUR SERVICES SECTION
   =================================== */

.section-alt {
    background: var(--off-white);
}

.section-dark {
    background: var(--primary-dark);
    color: var(--white);
}

.section-dark .section-title-main,
.section-dark .section-title-main span {
    color: var(--white);
}

.section-dark .subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.section-dark .services-intro {
    color: rgba(255, 255, 255, 0.8);
}

/* Services category blocks (services page) */
.services-category-block {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.services-category-block:last-of-type {
    margin-bottom: 0;
}

.services-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.services-category-title i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

/* Services page – light background variant */
.services-page-section {
    background: var(--off-white);
    color: var(--primary-dark);
}

.services-page-section .section-title-main,
.services-page-section .section-title-main span {
    color: var(--primary-dark);
}

.services-page-section .subtitle {
    color: var(--secondary-color);
}

.services-page-section .services-intro {
    color: var(--medium-gray);
}

.services-page-section .services-category-title {
    color: var(--primary-dark);
}

.services-page-section .explore-service-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.services-page-section .explore-service-card::before {
    display: none;
}

.services-page-section .explore-service-card:hover {
    transform: none;
    border-color: rgba(12, 163, 80, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.services-page-section .explore-service-card h3 {
    color: var(--primary-dark);
}

.services-page-section .explore-service-card:hover h3 {
    color: var(--primary-dark);
}

.services-page-section .explore-service-desc {
    color: var(--medium-gray);
}

.services-page-section .explore-service-icon i {
    color: var(--white);
}

.services-page-section .explore-service-card:hover .explore-service-icon {
    box-shadow: 0 2px 8px rgba(12, 163, 80, 0.2);
}

.services-page-section .explore-service-card:hover .explore-service-link i {
    transform: translateX(2px);
}

/* Explore services grid – dark cards (zefiro-style) */
.explore-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.explore-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.explore-service-card:hover::before {
    left: 100%;
}

.explore-service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(12, 163, 80, 0.2);
}

.explore-service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.explore-service-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0f8265 0%, #1dd182 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.explore-service-card:hover .explore-service-icon {
    box-shadow: 0 6px 20px rgba(12, 163, 80, 0.3);
}

.explore-service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.explore-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.explore-service-card:hover h3 {
    color: var(--secondary-color);
}

.explore-service-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.explore-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.explore-service-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.explore-service-card:hover .explore-service-link {
    color: #0a8a4a;
}

.explore-service-card:hover .explore-service-link i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .explore-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .explore-services-grid {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .explore-service-card {
        padding: 1.75rem 1.5rem;
    }

    .explore-service-icon {
        width: 50px;
        height: 50px;
    }

    .explore-service-icon i {
        font-size: 1.35rem;
    }

    .explore-service-card h3 {
        font-size: 1.1rem;
    }

    .explore-service-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .explore-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .explore-service-card {
        padding: 1.5rem 1.25rem;
    }

    .explore-service-icon {
        width: 48px;
        height: 48px;
    }

    .explore-service-icon i {
        font-size: 1.25rem;
    }

    .explore-service-card h3 {
        font-size: 1rem;
    }

    .explore-service-desc {
        font-size: 0.875rem;
    }
}

/* Founder Section (AVNI CHOUHAN) */
.founder-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.founder-visual {
    position: relative;
}

.founder-image-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 4px solid var(--primary-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.founder-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.founder-image-wrap:hover img {
    transform: scale(1.02);
}

.founder-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.founder-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.founder-text p {
    margin: 0 0 1.25rem;
}

.founder-text p:last-child {
    margin-bottom: 0;
}

/* Objectives Section (About page) – left: 6 boxes, right: objective points */
.objectives-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.objectives-header .section-title-wrapper {
    margin-bottom: 0;
}

.objectives-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.objectives-left {
    position: relative;
}

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

.objective-card {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--light-gray);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.objective-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(12, 163, 80, 0.1);
}

.objective-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gradient-brand);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.objective-card:hover .objective-card-icon {
    transform: scale(1.05);
}

.objective-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.objective-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

.objective-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin: 0;
}

.objectives-right {
    position: relative;
}

.objectives-content-block {
    background: var(--white);
    padding: 2rem 2rem 2.25rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--light-gray);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.objectives-block-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.25rem;
    line-height: 1.3;
}

.objectives-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.objectives-points-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--medium-gray);
}

.objectives-points-list li:last-child {
    margin-bottom: 0;
}

.objectives-points-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.services-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.services-header .section-title-wrapper {
    margin-bottom: 1rem;
}

.services-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--light-gray);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(12, 163, 80, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    border-radius: 14px;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 4px 14px rgba(12, 163, 80, 0.25);
    transition: all var(--transition-normal);
}

.service-card:hover .service-card-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(12, 163, 80, 0.35);
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    transition: color var(--transition-normal);
}

.service-card:hover .service-card-title {
    color: var(--secondary-color);
}

.service-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all var(--transition-normal);
}

.service-card-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-card-link i {
    transform: translateX(4px);
}

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

/* ===================================
   FUNFACT SECTION
   =================================== */

.funfact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.funfact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(12, 163, 80, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 54, 93, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.funfact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.funfact-content {
    color: var(--white);
}

.funfact-section .section-title-wrapper {
    margin-bottom: 1.5rem;
}

.funfact-section .section-title-wrapper .subtitle {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.funfact-section .section-title-wrapper .section-title-main {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.funfact-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

.funfact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.funfact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.funfact-card:hover::before {
    transform: scaleX(1);
}

.funfact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(12, 163, 80, 0.3);
    box-shadow: 0 20px 50px rgba(12, 163, 80, 0.15);
}

.funfact-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.funfact-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(12, 163, 80, 0.5));
}

.funfact-card:hover .funfact-icon i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(12, 163, 80, 0.8));
}

.funfact-counter {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin: 0 0 1rem 0;
    font-family: var(--font-primary);
}

.funfact-counter .animate-number {
    display: inline-block;
}

.funfact-title-wrapper {
    margin-top: 0.5rem;
}

.funfact-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* ===================================
   MOVING TEXT SECTION
   =================================== */

.moving-text-section {
    padding: 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.moving-text-wrapper {
    padding: 0;
    margin: 0;
}

.tm-marquee-parent {
    overflow: hidden;
    width: 100%;
    padding: 25px 0;
}

.tm-marquee-repeater {
    position: relative;
    --tm-marquee-animation-duration: 100s;
    --gap: 0px;
    display: flex;
    user-select: none;
    gap: var(--gap);
}

.tm-marquee-repeater .tm-marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scrollMarquee var(--tm-marquee-animation-duration) linear infinite;
}

.tm-marquee-repeater .text {
    position: relative;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    padding: 0 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-family: var(--font-primary);
    gap: 10px;
}

.tm-marquee-repeater .text i {
    font-size: 1.1rem;
    color: var(--white);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.testimonials-header .section-title-wrapper {
    margin-bottom: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(12, 163, 80, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--dark-gray);
    margin: 0 0 1.25rem 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section .section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-section .section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-top: 1rem;
    line-height: 1.8;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(12, 163, 80, 0.2);
}

.faq-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(12, 163, 80, 0.15);
}

.faq-question {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(12, 163, 80, 0.02);
}

.faq-item.active .faq-question {
    background: rgba(12, 163, 80, 0.05);
    border-bottom: 1px solid rgba(12, 163, 80, 0.1);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.5;
    flex: 1;
    padding-right: 2rem;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 163, 80, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 1rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--secondary-color);
    transform: rotate(45deg);
}

.faq-item.active .faq-icon i {
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
    padding-top: 1rem;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(12, 163, 80, 0.03) 0%, rgba(26, 54, 93, 0.04) 50%, rgba(12, 163, 80, 0.02) 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(12, 163, 80, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(26, 54, 93, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-normal);
}

.cta-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.cta-content {
    flex: 1;
    min-width: 0;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    background: var(--primary-dark);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    border: none;
}

.cta-btn:hover {
    background: var(--primary-color);
    transform: translateX(4px);
}

.cta-btn i {
    font-size: 0.9rem;
    transition: transform var(--transition-normal);
}

.cta-btn:hover i {
    transform: translateX(4px);
}

/* ===================================
   FOOTER
   =================================== */

.footer-modern {
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    color: var(--white);
    overflow: hidden;
}

.footer-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(26, 54, 93, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-logo-img {
    height: 130px;
    object-fit: contain;
    background: var(--white);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
}

.footer-logo-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.footer-company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    margin: -0.5rem 0 0;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 600;
    /* background: linear-gradient(135deg, #d69e2e 0%, #ecc94b 100%); */
    background: var(--accent-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-menu li a i {
    font-size: 0.7rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-menu li a:hover i {
    color: var(--white);
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 54, 93, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--accent-gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact li:hover .contact-icon {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.contact-details a,
.contact-details span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.contact-details a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 3rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 2rem;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1rem;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-copyright p span {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-credit {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-left: auto;
}

.footer-credit a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-credit a:hover {
    color: var(--white);
}

/* ===================================
   CONTACT PAGE - PAGE HERO & BREADCRUMB
   =================================== */

.page-hero {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 0 100px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 58, 0.82) 50%, rgba(15, 20, 25, 0.85) 100%),
                radial-gradient(circle at 20% 30%, rgba(12, 163, 80, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--accent-gold);
}

.breadcrumb-link i {
    color: var(--accent-gold);
    font-size: 0.95rem;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.breadcrumb-current {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===================================
   CONTACT PAGE - CONTACT SECTION
   =================================== */

.contact-page-section .section-title-wrapper {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.contact-page-section .section-description {
    font-size: 1.05rem;
    color: var(--medium-gray);
    margin-top: 0.75rem;
    line-height: 1.7;
}

.contact-wrapper {
    margin-top: 2rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(12, 163, 80, 0.12);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-brand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.08) rotate(5deg);
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.contact-info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Contact Social Section */
.contact-social-section {
    margin-bottom: 3rem;
}

/* Contact Social - 2 Column Layout */
.contact-social-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.contact-social-col {
    display: flex;
    flex-direction: column;
}

.contact-google-review-wrapper {
    background: rgba(12, 163, 80, 0.04);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.contact-google-review-wrapper:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(12, 163, 80, 0.08);
}

.contact-google-review-wrapper h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.contact-google-review-wrapper p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.contact-google-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, #34d399, #10b981);
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.contact-google-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.contact-google-review-btn i {
    font-size: 1.25rem;
}

.contact-social-wrapper {
    background: rgba(12, 163, 80, 0.04);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.contact-social-wrapper:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(12, 163, 80, 0.08);
}

.contact-social-wrapper h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.contact-social-wrapper p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.contact-social-icons--full .contact-social-icon {
    flex: 1 1 100%;
    width: 100%;
    min-width: unset;
    justify-content: center;
}

.contact-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--light-gray);
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    min-width: 90px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-social-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-social-icon span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-4px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(12, 163, 80, 0.12);
}

.contact-social-icon:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-social-icon:hover span {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--light-gray);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--off-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(12, 163, 80, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.form-group .error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.35rem;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.character-counter {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: 0.35rem;
    text-align: right;
}

.character-counter[style*="color: rgb(231, 76, 60)"],
.character-counter.over-limit {
    color: #e74c3c;
}

.form-actions {
    margin-top: 0.5rem;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(12, 163, 80, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(12, 163, 80, 0.35);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    display: none;
    align-items: flex-start;
    gap: 1rem;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.form-message h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message p {
    margin: 0;
    font-size: 0.95rem;
}

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.success-message i {
    color: #28a745;
}

.error-message-box {
    background: #f8d7da;
    border: 2px solid #e74c3c;
    color: #721c24;
}

.error-message-box i {
    color: #e74c3c;
}

/* ===================================
   SERVICE PAGE (e.g. Company Registration)
   Structure: section > container > wrapper (as per home, about)
   =================================== */

/* Section 1: Intro wrapper (like about-company-wrapper) */
.service-intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.service-intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.service-intro-left .section-title-wrapper {
    margin-bottom: 1rem;
}

.service-intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0 0 1.5rem;
}

.service-intro-types {
    margin-top: 2rem;
}

.service-intro-types .service-block-title {
    margin-bottom: 1rem;
}

.service-what-we-cover {
    margin-top: 2rem;
}

.service-block-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.service-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 0.8rem;
}

.service-check-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--medium-gray);
}

.service-check-list li i {
    color: var(--secondary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.service-apply-card {
    background: var(--white);
    padding: 2rem 2rem 2.25rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--light-gray);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 120px;
}

.service-apply-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.service-apply-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--medium-gray);
    margin: 0 0 1.5rem;
}

.service-apply-btn {
    width: 100%;
    justify-content: center;
}

/* Compact apply form inside card */
.service-apply-form {
    margin-top: 0.75rem;
}

.service-apply-card .service-apply-form .form-group {
    margin-bottom: 0.6rem;
}

.service-apply-card .service-apply-form .form-group label {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-apply-card .service-apply-form .form-control {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    border-radius: 6px;
}

.service-apply-card .service-apply-form .form-actions {
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.service-apply-card .service-apply-form .btn-submit {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    border-radius: 6px;
}

.service-apply-card .service-apply-form .form-group .error-message {
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

.service-apply-card .form-message {
    margin-top: 0.75rem;
}

/* Section 2: What is Company Registration? (like objectives-header) */
.service-what-is-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.service-what-is-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-what-is-block .section-title-wrapper {
    margin-bottom: 1rem;
}

.service-what-is-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}

/* Section 3: Documents Required */
.service-docs-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.service-docs-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.service-docs-header .section-title-wrapper {
    margin-bottom: 1rem;
}

.service-docs-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}

/* Document cards grid – 2 columns x 3 rows */
.service-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.doc-card {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--light-gray);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
}

.doc-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(12, 163, 80, 0.1);
}

.doc-card-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gradient-brand);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.35rem;
    transition: transform 0.3s ease;
}

.doc-card:hover .doc-card-icon {
    transform: scale(1.05);
}

.doc-card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.doc-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

.doc-card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--medium-gray);
    margin: 0;
}

/* Section 4: Company Registration Process (like objectives) */
.service-process-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.service-process-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.service-process-header .section-title-wrapper {
    margin-bottom: 0;
}

.service-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-process-step {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--light-gray);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-process-step:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(12, 163, 80, 0.08);
}

.service-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.service-step-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-brand);
    border-radius: 50%;
    line-height: 1;
}

.service-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.35;
}

.service-step-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin: 0;
}

/* Service page – responsive */
@media (max-width: 1024px) {
    .service-intro-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-apply-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .service-apply-card {
        padding: 1.5rem 1.5rem;
    }

    .service-process-step {
        padding: 1.5rem 1.25rem;
    }

    .service-process-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-step-title {
        font-size: 0.95rem;
    }

    .service-docs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-docs-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .service-apply-btn .btn-title {
        font-size: 0.9rem;
    }

    .doc-card {
        padding: 1.5rem 1.25rem;
        gap: 1rem;
    }

    .doc-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* ===================================
   WHATSAPP FLOAT & SCROLL TOP
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulseWhatsApp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWhatsApp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

.scroll-top {
    position: fixed;
    bottom: 110px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: var(--gradient-brand);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(26, 54, 93, 0.5);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .subtitle:before {
        right: -47px;
        width: 35px;
    }

    .hero-modern-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-modern-description {
        max-width: 100%;
    }

    .hero-modern-actions {
        justify-content: center;
    }

    .visual-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-section {
        padding: 80px 0;
    }

    .about-company-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .page-about .about-company-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-company-visual {
        order: -1;
    }

    .page-about .about-company-visual {
        order: 1;
    }

    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-visual {
        order: -1;
    }

    .about-visual-single {
        margin: 0 auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

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

    .services-header,
    .objectives-header {
        margin-bottom: 3rem;
    }

    .funfact-section {
        padding: 60px 0;
    }

    .funfact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .testimonials-header {
        margin-bottom: 2.5rem;
    }

    /* Contact Page */
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page-section .form-row {
        grid-template-columns: 1fr;
    }

    /* Objectives section */
    .objectives-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .objectives-right {
        order: -1;
    }

    .objectives-cards-grid {
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }

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

@media (max-width: 768px) {
    .modern-navbar .container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-modern {
        min-height: auto;
        padding: 140px 0 60px;
    }

    .visual-card {
        padding: 1.5rem;
    }

    .hero-modern-visual {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 60px 0;
    }

    .about-company-wrapper {
        gap: 2.5rem;
    }
    .page-about .about-company-wrapper {
        gap: 2.5rem;
    }

    .founder-wrapper {
        gap: 2.5rem;
    }

    .founder-text {
        font-size: 1rem;
    }

    .section-title-main {
        font-size: 2rem;
    }

    .about-company-text {
        font-size: 0.95rem;
    }

    .tm-sc-list {
        grid-template-columns: 1fr;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
    }

    .contact-social-two-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .services-header,
    .objectives-header {
        margin-bottom: 2.5rem;
    }

    .services-intro {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .funfact-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .funfact-card {
        padding: 2rem 1.5rem;
    }

    .funfact-icon i {
        font-size: 2.5rem;
    }

    .funfact-counter {
        font-size: 2rem;
    }

    .funfact-title {
        font-size: 1rem;
    }

    .tm-marquee-parent {
        padding: 20px 0;
    }

    .tm-marquee-repeater .text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .process-wrapper {
        gap: 2.5rem;
    }

    .process-content {
        gap: 1rem;
    }

    .process-intro {
        line-height: 1.75;
        margin-bottom: 1rem;
    }

    .process-list {
        gap: 1rem 0;
    }

    .process-list li {
        font-size: 0.95rem;
    }

    .process-steps {
        gap: 1rem;
    }

    .process-step-card {
        padding: 1.25rem 1.5rem;
    }

    .process-step-num {
        font-size: 0.8rem;
    }

    .process-step-title {
        font-size: 1.05rem;
    }

    .process-step-desc {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .testimonials-header {
        margin-bottom: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-wrapper {
        max-width: 100%;
    }

    .faq-section .section-title-wrapper {
        margin-bottom: 3rem;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.05rem;
        padding-right: 1.5rem;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-card {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

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

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-copyright {
        justify-content: center;
    }

    .footer-menu {
        gap: 0.05rem;
    }

    /* Objectives section */
    .objectives-wrapper {
        margin-top: 2rem;
        gap: 1.75rem;
    }

    .objectives-content-block {
        padding: 1.75rem 1.5rem;
    }

    .objectives-block-title {
        font-size: 1.35rem;
    }

    .objective-card {
        padding: 1.25rem 1rem;
    }

    .objective-card-title {
        font-size: 1rem;
    }

    .objective-card-desc {
        font-size: 0.875rem;
    }

    /* Contact Page */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-social-two-col {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-social-wrapper,
    .contact-google-review-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-social-icons {
        gap: 1rem;
    }

    .contact-social-icon {
        min-width: 80px;
        padding: 1rem;
    }
}

/* Small Mobile (480px) - same as Sandesh project */
@media (max-width: 480px) {
    .section-title-main {
        font-size: 1.75rem;
    }

    /* Page Hero (contact, about, etc.) */
    .page-hero {
        min-height: 350px;
        padding: 140px 0 80px;
        background-attachment: scroll;
    }

    .page-hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .breadcrumb-nav {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.85rem;
    }

    .breadcrumb-sep {
        font-size: 0.85rem;
    }

    /* Contact Page */
    .contact-page-section .section-title-wrapper {
        margin-bottom: 2rem;
    }

    .objectives-header {
        margin-bottom: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .contact-form-header h3 {
        font-size: 1.5rem;
    }

    .contact-social-wrapper {
        padding: 1.5rem 1rem;
    }

    .contact-social-wrapper h3 {
        font-size: 1.25rem;
    }

    .contact-social-icon {
        min-width: 70px;
        padding: 0.875rem;
    }

    .contact-social-icon i {
        font-size: 1.25rem;
    }

    .contact-social-icon span {
        font-size: 0.75rem;
    }

    /* Objectives section */
    .objectives-wrapper {
        margin-top: 1.5rem;
        gap: 1.5rem;
    }

    .objectives-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .objectives-content-block {
        padding: 1.5rem 1.25rem;
    }

    .objectives-block-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .objectives-points-list li {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }

    .objective-card {
        padding: 1.25rem 1rem;
    }

    .objective-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .objective-card-title {
        font-size: 0.95rem;
    }

    .objective-card-desc {
        font-size: 0.85rem;
    }
}
