/* ==========================================================================
   VINI ELEVATORS - PREMIUM LANDING PAGE STYLING
   ========================================================================== */

/* --- Custom Properties --- */
:root {
    --primary: #16166b;
    --primary-light: #25258e;
    --primary-dark: #0e0e47;
    --accent: #d4af37;
    --accent-light: #f4e8c1;
    --accent-hover: #c49c28;
    --text: #1e293b;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #090933;
    --border-color: #e2e8f0;
    --success: #22c55e;
    
    /* Layout Spacing */
    --container-width: 1366px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(22, 22, 107, 0.07), 0 10px 10px -5px rgba(22, 22, 107, 0.04);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg-white);
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
}

/* --- Components & Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

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

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.sub-title {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ==========================================================================
   SECTIONS STYLING
   ========================================================================== */

/* --- Top Info Bar --- */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item a:hover {
    color: var(--accent);
}

.top-bar-item.tag {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.top-bar-item .icon {
    width: 14px;
    height: 14px;
}

/* --- Header Navbar --- */
.header {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    transition: var(--transition);
}

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

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

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

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.logo-text.light .brand-name {
    color: var(--bg-white);
}

.logo-text.light .brand-sub {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 15px;
    font-weight: 550;
    color: var(--text);
    position: relative;
    padding: 8px 0;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-btn:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 60px 0 80px 0;
    background: linear-gradient(135deg, rgba(22, 22, 107, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(22, 22, 107, 0.06);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(22, 22, 107, 0.1);
}

.hero-title {
    font-size: 46px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.val-prop {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.val-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: rgba(34, 197, 94, 0.15);
    color: var(--success);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 3px;
}

.val-text strong {
    color: var(--primary);
    font-size: 15px;
    display: block;
    margin-bottom: 2px;
}

.val-text p {
    color: var(--text-muted);
    font-size: 13px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-actions .icon {
    width: 18px;
    height: 18px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-card h3 {
    font-size: 28px;
    color: var(--primary);
}

.stat-card p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 550;
}

/* --- Lead Form --- */
.hero-form-container {
    perspective: 1000px;
}

.lead-form-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(22, 22, 107, 0.08);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.lead-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 22px;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary);
}

.form-group label .req {
    color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 22, 107, 0.1);
}

/* Custom Phone Wrapper */
.phone-input-wrapper {
    display: flex;
    gap: 8px;
}

.country-select-container {
    position: relative;
    min-width: 90px;
}

.country-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-light);
    cursor: pointer;
    font-size: 14px;
    height: 100%;
    user-select: none;
}

.country-selected::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--text-muted);
    margin-left: 4px;
}

.country-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    margin-top: 4px;
    z-index: 10;
    display: none;
}

.country-dropdown-list.show {
    display: block;
}

.country-dropdown-list .search-box {
    padding: 8px;
    border-bottom: 1px solid var(--border-color);
}

.country-dropdown-list .search-box input {
    width: 100%;
    padding: 6px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 12px;
}

.options-container {
    max-height: 180px;
    overflow-y: auto;
}

.country-option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    gap: 8px;
    transition: var(--transition);
}

.country-option:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

/* Custom Location Detect Button */
.location-input-wrapper {
    position: relative;
    display: flex;
}

.location-input-wrapper input {
    padding-right: 90px !important;
}

.btn-location-detect {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-location-detect:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.location-pin-icon {
    width: 12px;
    height: 12px;
}

.location-status {
    font-size: 11px;
    margin-top: 4px;
    color: var(--text-muted);
}

.location-status.detecting {
    color: var(--accent-hover);
}

.location-status.success {
    color: var(--success);
}

/* Status Tiles Styling */
.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.status-tile {
    cursor: pointer;
    position: relative;
}

.status-tile input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tile-label {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 10px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 550;
    color: var(--text-muted);
    background-color: var(--bg-light);
    transition: var(--transition);
    height: 100%;
}

.status-tile input[type="radio"]:checked + .tile-label {
    border-color: var(--primary);
    background-color: rgba(22, 22, 107, 0.05);
    color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

/* Errors & Feedback */
.error-msg {
    color: #ef4444;
    font-size: 11px;
    margin-top: 4px;
    display: none;
}

.form-group.has-error input,
.form-group.has-error select {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group.has-error .error-msg {
    display: block;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--bg-white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Box */
.form-success-box {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.success-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.success-icon {
    width: 30px;
    height: 30px;
}

.form-success-box h3 {
    font-size: 22px;
    color: var(--success);
    margin-bottom: 12px;
}

.form-success-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Checkbox styling */
.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px;
    cursor: pointer;
    font-size: 12px !important;
    color: var(--text-muted) !important;
    font-weight: 550 !important;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-text {
    line-height: 1.4;
}

.checkbox-group.has-error .checkbox-text {
    color: #ef4444 !important;
}

/* --- Clients Marquee Section --- */
.clients-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.section-tagline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, rgba(248,249,250,0) 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, rgba(248,249,250,0) 100%);
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.client-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: -0.5px;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --- About Us Section --- */
.about {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgba(22, 22, 107, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 5px solid var(--accent);
}

.exp-num {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.exp-txt {
    color: var(--bg-white);
    font-size: 13px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.about-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feat-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(22, 22, 107, 0.06);
    color: var(--primary);
    border-radius: 8px;
    flex-shrink: 0;
}

.feat-icon-box svg {
    width: 20px;
    height: 20px;
}

.about-feat-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.about-feat-item p {
    font-size: 13px;
    margin-bottom: 0;
}

/* --- Products Section --- */
.products {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 22, 107, 0.15);
}

.product-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(22, 22, 107, 0.05);
    color: var(--primary);
    border-radius: 6px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background-color: var(--primary);
    color: var(--bg-white);
}

.product-icon svg {
    width: 22px;
    height: 22px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.product-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.product-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.product-link::after {
    content: ' →';
    transition: var(--transition);
}

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

.product-link:hover::after {
    transform: translateX(4px);
}

/* --- Advantages Section --- */
.advantages {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.adv-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    transition: var(--transition);
}

.adv-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.adv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    border-radius: 6px;
    margin-bottom: 16px;
}

.adv-icon svg {
    width: 20px;
    height: 20px;
}

.adv-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.adv-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Process Section --- */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: var(--transition);
}

.process-step:hover .step-number {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 12px;
    color: var(--text-muted);
    padding: 0 10px;
}

/* Connector Line on desktop */
.process-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

/* --- Testimonials --- */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(22, 22, 107, 0.15);
}

/* TrustIndex Top Badge styling */
.trustindex-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px 32px;
    margin: 0 auto 50px auto;
    max-width: 900px;
    gap: 20px;
}

.ti-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ti-g-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border-radius: 12px;
    width: 52px;
    height: 52px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.ti-brand-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ti-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ti-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.ti-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #10b981;
    color: var(--bg-white);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

.ti-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ti-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 1px;
}

.ti-rating-text {
    font-size: 13px;
    color: var(--text-muted);
}

.ti-rating-text strong {
    color: var(--text);
}

.ti-rating-text .ti-desc {
    font-size: 12px;
}

.ti-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ti-powered {
    text-align: right;
}

.ti-pow-txt {
    display: block;
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

.ti-pow-brand {
    font-size: 13px;
    color: var(--primary-light);
    font-weight: 800;
}

.ti-write-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ti-write-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Card internal styling */
.tc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.tc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-white);
    flex-shrink: 0;
}

.tc-avatar-blue { background-color: #1e3a8a; }
.tc-avatar-gold { background-color: #d97706; }
.tc-avatar-green { background-color: #047857; }

.tc-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
    padding-right: 24px;
}

.tc-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tc-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.tc-verified-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #10b981;
    color: var(--bg-white);
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.tc-title {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.tc-g-logo {
    position: absolute;
    top: 0;
    right: 0;
}

.tc-rating {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.tc-feedback {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* TrustIndex responsiveness */
@media (max-width: 768px) {
    .trustindex-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .ti-left {
        flex-direction: column;
        align-items: center;
    }
    
    .ti-title-wrapper {
        justify-content: center;
    }
    
    .ti-stars-row {
        justify-content: center;
    }
    
    .ti-right {
        flex-direction: column;
        gap: 14px;
    }
    
    .ti-powered {
        text-align: center;
    }
}

/* --- FAQ Section --- */
.faq {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.faq-image-col {
    position: relative;
}

.faq-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faq-image-wrapper:hover .faq-img {
    transform: scale(1.03);
}

.faq-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgba(22, 22, 107, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 16px 20px;
    color: var(--bg-white);
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-md);
}

.faq-badge h4 {
    color: var(--accent);
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 700;
}

.faq-badge p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
}

.align-left {
    text-align: left;
    max-width: 100%;
    margin-bottom: 30px;
}

.align-left h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.faq-container {
    width: 100%;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.faq-toggle-icon {
    font-size: 20px;
    color: var(--accent);
    font-family: monospace;
    font-weight: bold;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-bottom: 20px;
}

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

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* 2-column Testimonials Split Layout Styling */
.testimonials-split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: flex-start;
}

.testimonials-badge-col {
    position: sticky;
    top: 100px;
}

.testimonials-badge-col .trustindex-badge {
    margin: 0;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 30px;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    box-shadow: var(--shadow-sm);
    gap: 20px;
}

.testimonials-badge-col .ti-verified {
    font-size: 10px;
}

.testimonials-badge-col .ti-pow-container {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-badge-col .ti-write-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    display: flex;
}

.testimonials-list-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Lead Enquiry Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 9, 51, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

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

.modal-card {
    background-color: var(--bg-white);
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: #ef4444;
}

.modal-card .form-header {
    margin-bottom: 25px;
    text-align: center;
}

.modal-card .form-header h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.modal-card .form-header p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Strong CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 80px 0;
    color: var(--bg-white);
    background-color: var(--bg-dark);
    text-align: center;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--bg-white);
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 16px 36px;
    border-radius: 6px;
}

.btn-cta.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.btn-cta.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--bg-white);
}

.btn-cta.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.btn-cta .icon {
    width: 18px;
    height: 18px;
}

/* --- Footer --- */
.footer {
    background-color: #0b0b23;
    color: #94a3b8;
    padding: 80px 0 0 0;
    font-size: 13.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col .logo {
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 11px;
    font-weight: 700;
}

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

.footer-col h3 {
    color: var(--bg-white);
    font-size: 15px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
}

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

.footer-links a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.c-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 12px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a:hover {
    color: var(--bg-white);
}

/* --- Mobile Sticky CTA Bar --- */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.12);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-weight: 700;
    font-size: 14px;
    gap: 6px;
}

.sticky-btn.phone-btn {
    background-color: var(--bg-white);
    color: var(--primary);
}

.sticky-btn.quote-btn {
    background-color: var(--primary);
    color: var(--bg-white);
}

.sticky-btn .icon {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-info {
        text-align: center;
    }
    
    .trust-badge,
    .val-prop {
        justify-content: center;
        text-align: left;
    }
    
    .testimonials-split,
    .faq-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-badge-col {
        position: static;
    }
    
    .hero-actions,
    .hero-stats {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        order: 2;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-grid::before {
        display: none;
    }
    
    .process-step {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 20px;
    }
    
    .process-step:last-child {
        border-bottom: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on mobile */
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 64px; /* Header height */
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        align-items: stretch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 18px;
        text-align: center;
        width: 100%;
        padding: 10px 0;
    }
    
    .nav-btn {
        text-align: center;
        padding: 14px;
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .about-content h2,
    .section-header h2,
    .cta-content h2 {
        font-size: 28px;
    }
    
    .products-grid,
    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    body {
        padding-bottom: 50px; /* Space for mobile sticky CTA */
    }
    
    .mobile-sticky-cta {
        display: flex;
    }
}
