/* ===== CSS RESET & ROOT ===== */
:root {
    --color-dark: #0F172A;
    --color-dark-light: #1a2847;
    --color-blue-primary: #0F6BF1;
    --color-blue-light: #1e7bff;
    --color-green-accent: #009331;
    --color-orange: #FF6B35;
    --color-purple: #A855F7;
    --color-cyan: #00D9FF;
    --color-yellow: #FBBF24;
    --color-pink: #EC4899;
    --color-emerald: #10B981;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B0B9D4;
    --color-text-tertiary: #7a8ab0;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-light: rgba(255, 255, 255, 0.05);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(15, 107, 241, 0.3);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-inter: 'Inter', sans-serif;
    --font-manrope: 'Manrope', sans-serif;
    --font-jakarta: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    background: linear-gradient(135deg, #0F172A 0%, #1a2847 50%, #0F172A 100%);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-inter);
    transition: var(--transition-base);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-manrope);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; }
h3 { font-size: 1.7rem; }

p {
    color: var(--color-text-secondary);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #0F6BF1 0%, #1e7bff 100%);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(15, 107, 241, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid var(--color-border);
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-blue-primary);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.w-full {
    width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-manrope);
    white-space: nowrap;
    margin-right: 0;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    object-position: left;
    display: block;
    filter: brightness(1) contrast(1);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    background: none;
    color: var(--color-text-secondary);
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
}

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 40, 71, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    min-width: 220px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    border-radius: 6px;
    transition: var(--transition-base);
}

.dropdown-menu a:hover {
    background: rgba(15, 107, 241, 0.1);
    color: var(--color-blue-primary);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 8px;
}

.search-btn:hover {
    color: var(--color-text-primary);
}

.login-btn {
    display: flex !important;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #0F6BF1 0%, #1e7bff 100%);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
    white-space: nowrap;
}


.login-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1e7bff 0%, #0F6BF1 100%);
    box-shadow: 0 0 30px rgba(15, 107, 241, 0.5);
    color: white;
}

/* ===== USER PROFILE DROPDOWN ===== */
.user-profile-wrapper {
    position: relative;
}

.user-profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F6BF1 0%, #1e7bff 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.user-profile-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(15, 107, 241, 0.5);
}

.user-avatar {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: linear-gradient(135deg, #1a2847 0%, #0f1729 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    min-width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    overflow: hidden;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(15, 107, 241, 0.1);
}

.dropdown-user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F6BF1 0%, #1e7bff 100%);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.dropdown-user-details {
    flex: 1;
}

.dropdown-user-name {
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 4px 0;
    font-size: 0.95rem;
}

.dropdown-user-email {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    margin: 0;
    word-break: break-word;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: rgba(15, 107, 241, 0.15);
    color: var(--color-blue-light);
}

.dropdown-item.logout-item:hover {
    background: rgba(220, 38, 38, 0.15);
    color: #fca5a5;
}

.dropdown-icon {
    display: inline-flex;
    font-size: 1.2rem;
}

.signup-btn {
    background: var(--color-blue-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(15, 107, 241, 0.5);
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ===== MOBILE MENU SIDEBAR ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-right: 1px solid var(--color-border);
    z-index: 100;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-sidebar.active {
    left: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition-base);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-body {
    padding: 20px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
}

.mobile-nav-toggle::after {
    content: '›';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mobile-nav-toggle.active::after {
    transform: rotate(90deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu a {
    display: block;
    padding: 12px 40px;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.mobile-submenu a:hover {
    color: var(--color-blue-primary);
    background: rgba(15, 107, 241, 0.1);
    padding-left: 45px;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
}

.mobile-nav-divider {
    height: 1px;
    background: var(--color-border);
    margin: 10px 0;
}

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

.signup-mobile {
    background: linear-gradient(135deg, #0F6BF1 0%, #1e7bff 100%);
    color: white;
    margin: 0;
    padding: 6px 12px !important;
    border-radius: 5px;
    box-shadow: var(--shadow-glow);
    font-size: 0.75rem !important;
    font-weight: 600;
    width: auto !important;
    display: inline-block;
    line-height: 1.2;
}

.signup-mobile:hover {
    background: linear-gradient(135deg, #1e7bff 0%, #2e8bff 100%);
    box-shadow: 0 0 30px rgba(15, 107, 241, 0.5);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 2rem;
    overflow: hidden;
    /* background-image: url('../images/nitin_final_image.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.hero-overlay {
    position: absolute;
    inset: 0;

   

    z-index: 1;
}

/* .hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
} */

/* .mesh-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 600px at 20% 50%, rgba(15, 107, 241, 0.15) 0%, transparent 80%),
                radial-gradient(circle 600px at 80% 80%, rgba(0, 147, 49, 0.1) 0%, transparent 80%),
                linear-gradient(135deg, #0F172A 0%, #1a2847 100%);
} */

/* .grid-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;
} */

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    text-align: left;
    margin-left: 8%;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(15, 107, 241, 0.1);
    border: 1px solid rgba(15, 107, 241, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-blue-light);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-blue-primary);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 850px;
    word-wrap: break-word;
    background: linear-gradient(135deg, #FFFFFF 0%, #B0B9D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    width: 70%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-blue-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== HERO BANNER - IMAGE VARIANT ===== */
.hero-banner {
    padding: 0;
    min-height: 650px;
    height: auto;
    display: block;
    background: #0F172A;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1a2847 100%);
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 650px;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-banner-image {
    transform: scale(1.02);
}

/* ===== SERVICES SECTION ===== */
.services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2rem;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

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

.service-card {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.5) 0%, rgba(15, 23, 42, 0.3) 100%);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(15, 107, 241, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    border-color: var(--color-blue-primary);
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.8) 0%, rgba(15, 23, 42, 0.5) 100%);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 107, 241, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

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

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-link {
    color: var(--color-blue-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-base);
}

.service-link:hover {
    gap: 12px;
    color: var(--color-blue-light);
}

/* ===== PRODUCTS SECTION ===== */
.products {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.6) 0%, rgba(15, 23, 42, 0.3) 100%);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-base);

    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
    max-height: 550px;
    overflow: hidden;
}

.product-card.featured {
    border-color: var(--color-blue-primary);
    background: linear-gradient(135deg, rgba(15, 107, 241, 0.1) 0%, rgba(26, 40, 71, 0.6) 100%);
    transform: scale(1.02);
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-pink) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-badge.primary {
    background: linear-gradient(135deg, var(--color-blue-primary) 0%, var(--color-cyan) 100%);
}

.product-card h3 {
    margin-bottom: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}

.price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-blue-primary);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.period {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    margin-bottom: 0.5rem;
    display: block;
}

.features-list {
    list-style: none;
   
    padding: 0;
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 200px;
}

.features-list li {
    padding: 0.4rem 0;
    color: var(--color-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    flex-shrink: 0;
    min-height: fit-content;
}

.features-list li:nth-child(n+6) {
    display: none;
}

.feature-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.check {
    color: var(--color-green-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.gst-note {
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
    margin-bottom: 1.5rem;
}
.features-list {
    flex-grow: 1;
}

.product-card .btn {
    margin-top: auto;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-grid.carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: rgba(26, 40, 71, 0.4);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
}

.why-card:hover {
    background: rgba(26, 40, 71, 0.6);
    border-color: var(--color-blue-primary);
    transform: translateY(-6px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.why-card h3 {
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.95rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.cta-content {
    background: linear-gradient(135deg, rgba(15, 107, 241, 0.15) 0%, rgba(0, 147, 49, 0.1) 100%);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(26, 40, 71, 0.4) 100%);
    border-top: 1px solid var(--color-border);
    padding: 2rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: var(--color-blue-primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-weight: 600;
    transition: var(--transition-base);
}

.social-icons a:hover {
    background: var(--color-blue-primary);
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    background: rgba(15, 107, 241, 0.1);
    border: 1px solid rgba(15, 107, 241, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--color-blue-light);
    font-weight: 600;
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
}

.modal-close:hover {
    color: var(--color-text-primary);
}

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

.modal-header h2 {
    margin-bottom: 0.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--color-text-primary);
    font-family: var(--font-inter);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.form-group input::placeholder {
    color: var(--color-text-tertiary);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-blue-primary);
    background: rgba(15, 107, 241, 0.05);
}

.input-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 4px;
    display: none;
}

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

.form-group.checkbox,
.form-group.full-width.checkbox {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
}

.form-group.checkbox input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.form-group.checkbox label {
    margin: 0 !important;
    flex: 1 !important;
    min-width: 0 !important;
    white-space: nowrap !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
}

.modal-auth-links {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.modal-auth-links a {
    color: var(--color-blue-primary);
    font-weight: 600;
    transition: var(--transition-base);
}

/* ===== PASSWORD STRENGTH INDICATOR ===== */
.password-strength {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-bar.weak {
    background: linear-gradient(90deg, #EF4444, #FCA5A5);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.strength-bar.medium {
    background: linear-gradient(90deg, #F59E0B, #FCD34D);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
}

.strength-bar.strong {
    background: linear-gradient(90deg, #10B981, #A7F3D0);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.strength-text {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
    margin-top: 6px;
}

.modal-auth-links a:hover {
    color: var(--color-blue-light);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-menu {
        gap: 1.5rem;
    }

    .hero {
        padding: 60px 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .services-grid,
    .products-grid,
    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

@media (max-width: 768px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.75rem; }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        display: none !important;
    }


    .mobile-menu-toggle {
        display: flex !important;
    }

    /* Hide login button on mobile */
    .login-btn {
        display: none !important;
    }



    .hero-banner {
        min-height: 500px;
    }

    .hero-image-container {
        min-height: 500px;
    }

    .hero-banner-image {
        min-height: 500px;
    }

    .hero-badge {
        display: none;
    }

    .hero-content {
        margin-left: 0;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .hero-buttons .btn {
    width: auto !important;
    padding: 14px 28px !important;
    font-size: 0.82rem !important;
    border-radius: 10px !important;
    white-space: nowrap !important;
}

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

    .services,
    .products,
    .why-choose,
    .cta-banner {
        padding: 60px 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
     /* Brand column spans full width on top */
    .footer-content .footer-column:first-child {
        grid-column: 1 / -1;             /* spans both columns */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .services-grid,
    .products-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .form-group {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-group.checkbox,
    .form-group.checkbox label {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-group.checkbox label {
        font-size: 0.8rem;
        line-height: 1.5;
        word-break: break-word;
    }

    .modal-form {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    /* User Profile Dropdown Mobile */
    .user-dropdown-menu {
        min-width: 250px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.25rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.1rem; }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo span {
        display: none;
    }

    /* User Profile Button Small Screens */
    .user-profile-btn {
        width: 40px;
        height: 40px;
    }

    .user-dropdown-menu {
        min-width: 240px;
        right: -15px;
    }

    .dropdown-user-info {
        padding: 12px;
    }

    .dropdown-user-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .dropdown-user-name {
        font-size: 0.9rem;
    }

    .dropdown-user-email {
        font-size: 0.8rem;
    }

    .dropdown-item {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .enquiry-section {
        padding: 24px 0.75rem !important;
        overflow: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .enquiry-form-wrapper {
        padding: 0.875rem !important;
        border-radius: 10px !important;
    }

    .enquiry-form input,
    .enquiry-form select {
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        font-size: 0.85rem !important;
    }

    .enquiry-checkbox-row {
        gap: 6px !important;
    }

    .enquiry-checkbox-row input[type="checkbox"] {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        margin-top: 2px !important;
    }

    .enquiry-checkbox-row label {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        font-size: 0.75rem !important;
        line-height: 1.6 !important;
    }

    /* Modal form checkbox on small screens */
    .form-group.checkbox input[type="checkbox"] {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        margin-top: 2px !important;
    }

    .form-group.checkbox label {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        white-space: nowrap !important;
    }

    .modal-content {
        padding: 1.25rem !important;
        overflow: visible !important;
    }

    .hero {
    padding: 20px 0 !important;
    min-height: auto !important;
    background-size: cover !important;
    background-position: center center !important;
}

    .hero-banner {
        min-height: 400px;
    }

    .hero-image-container {
        min-height: 400px;
    }

    .hero-banner-image {
        min-height: 400px;
    }

    .hero-badge {
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .services,
    .products,
    .why-choose,
    .cta-banner {
        padding: 40px 1rem;
    }

    .section-header h2 {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

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

     .service-card,
    .product-card {
        padding: 0.85rem !important;
    }

    .service-card h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.4rem !important;
    }

    .service-card p {
        font-size: 0.78rem !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.4 !important;
    }

    .service-icon {
        margin-bottom: 0.6rem !important;
    }

    .service-icon svg {
        width: 24px !important;
        height: 24px !important;
    }

    .service-link {
        font-size: 0.78rem !important;
    }

    .product-card.featured {
        transform: scale(1);
    }

    .modal-content {
        width: calc(100vw - 24px) !important;
        max-width: 500px !important;
        padding: 1.5rem !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    .modal-form {
        overflow: visible !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-group.checkbox label {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        white-space: nowrap !important;
    }

    .form-group.checkbox {
        align-items: center !important;
    }
    .form-group.checkbox input[type="checkbox"] {
        margin-top: 3px;                       /* aligns with first line of text */
        width: 16px;
        height: 16px;
        min-width: 16px; /* aligns with first line of wrapped text */
    }
    .form-group.checkbox label {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        white-space: nowrap !important;
    }

    .cta-content {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr; 
        gap: 1.5rem;
    }
    .footer-content .footer-column:first-child {
        grid-column: 1 / -1;
    }
    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .footer-column a {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .footer {
        padding: 1.5rem;
    }

    .footer-content {
        margin-bottom: 1.5rem;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .login-btn {
        display: none !important;
    }

    .mobile-menu-sidebar {
        width: 90%;
        max-width: none;
    }
}
/* ===== Enquiry Form Section ===== */
.enquiry-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.enquiry-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.enquiry-form-wrapper {
    background: rgba(26, 40, 71, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    height: 100%;                    /* fill the grid cell */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-family: var(--font-inter);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-tertiary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue-primary);
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 0 0 3px rgba(15, 107, 241, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B0B9D4' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

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

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-item input[type="radio"],
.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-blue-primary);
}

.checkbox-item label {
    cursor: pointer;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.checkbox-item label:hover {
    color: var(--color-text-primary);
}







.error-message {
    font-size: 0.85rem;
    color: #FF6B35;
    display: none;
    margin-top: 0.35rem;
}

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

input.error,
select.error,
textarea.error {
    border-color: #FF6B35 !important;
    background-color: rgba(255, 107, 53, 0.05);
}

.form-note {
    text-align: center;
    color: var(--color-text-tertiary);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.enquiry-checkbox-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    grid-column: 1 / -1;
    max-width: 100% !important;
    min-width: 0 !important;
}

.enquiry-checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--color-blue-primary);
    margin-top: 3px;
}

.enquiry-checkbox-row label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    white-space: normal;
    margin: 0;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.enquiry-submit-btn {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
}

.enquiry-info {
    display: flex;
    flex-direction: column;
    gap: 1rem !important;
}

.enquiry-info.carousel {
    display: flex;
    flex-direction: column;
    gap: 1rem !important;
}

.info-card {
    background: rgba(26, 40, 71, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card:hover {
    background: rgba(26, 40, 71, 0.7);
    border-color: rgba(15, 107, 241, 0.3);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.info-card h4 {
    color: var(--color-text-primary);
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.info-card p {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.info-card.highlight {
    background: linear-gradient(135deg, rgba(15, 107, 241, 0.1) 0%, rgba(15, 107, 241, 0.05) 100%);
    
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem !important;
}

.phone-number a {
    color: var(--color-blue-primary);
    text-decoration: none;
}

.phone-number a:hover {
    text-decoration: underline;
}

.support-hours {
    color: var(--color-text-tertiary) !important;
    font-size: 0.85rem;
    margin-top: 0.5rem !important;
}

@media (max-width: 1024px) {
    .enquiry-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .enquiry-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .enquiry-section {
        padding: 40px 1rem !important;
        overflow: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .enquiry-container {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding: 0 !important;
    }

    .enquiry-form-wrapper {
        padding: 1.25rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        border-radius: 12px !important;
    }

    .enquiry-form {
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form textarea,
    .enquiry-form button {
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    .enquiry-checkbox-row {
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
        flex-wrap: nowrap !important;
        box-sizing: border-box !important;
        margin-top: 4px !important;
    }

    .enquiry-checkbox-row input[type="checkbox"] {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        flex-shrink: 0 !important;
        margin-top: 3px !important;
        accent-color: #0F6BF1 !important;
    }

    .enquiry-checkbox-row label {
        flex: 1 !important;
        min-width: 0 !important;
        max-width: 100% !important;
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        color: #B0B9D4 !important;
        cursor: pointer !important;
        margin: 0 !important;
    }

    .enquiry-checkbox-row label a {
        display: inline !important;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .enquiry-form {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form textarea {
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    .enquiry-info.carousel {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .enquiry-info.carousel > * {
        flex: 0 0 80vw;
        min-width: 80vw;
        max-width: 80vw;
    }

    .enquiry-info {
        gap: 1rem;
    }

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

/* ===== FEATURED PACKAGES SECTION ===== */

.featured-packages {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 2rem;
}

.featured-packages-header {
    position: relative;
    margin-bottom: 3rem;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    overflow: visible;
}

.carousel-btn {
    background: linear-gradient(135deg, #0F6BF1 0%, #1e7bff 100%);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.carousel-btn.mobile-visible {
    display: flex;
}

.carousel-btn-left {
    order: -1;
}

.carousel-btn-right {
    order: 1;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #1e7bff 0%, #0F6BF1 100%);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.featured-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem;
    flex: 1;
}

.featured-packages-grid.carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
}

.featured-packages-grid.carousel::-webkit-scrollbar {
    display: none;
}

.featured-packages-grid.carousel > * {
    flex: 0 0 calc(100% - 1rem);
    min-width: 300px;
}

/* All cards now use .product-card class - see product-card styling above */

/* Desktop: .carousel classes display as grid (not carousel) */
.services-grid.carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
    width: 100%;
}

.services-grid.carousel > * {
    flex: unset;
    min-width: unset;
    max-width: unset;
}

.products-grid.carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.3rem;
    overflow-x: visible !important;
    width: 100%;
}

.products-grid.carousel > * {
    flex: unset;
    min-width: unset;
    max-width: unset;
}

.services-detailed-grid.carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
    overflow-x: visible !important;
    width: 100%;
}

.services-detailed-grid.carousel > * {
    flex: unset;
    min-width: unset;
    max-width: unset;
}

.pricing-tiers.carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
    overflow-x: visible !important;
}

.pricing-tiers.carousel > * {
    flex: unset;
    min-width: unset;
    max-width: unset;
}

.offerings-grid.carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
    overflow-x: auto !important;
}

.offerings-grid.carousel > * {
    flex: unset;
    min-width: unset;
    max-width: unset;
}

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

@media (max-width: 1024px) {
    .featured-packages {
        padding: 60px 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .featured-packages {
        padding: 2rem 0;
        overflow: hidden;
    }

    .section-header {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .carousel-wrapper {
        gap: 0.75rem;
        padding: 1rem 0;
        margin: 0;
        justify-content: center;
    }

    .carousel-btn.mobile-visible {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .featured-packages-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-behavior: smooth;
        gap: 0.75rem;
        padding: 0 0.5rem;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .featured-packages-grid::-webkit-scrollbar {
        display: none;
    }

    .featured-packages-grid.carousel {
        display: flex !important;
        overflow-x: auto !important;
        scroll-behavior: smooth;
        gap: 0.75rem;
        padding: 0 0.5rem;
        grid-template-columns: unset;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .featured-packages-grid.carousel::-webkit-scrollbar {
        display: none;
    }

    .featured-packages-grid.carousel > * {
        flex: 0 0 75vw !important;
        min-width: 75vw !important;
        max-width: 75vw !important;
    }

    .products-grid.carousel {
        display: flex !important;
        overflow-x: auto !important;
        scroll-behavior: smooth;
        gap: 0.75rem;
        padding: 0 1rem;
        grid-template-columns: unset !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .products-grid.carousel::-webkit-scrollbar {
        display: none;
    }

    .products-grid.carousel > * {
        flex: 0 0 calc(100vw - 3rem) !important;
        min-width: calc(100vw - 3rem) !important;
        max-width: calc(100vw - 3rem) !important;
        box-sizing: border-box !important;
    }

    .services-detailed-grid.carousel {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 0.75rem;
        padding: 0 0.5rem;
        grid-template-columns: unset;
    }

    .services-detailed-grid.carousel > * {
        flex: 0 0 65vw;
        min-width: 65vw;
        max-width: 65vw;
    }

    .services-grid.carousel {
        display: flex !important;
        overflow-x: auto !important;
        scroll-behavior: smooth;
        gap: 0.75rem;
        padding: 0 1rem;
        grid-template-columns: unset !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-grid.carousel::-webkit-scrollbar {
        display: none;
    }

    .services-grid.carousel > * {
        flex: 0 0 calc(100vw - 3rem) !important;
        min-width: calc(100vw - 3rem) !important;
        max-width: calc(100vw - 3rem) !important;
        box-sizing: border-box !important;
    }

    .pricing-tiers.carousel {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 0.75rem;
        padding: 0 0.5rem;
        grid-template-columns: unset;
    }

    .pricing-tiers.carousel > * {
        flex: 0 0 65vw;
        min-width: 65vw;
        max-width: 65vw;
    }

    .offerings-grid.carousel {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 0.75rem;
        padding: 0 0.5rem;
        grid-template-columns: unset;
    }

    .offerings-grid.carousel > * {
        flex: 0 0 65vw;
        min-width: 65vw;
        max-width: 65vw;
    }

    .why-grid.carousel {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 0.75rem;
        padding: 0 0.5rem;
        grid-template-columns: unset;
    }

    .why-grid.carousel > * {
        flex: 0 0 75vw;
        min-width: 75vw;
        max-width: 75vw;
    }

    .product-card {
        min-height: 360px;
        max-height: 420px;
        overflow: hidden;
        padding: 1rem;
    }

    .product-card h3 {
        font-size: 1rem;
        margin: 0.5rem 0;
    }

    .product-card .price {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .product-card .period {
        font-size: 0.8rem;
    }

    .product-card .description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .features-list {
        max-height: 140px;
        margin: 0.5rem 0;
    }

    .features-list li {
        padding: 0.3rem 0;
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .service-container {
        max-width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        gap: 0;
    }

    .sidebar {
        margin-top: 1rem;
    }
}
/* ===== HERO MOBILE FIX — ALL SCREEN SIZES ===== */
@media (max-width: 768px) {

    .hero {
        min-height: 200px !important;
        height: auto !important;
        padding-top: 18px !important;
        padding-bottom: 18px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        background-size: cover !important;
        background-position: top center !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        margin: 0 !important;
    }

    .hero-overlay {
        display: none !important;
    }

    .hero-content {
        position: relative !important;
        z-index: 3 !important;
        margin-left: 14px !important;
        margin-right: auto !important;
        margin-top: 10px !important;
        padding: 0 !important;
        max-width: 52% !important;
        width: 52% !important;
        text-align: left !important;
        flex-shrink: 0 !important;
    }

    .hero-badge {
        display: none !important;
    }

    .hero-title {
        margin-bottom: 8px !important;
        text-align: left !important;
    }

    .hero-title h1 {
        font-size: 1rem !important;
        line-height: 1.25 !important;
        white-space: normal !important;
        word-break: normal !important;
        margin: 0 0 2px 0 !important;
        display: block !important;
    }

    .hero-subtitle {
        display: none !important;
    }

    .hero-buttons {
        width: 100% !important;
        gap: 6px !important;
        margin-bottom: 0 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .hero-buttons .btn {
        width: 140px !important;
        min-width: unset !important;
        max-width: 140px !important;
        padding: 8px 10px !important;
        font-size: 0.62rem !important;
        border-radius: 6px !important;
        white-space: nowrap !important;
        text-align: center !important;
        display: block !important;
        box-sizing: border-box !important;
        line-height: 1.4 !important;
    }

    .hero-buttons .btn-primary {
        padding: 8px 10px !important;
        border: none !important;
    }

    .hero-buttons .btn-secondary {
        padding: 8px 10px !important;
        border: 1.5px solid rgba(255,255,255,0.3) !important;
        box-sizing: border-box !important;
    }

    .hero-stats {
        display: none !important;
    }
}

/* Extra small — 320px to 360px */
@media (max-width: 360px) {
    .hero {
        min-height: 180px !important;
        background-position: top center !important;
    }

    .hero-content {
        max-width: 50% !important;
        width: 50% !important;
        margin-left: 10px !important;
    }

    .hero-title h1 {
        font-size: 0.82rem !important;
        line-height: 1.2 !important;
    }

    .hero-buttons .btn {
        width: 140px !important;
        max-width: 140px !important;
        display: block !important;
        font-size: 0.62rem !important;
        padding: 5px 10px !important;
    }
}

/* Small — 361px to 430px */
@media (min-width: 361px) and (max-width: 430px) {
    .hero {
        min-height: 210px !important;
        background-position: center right !important;
    }

    .hero-content {
        max-width: 44% !important;
        width: 44% !important;
        margin-left: 14px !important;
        margin-top: 8px !important;
    }

    .hero-title {
        margin-bottom: 10px !important;
    }

    .hero-title h1 {
        font-size: 0.88rem !important;
        line-height: 1.18 !important;
        letter-spacing: -0.3px !important;
    }

    .hero-buttons {
        gap: 6px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-buttons .btn {
        width: 110px !important;
        max-width: 110px !important;
        font-size: 0.6rem !important;
        padding: 5px 6px !important;
    }
}

/* Medium — 431px to 540px */
@media (min-width: 431px) and (max-width: 540px) {
    .hero {
        min-height: 210px !important;
        background-position: top center !important;
    }

    .hero-content {
        max-width: 50% !important;
        width: 50% !important;
        margin-left: 16px !important;
    }

    .hero-title h1 {
        font-size: 1rem !important;
        line-height: 1.25 !important;
    }

    .hero-buttons .btn {
        width: 140px !important;
        max-width: 140px !important;
        display: block !important;
        font-size: 0.68rem !important;
        padding: 6px 14px !important;
    }
}

/* Large — 541px to 768px */
@media (min-width: 541px) and (max-width: 768px) {
    .hero {
        min-height: 240px !important;
        background-position: top center !important;
    }

    .hero-content {
        max-width: 48% !important;
        width: 48% !important;
        margin-left: 20px !important;
    }

    .hero-title h1 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }

    .hero-buttons .btn {
        width: 140px !important;
        max-width: 140px !important;
        display: block !important;
        font-size: 0.72rem !important;
        padding: 7px 16px !important;
    }
}

/* ===== HERO TABLET FIX — 769px to 900px ===== */
@media (min-width: 769px) and (max-width: 900px) {

    .hero {
        min-height: 400px !important;
        background-size: cover !important;
        background-position: center center !important;
        padding: 60px 2rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .hero-content {
        max-width: 50% !important;
        width: 50% !important;
        margin-left: 4% !important;
    }

    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .hero-buttons .btn {
        width: auto !important;
        min-width: 160px !important;
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
}

/* ===== MOBILE OVERFLOW FIX ===== */
@media (max-width: 768px) {

    /* Fix root overflow */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    /* Fix any section exceeding viewport */
    section, .hero, .services, .products,
    .why-choose, .cta-banner, .enquiry-section,
    .featured-packages, .footer {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Fix floating chat widget causing overflow */
    #chatWidget {
        position: fixed !important;
        bottom: 20px !important;
        right: 16px !important;
        z-index: 999 !important;
    }

    /* Fix footer bottom white space */
    .footer {
        padding-bottom: 80px !important;
        margin-bottom: 0 !important;
    }

    /* Fix modal overlays not causing scroll */
    .modal-overlay {
        position: fixed !important;
        overflow-y: auto !important;
    }

    /* Fix mobile sidebar not causing overflow */
    .mobile-menu-sidebar {
        overflow-x: hidden !important;
    }

    /* Remove any bottom margin from last section */
    .cta-banner {
        margin-bottom: 0 !important;
    }
}

/* ===== FINAL MOBILE OVERFLOW FIX ===== */
@media (max-width: 768px) {
    html {
        overflow-x: hidden !important;
    }
    body {
        overflow-x: hidden !important;
        min-height: 100% !important;
        height: auto !important;
    }
    .hero-overlay {
        display: none !important;
    }
    footer.footer {
        margin-bottom: 0 !important;
        padding-bottom: 2rem !important;
    }
    /* Remove white space top */
    .navbar + * {
        margin-top: 0 !important;
    }
}