/* ============================================
   Best Car Recovery Dubai — Design System
   Koray Tugberk Framework + Modern Interactive UI
   ============================================ */

:root {
    --primary: #002366;
    --primary-dark: #001a4d;
    --primary-light: #003d99;
    --secondary: #E63946;
    --secondary-dark: #c92a37;
    --accent: #f59e0b;
    --success: #10b981;
    --text: #1a1a2e;
    --text-light: #555;
    --text-muted: #888;
    --bg: #f8f9fa;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(0, 35, 102, 0.15);
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-full: 50%;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ---- Container ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4 {
    color: var(--primary);
    line-height: 1.25;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(230, 57, 70, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    text-shadow: none;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.15rem;
}

/* ---- Header ---- */
header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.35rem;
}

.logo img {
    border-radius: 8px;
}

nav ul {
    display: flex;
    gap: 28px;
    align-items: center;
}

nav a {
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
    position: relative;
}

nav a:hover,
nav a[aria-current="page"] {
    color: var(--secondary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.nav-phone {
    background: var(--secondary) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 700 !important;
}

.nav-phone:hover {
    background: var(--secondary-dark) !important;
    transform: translateY(-1px);
}

.nav-phone::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
    position: absolute;
    left: 0;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, rgba(0, 35, 102, 0.95) 0%, rgba(0, 20, 60, 0.98) 100%);
    padding: 100px 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	color:#fff;
}

.hero-answer {
    font-size: 1.15rem;
    opacity: 1;
    line-height: 1.8;
    margin-bottom: 35px;
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge .icon {
    font-size: 1.5rem;
}

.trust-badge strong {
    display: block;
    font-size: 0.95rem;
}

.trust-badge small {
    opacity: 0.75;
    font-size: 0.8rem;
}

/* Hero Form */
.hero-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    color: var(--text);
}

.hero-form h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 35, 102, 0.1);
}

.form-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    font-family: inherit;
}

.form-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
}

/* ---- Stats Bar ---- */
.stats-bar {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ---- Sections ---- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 35, 102, 0.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* ---- Card Grid ---- */
.card-grid {
    display: grid;
    gap: 25px;
}

.card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ---- Service Cards ---- */
.service-card {
    background: var(--white);
    padding: 35px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 35, 102, 0.2);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card .features {
    padding: 0;
    margin-bottom: 20px;
}

.service-card .features li {
    padding: 4px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card .features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.card-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover {
    gap: 10px;
}

/* ---- Location Cards ---- */
.location-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.location-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.location-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ---- Extractive Answer Block (AEO) ---- */
.answer-block {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    border-left: 4px solid var(--secondary);
    padding: 20px 24px;
    background: var(--bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 30px;
}

.answer-block.alt {
    background: linear-gradient(135deg, #e8f4fd, #f0f7ff);
    border-left-color: var(--primary);
}

/* ---- How It Works ---- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 35, 102, 0.25);
}

.step-number.s1 {
    background: var(--primary);
}

.step-number.s2 {
    background: var(--secondary);
}

.step-number.s3 {
    background: var(--primary);
}

/* ---- FAQ Accordion ---- */
.faq-grid {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 22px 28px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--secondary);
}

.faq-item[open] {
    border-color: var(--primary);
}

.faq-answer {
    padding: 0 28px 22px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-section p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Content Layout ---- */
.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main section {
    margin-bottom: 60px;
}

.content-main h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* ---- Sidebar ---- */
.sidebar-cta {
    background: var(--primary);
    color: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: sticky;
    top: 100px;
}

.sidebar-cta h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.sidebar-cta p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.sidebar-cta .btn {
    display: block;
    margin-bottom: 12px;
}

.sidebar-box {
    background: var(--bg);
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-top: 25px;
}

.sidebar-box h3 {
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.sidebar-box ul li {
    margin-bottom: 12px;
}

.sidebar-box ul li a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.sidebar-box ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* ---- Table of Contents ---- */
.toc {
    background: var(--white);
    border: 2px solid var(--border);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 50px;
}

.toc h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.toc ol {
    padding-left: 20px;
    counter-reset: toc;
}

.toc li {
    margin-bottom: 10px;
}

.toc a {
    color: var(--primary);
    font-weight: 500;
}

.toc a:hover {
    color: var(--secondary);
}

/* ---- Comparison Table ---- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.comparison-table thead tr {
    background: var(--primary);
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:hover {
    background: #f0f7ff;
}

.comparison-table .check {
    color: var(--success);
    font-weight: 700;
}

.comparison-table .cross {
    color: var(--secondary);
}

/* ---- Pricing Cards ---- */
.price-card {
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.price-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.price-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.price-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---- Info Boxes ---- */
.info-box {
    padding: 20px 25px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-box.warning {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
}

.info-box.tip {
    background: #e8f4fd;
    border: 1px solid var(--primary);
    color: #1e40af;
}

.info-box.danger {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #b91c1c;
}

.info-box.success {
    background: #dcfce7;
    border: 1px solid var(--success);
    color: #166534;
}

.info-box p {
    margin: 0;
    line-height: 1.7;
}

/* ---- Feature Boxes ---- */
.feature-box {
    padding: 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-box p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-box.blue {
    background: #e8f4fd;
}

.feature-box.yellow {
    background: #fef3c7;
}

.feature-box.green {
    background: #dcfce7;
}

.feature-box.pink {
    background: #fce7f3;
}

.feature-box.purple {
    background: #e0e7ff;
}

.feature-box.orange {
    background: #fff7ed;
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
    background: var(--bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.breadcrumb-list {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    align-items: center;
}

.breadcrumb-list a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb-list a:hover {
    color: var(--secondary);
}

/* ---- Sub Hero ---- */
.sub-hero {
    background: linear-gradient(135deg, rgba(0, 35, 102, 0.95), rgba(0, 20, 60, 0.98));
    padding: 80px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sub-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.sub-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sub-hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 1;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sub-hero .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Footer ---- */
footer {
    background: #0a1628;
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.8;
    margin: 20px 0 25px;
}

.footer-col h3 {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 14px;
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-contact a {
    color: #9ca3af;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #6b7280;
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ---- WhatsApp Float ---- */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6);
    }
}

/* ---- Counters Animation ---- */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item .number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.counter-item .label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 18px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ---- Section Dividers ---- */
.section-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    max-width: 200px;
    margin: 0 auto;
    border-radius: 2px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-form {
        max-width: 500px;
        margin: 0 auto;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-cta {
        position: static;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 0;
        gap: 12px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .hero {
        padding: 70px 0 50px;
    }

    .section {
        padding: 60px 0;
    }

    .stats-grid,
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid-2 {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sub-hero {
        padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    .card-grid-3,
    .card-grid-4,
    .card-grid-2 {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .counter-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ---- Print Styles ---- */
@media print {

    header,
    footer,
    .wa-float,
    .sidebar-cta,
    .cta-section {
        display: none;
    }

    .section {
        padding: 30px 0;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* ---- Gallery Component ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    padding: 15px;
    background: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    text-align: center;
    border-top: 1px solid var(--border);
}

/* ---- In-Depth Content Specifics ---- */
.depth-section {
    padding: 40px 0;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.depth-list {
    margin: 15px 0;
    padding-left: 20px;
}

.depth-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
}

.depth-list li::before {
    content: '✔';
    position: absolute;
    left: -20px;
    color: var(--success);
    font-weight: 900;
}

.expert-tip {
    background: #fff8eb;
    border-left: 5px solid var(--accent);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PREMIUM MOBILE STICKY CTA
   ========================================================================== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #fff;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    grid-template-columns: 1fr 1fr;
    padding: 12px;
    gap: 12px;
}

.sticky-cta .btn {
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: none;
}

.sticky-cta .btn-primary {
    background: var(--primary);
    color: #fff;
}

.sticky-cta .btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: grid;
    }

    body {
        padding-bottom: 80px;
        /* Offset for sticky bar */
    }

    .wa-float {
        display: none;
        /* Hide WhatsApp bubble when bar is visible */
    }
}

/* ==========================================================================
   MICRO-ANIMATIONS & HOVER EFFECTS
   ========================================================================== */
.btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:active {
    transform: scale(0.96);
}

.btn-primary:hover {
    box-shadow: 0 12px 24px rgba(0, 35, 102, 0.3);
    transform: translateY(-2px);
}

.wa-float {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-float:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Premium Navigation Hover */
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a {
    position: relative;
    transition: color 0.3s ease;
}

/* Glassmorphism Effect */
.glass-form {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Enhancing hero section form fields */
.hero-form .form-group input,
.hero-form .form-group select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: all 0.3s ease;
}

.hero-form .form-group input:focus,
.hero-form .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 35, 102, 0.1);
}