/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --black: #000000;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.nav-logo h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.download-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn:hover {
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding-top: 80px; /* Add padding to prevent overlap with navbar */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    margin-top: 25px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.highlight {
    background: linear-gradient(45deg, #ffffff, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.typing-text {
    position: relative;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.app-download {
    margin-top: 2rem;
}

.app-download p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.download-buttons {
    display: flex;
    gap: 1rem;
}

.app-btn {
    transition: var(--transition);
}

.app-btn:hover {
    transform: scale(1.05);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

.card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.card h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Modern Mobile App Showcase */
.mobile-app-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 35px;
    padding: 8px;
    position: relative;
    box-shadow: 
        0 0 0 2px #1a252f,
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
}

.battery {
    width: 24px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: relative;
}

.battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 4px;
    width: 2px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0 1px 1px 0;
}

.battery-level {
    width: 80%;
    height: 100%;
    background: #4CAF50;
    border-radius: 1px;
}

.app-content {
    flex: 1;
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.app-header h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #FF6B6B, #FFE66D);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.map-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.map-bg {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.location-marker {
    position: absolute;
    font-size: 20px;
    animation: markerPulse 2s ease-in-out infinite;
}

.pickup-marker {
    color: #4CAF50;
    top: 20%;
    left: 25%;
}

.destination-marker {
    color: #FF5722;
    bottom: 25%;
    right: 30%;
}

.route-line {
    position: absolute;
    top: 30%;
    left: 30%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #FF5722);
    transform: rotate(25deg);
    border-radius: 2px;
    animation: routeGlow 3s ease-in-out infinite;
}

.moving-car {
    position: absolute;
    font-size: 16px;
    color: #2196F3;
    top: 45%;
    left: 35%;
    animation: carMove 4s ease-in-out infinite;
}

.booking-interface {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.location-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
}

.location-input:last-of-type {
    border-bottom: none;
    margin-bottom: 15px;
}

.from-dot {
    color: #4CAF50;
    font-size: 8px;
}

.to-dot {
    color: #FF5722;
}

.vehicle-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.vehicle-option {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border: 1px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.vehicle-option.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.vehicle-option i {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.vehicle-option span {
    display: block;
    font-size: 11px;
    font-weight: 500;
}

.vehicle-option small {
    display: block;
    font-size: 10px;
    opacity: 0.7;
}

.book-btn {
    width: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    animation: buttonPulse 2s ease-in-out infinite;
}

.home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.rating-card, .speed-card, .safe-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.rating-card {
    top: 10%;
    right: -60px;
    animation: floatUp 4s ease-in-out infinite;
}

.rating-card .stars {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 4px;
}

.speed-card {
    top: 45%;
    left: -70px;
    animation: floatUp 4s ease-in-out infinite 1s;
}

.speed-card i {
    color: #4CAF50;
    font-size: 16px;
    margin-bottom: 4px;
}

.safe-card {
    bottom: 20%;
    right: -50px;
    animation: floatUp 4s ease-in-out infinite 2s;
}

.safe-card i {
    color: #2196F3;
    font-size: 16px;
    margin-bottom: 4px;
}

.location-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.pickup {
    color: #28a745;
}

.drop {
    color: #dc3545;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatBackground 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Home Download Section */
.home-download-section {
    padding: 50px 0;
    position: relative;
    background: var(--white);
}

/* Mobile responsive for home-download-section */
@media (max-width: 1200px) {
    .home-download-section {
        padding: 25px 0 25px 0;
    }
}

@media (max-width: 992px) {
    .home-download-section {
        padding: 20px 0 20px 0;
    }
}

@media (max-width: 768px) {
    .home-download-section {
        padding: 15px 0 15px 0; /* Equal top and bottom padding */
    }
}

@media (max-width: 480px) {
    .home-download-section {
        padding: 10px 0 10px 0; /* Equal top and bottom padding */
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    color: var(--white);
}

.feature-card:hover::before {
    left: 0;
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    line-height: 1.6;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top:111px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
}
/* 🔥 ADD THIS */
/* Hydrotech Section */
.hydrotech-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.hydrotech-header {
    max-width: 800px;
    margin: 0 auto;
}

/* Logo */
/* .hydrotech-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hydrotech-logo img {
    width: auto;
    height: 100%;
    object-fit:contain;
} */

.hydrotech-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #fff; /* logo ke liye important */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hydrotech-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* 🔥 MAIN FIX */
}


/* Text Container */
.hydrotech-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hydrotech-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.brand-badge {
    background: rgba(251, 191, 36, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fbbf24;
    border: 1px solid #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Heading */
.hydrotech-header h3 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hydrotech-section {
        padding: 40px 0;
    }
    
    .hydrotech-logo {
        width: 80px;
        height: 80px;
    }
    
    .hydrotech-text h4 {
        font-size: 16px;
    }
    
    .hydrotech-header h3 {
        font-size: 26px;
    }
}


.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-content p {
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: none;
}

.service-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--secondary-color);
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Franchise CTA Section */
.franchise-cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features {
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-feature i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
}

.stat {
    margin-bottom: 1.5rem;
}

.stat h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Footer - Exact Match to Screenshot */
.footer {
    background: #2c3e50;
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr auto;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.logo-section .footer-logo img {
    height: 63px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.logo-section h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.logo-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.download-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.app-buttons {
    display: flex;
    gap: 0.8rem;
}

.app-btn img {
    height: 45px;
    width: auto;
    border-radius: 6px;
    transition: var(--transition);
}

.app-btn:hover img {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.footer-social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon.facebook { background: #4267B2; }
.social-icon.twitter { background: #1DA1F2; }
.social-icon.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.social-icon.youtube { background: #FF0000; }

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-contacts {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin: 2rem 0 1rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--white);
    flex: 1;
    max-width: 300px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1;
}

.contact-icon .fa-whatsapp {
    font-size: 1.3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.contact-number {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.2;
}

.contact-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.2;
}

.contact-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    font-weight: 300;
    height: 60px;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social-icons {
        flex-direction: row;
        justify-content: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-contacts {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-separator {
        display: none;
    }
    
    .contact-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
    
    .contact-number {
        font-size: 1rem;
    }
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.footer-brand h3 {
    margin: 1rem 0 0.5rem 0;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 300px;
}

.footer-logo .contact-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-logo .contact-info a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-download {
    transition: var(--transition);
}

.app-download:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(-10deg);
    }
    50% {
        transform: translateY(-15px) rotateY(-10deg);
    }
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes routeGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.8);
    }
}

@keyframes carMove {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateX(20px) rotate(0deg);
    }
    75% {
        transform: translateX(10px) rotate(-5deg);
    }
    100% {
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Mobile App Showcase Tablet */
    .mobile-app-showcase {
        margin-top: 2rem;
    }
    
    .phone-frame {
        width: 280px;
        height: 560px;
    }
    
    .floating-elements .rating-card, 
    .floating-elements .speed-card, 
    .floating-elements .safe-card {
        transform: scale(0.8);
    }
    
    /* Legacy phone mockup */
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile App Showcase for Tablet */
    .mobile-app-showcase {
        transform: scale(0.85);
        margin: -10px 0;
        position: relative;
    }
    
    .floating-elements .rating-card, 
    .floating-elements .speed-card, 
    .floating-elements .safe-card {
        transform: scale(0.7);
        font-size: 10px;
        padding: 8px 12px;
    }
    
    .floating-elements .rating-card {
        top: 5%;
        right: -40px;
    }
    
    .floating-elements .speed-card {
        top: 40%;
        left: -50px;
    }
    
    .floating-elements .safe-card {
        bottom: 15%;
        right: -30px;
    }
    
    /* Hero Floating Cards Tablet */
    .floating-cards .card {
        transform: scale(0.8);
        font-size: 11px;
        padding: 12px;
    }
    
    .floating-cards .card-1 {
        top: 5%;
        left: -5%;
    }
    
    .floating-cards .card-2 {
        top: 35%;
        right: -5%;
    }
    
    .floating-cards .card-3 {
        bottom: 5%;
        left: 5%;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        text-align: center;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    /* Mobile App Showcase Responsive */
    .mobile-app-showcase {
        transform: scale(0.7);
        margin: -20px 0;
        position: relative;
        overflow: visible;
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
    }
    
    .floating-elements {
        position: static;
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    .floating-elements .rating-card, 
    .floating-elements .speed-card, 
    .floating-elements .safe-card {
        position: static;
        transform: none;
        animation: none;
        margin: 5px;
        font-size: 10px;
        padding: 8px 12px;
    }
    
    /* Hero Floating Cards Mobile */
    .floating-cards {
        position: static;
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 20px 0;
        flex-wrap: wrap;
    }
    
    .floating-cards .card {
        position: static;
        animation: none;
        margin: 5px;
        font-size: 12px;
        padding: 12px;
        min-width: 100px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
    }
    
    .app-content {
        padding: 0 15px 15px;
    }
    
    .vehicle-options {
        flex-direction: column;
        gap: 8px;
    }
    
    .vehicle-option {
        padding: 8px 6px;
    }
    
    /* Old phone mockup fallback */
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .card {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Additional Page Styles */

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span:last-child {
    color: var(--white);
    font-weight: 500;
}

/* About Content */
.about-content {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--white);
}

/* Mobile responsive for about-content */
@media (max-width: 1200px) {
    .about-content {
        padding: 25px 0 25px 0;
    }
}

@media (max-width: 992px) {
    .about-content {
        padding: 20px 0 20px 0;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 15px 0 15px 0; /* Equal top and bottom padding */
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 10px 0 10px 0; /* Equal top and bottom padding */
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.image-stack {
    position: relative;
    height: 500px;
}

.image-card {
    position: absolute;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    text-align: center;
    min-width: 150px;
    animation: float 3s ease-in-out infinite;
}

.image-card.card-1 {
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    z-index: 3;
}

.image-card.card-2 {
    top: 120px;
    right: 40px;
    background: var(--gradient-secondary);
    color: var(--white);
    animation-delay: 1s;
    z-index: 2;
}

.image-card.card-3 {
    bottom: 20px;
    left: 100px;
    background: var(--gradient-success);
    color: var(--white);
    animation-delay: 2s;
    z-index: 1;
}

.image-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.image-card h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.image-card p {
    margin: 0;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    color: var(--white);
}

.value-card:hover::before {
    left: 0;
    opacity: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    line-height: 1.6;
}

.value-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.team-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.placeholder-avatar {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.team-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-info .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.team-info .social-links a:hover {
    transform: scale(1.1);
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: var(--light-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 0 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-right-color: var(--white);
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.timeline-content p {
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Navigation Active State */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-year {
        min-width: 80px;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .timeline-content {
        margin-left: 2rem;
        margin-right: 0;
    }
    
    .timeline-item .timeline-content::before {
        content: '';
        position: absolute;
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
        border: 10px solid transparent;
        border-right-color: var(--white);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .timeline-year {
        min-width: 60px;
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .image-stack {
        height: 400px;
    }
    
    .image-card {
        min-width: 120px;
        padding: 1.5rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }
}

/* Services Detail Page Styles */
.services-detail {
    padding: 100px 0;
    margin-top: 50px;
}

/* Mobile responsive for services-detail */
@media (max-width: 1200px) {
    .services-detail {
        padding: 25px 0 25px 0;
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .services-detail {
        padding: 20px 0 20px 0;
        margin-top: 18px;
    }
}

@media (max-width: 768px) {
    .services-detail {
        padding: 15px 0 15px 0; /* Equal top and bottom padding */
        margin-top: 15px; /* Add some top margin to balance */
    }
}

@media (max-width: 480px) {
    .services-detail {
        padding: 10px 0 10px 0; /* Equal top and bottom padding */
        margin-top: 10px; /* Equal spacing */
    }
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    margin-bottom: 3rem;
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.service-detail-card .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem;
    text-align: center;
    font-size: 4rem;
}

.service-detail-card .service-content {
    padding: 2.5rem;
}

.service-detail-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-card > .service-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features,
.service-pricing {
    margin-bottom: 2rem;
}

.service-features h3,
.service-pricing h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-features ul {
    list-style: none;
    margin-bottom: 0;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--light-color);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-weight: 500;
}

.price-item:last-child {
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--light-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step-card p {
    line-height: 1.6;
    margin: 0;
}

/* Safety Features Section */
.safety-features {
    padding: 100px 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.safety-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.safety-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.safety-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.safety-card p {
    line-height: 1.6;
    margin: 0;
}

/* App Download CTA Section */
.app-download-cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.app-download-cta .cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-feature i {
    color: rgba(255, 255, 255, 0.8);
}

.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.app-store-btn {
    transition: var(--transition);
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.app-store-btn img {
    height: 60px;
}

/* Additional Service Page Responsive Design */
@media (max-width: 1024px) {
    .app-download-cta .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-detail-card .service-content {
        padding: 2rem;
    }
    
    .service-detail-card h2 {
        font-size: 1.5rem;
    }
    
    .steps-grid,
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .service-detail-card .service-icon {
        padding: 2rem;
        font-size: 3rem;
    }
    
    .service-detail-card .service-content {
        padding: 1.5rem;
    }
    
    .step-card,
    .safety-card {
        padding: 2rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
}

/* Franchise Page Styles */
.franchise-hero {
    padding: 100px 0;
}

/* Mobile responsive for franchise-hero */
@media (max-width: 1200px) {
    .franchise-hero {
        padding: 25px 0 25px 0;
    }
}

@media (max-width: 992px) {
    .franchise-hero {
        padding: 20px 0 20px 0;
    }
}

@media (max-width: 768px) {
    .franchise-hero {
        padding: 15px 0 15px 0; /* Equal top and bottom padding */
    }
}

@media (max-width: 480px) {
    .franchise-hero {
        padding: 10px 0 10px 0; /* Equal top and bottom padding */
    }
}

.franchise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.franchise-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.franchise-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.franchise-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.highlight-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.highlight-item p {
    margin: 0;
    font-size: 0.95rem;
}

.franchise-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    margin: 0;
    color: var(--secondary-color);
}

/* Investment Details */
.investment-details {
    padding: 100px 0;
    background: var(--light-color);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.investment-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.investment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.investment-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.investment-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
}

.period {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.investment-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.investment-card.featured .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-features i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.investment-card.featured .plan-features i {
    color: rgba(255, 255, 255, 0.9);
}

/* Support & Training */
.support-training {
    padding: 100px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.support-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: var(--light-color);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.story-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.story-image .placeholder-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 2rem;
}

.story-content h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.location {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.rating {
    text-align: center;
    margin-bottom: 1.5rem;
}

.rating i {
    color: #ffc107;
    margin: 0 2px;
}

.testimonial {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.story-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.story-stats .stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Franchise Process */
.franchise-process {
    padding: 100px 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    margin: 0;
    line-height: 1.6;
}

/* Apply Now Section */
.apply-now {
    padding: 100px 0;
    background: var(--light-color);
}

.apply-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.apply-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apply-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.apply-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item i {
    font-size: 1.2rem;
    color: var(--success-color);
}

.apply-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.franchise-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.btn-full {
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 50px 0;
}

/* Mobile responsive for contact-section */
@media (max-width: 1200px) {
    .contact-section {
        padding: 25px 0 25px 0;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 20px 0 20px 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 15px 0 15px 0; /* Equal top and bottom padding */
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 10px 0 10px 0; /* Equal top and bottom padding */
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card > p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-text p {
    margin: 0;
    line-height: 1.6;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.social-contact {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-contact h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.social-contact .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.form-card h2 {
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Quick Contact */
.quick-contact {
    padding: 100px 0;
    background: var(--light-color);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.quick-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.faq-category h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h4 {
    margin: 0;
    color: var(--dark-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--light-color);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--light-color);
}

.map-container {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.map-placeholder h3 {
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive Design for Franchise and Contact Pages */
@media (max-width: 1024px) {
    .franchise-content,
    .apply-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .franchise-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-card.featured {
        transform: none;
    }
    
    .investment-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .franchise-text h2,
    .apply-text h2 {
        font-size: 2rem;
    }
    
    .franchise-stats {
        grid-template-columns: 1fr;
    }
    
    .stories-grid,
    .support-grid,
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-card,
    .form-card,
    .apply-form {
        padding: 2rem;
    }
    
    .franchise-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 50px 0 100px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.legal-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 2px solid var(--light-color);
}

.sidebar-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.legal-nav {
    list-style: none;
    margin-bottom: 2rem;
}

.legal-nav li {
    margin-bottom: 0.8rem;
}

.legal-nav a {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.legal-nav a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.legal-nav a.active {
    background: var(--primary-color);
    color: var(--white);
}

.last-updated {
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.last-updated p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.legal-main {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-color);
}

.legal-section h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.legal-section h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem 0;
}

.legal-section p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section li strong {
    color: var(--dark-color);
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-box ul {
    margin-left: 1.5rem;
    margin-bottom: 0;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box p {
    margin: 0;
    color: #856404;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    border: 1px solid #e9ecef;
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-method p {
    margin: 0;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.response-time {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--success-color);
}

.response-time p {
    margin: 0;
    color: var(--dark-color);
}

.policy-footer {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    border-top: 3px solid var(--primary-color);
}

.policy-footer p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.policy-footer p:last-child {
    margin-bottom: 0;
}

/* Table Styles for Legal Pages */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    box-shadow: var(--shadow-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.legal-table th {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
}

.legal-table tr:hover {
    background: var(--light-color);
}

.legal-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-sidebar {
        position: relative;
        top: auto;
    }
    
    .sidebar-content {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
    }
    
    .sidebar-content h3 {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .legal-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 0;
    }
    
    .legal-nav li {
        margin-bottom: 0;
    }
    
    .legal-nav a {
        padding: 0.5rem 1rem;
        white-space: nowrap;
    }
    
    .last-updated {
        flex-basis: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .legal-main {
        padding: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .highlight-box,
    .warning-box {
        padding: 1.5rem;
    }
    
    .legal-table {
        font-size: 0.9rem;
    }
    
    .legal-table th,
    .legal-table td {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .legal-main {
        padding: 1.5rem;
    }
    
    .legal-section ul,
    .legal-section ol {
        margin-left: 1.5rem;
    }
    
    .sidebar-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .legal-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .legal-nav a {
        text-align: center;
    }
    
    .contact-method {
        padding: 1rem;
    }
}

/* Pricing Section Styles */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23007bff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-table-wrapper {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    margin: 3rem 0;
    position: relative;
}

.pricing-table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    display: table;
}

.pricing-header {
    background: var(--gradient-primary);
    color: var(--white);
    display: table-row;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-header .pricing-cell {
    padding: 20px 15px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pricing-row {
    display: table-row;
    transition: var(--transition);
    position: relative;
}

.pricing-row:nth-child(even) {
    background: #f8f9fa;
}

.pricing-row:hover {
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 123, 255, 0.1) 50%, rgba(0, 123, 255, 0.05) 100%);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.pricing-row.popular {
    background: linear-gradient(90deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    position: relative;
}

.pricing-row.popular::before {
    content: '🔥 POPULAR';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--success-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.pricing-row.special {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.pricing-cell {
    display: table-cell;
    padding: 20px 15px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.pricing-cell.vehicle-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-color);
}

.pricing-cell.vehicle-type i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
}

.pricing-cell.vehicle-type small {
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 0.85rem;
}

.pricing-cell.duration {
    font-weight: 600;
    color: var(--info-color);
    font-size: 1.1rem;
}

.pricing-cell.price {
    font-weight: 700;
    color: var(--success-color);
    font-size: 1.3rem;
    position: relative;
}

.pricing-cell.price .suv-price {
    display: block;
    color: var(--warning-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
}

.book-now-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.book-now-btn:hover::before {
    left: 100%;
}

.book-now-btn:active {
    transform: translateY(0);
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.pricing-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pricing-feature i {
    font-size: 1.5rem;
    color: var(--success-color);
    min-width: 30px;
}

.pricing-feature span {
    font-weight: 600;
    color: var(--dark-color);
}

.pricing-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-top: 2rem;
}

.pricing-cta h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.pricing-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.pricing-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsiveness for Pricing */
@media (max-width: 1024px) {
    .pricing-table-wrapper {
        overflow-x: auto;
    }
    
    .pricing-table {
        min-width: 800px;
    }
    
    .pricing-cell {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .pricing-cell.vehicle-type {
        gap: 10px;
    }
    
    .pricing-cell.vehicle-type i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-table {
        min-width: 700px;
    }
    
    .pricing-cell {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .pricing-cell.vehicle-type {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .pricing-cell.vehicle-type i {
        font-size: 1.2rem;
    }
    
    .pricing-cell.price {
        font-size: 1.1rem;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-feature {
        padding: 1rem;
    }
    
    .pricing-cta {
        padding: 2rem 1rem;
    }
    
    .pricing-cta h3 {
        font-size: 1.5rem;
    }
    
    .pricing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .pricing-table {
        min-width: 600px;
    }
    
    .pricing-cell {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .pricing-header .pricing-cell {
        font-size: 0.75rem;
        padding: 15px 6px;
    }
    
    .pricing-cell.price {
        font-size: 1rem;
    }
    
    .pricing-row.popular::before {
        font-size: 0.7rem;
        padding: 3px 10px;
        right: 10px;
    }
    
    .book-now-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        margin-top: 8px;
    }
}

/* New Footer Contact Row Styles */
.footer-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.contact-item small {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.footer-social .social-links {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.footer-social .social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* Service Card Pricing Styles */
.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--success-color);
    margin: 1rem 0;
    text-align: center;
}

.service-book-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.service-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.service-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.service-book-btn:hover::before {
    left: 100%;
}

/* App Downloads in Footer - Matching Screenshot */
.footer .app-downloads {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.footer .app-download {
    display: block;
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
}

.footer .app-download img {
    height: 45px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.footer .app-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer .app-download:hover img {
    filter: brightness(1.1);
}

/* Mobile Responsiveness for New Footer */
@media (max-width: 768px) {
    .footer-contact-row {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem 0;
    }
    
    .contact-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--border-radius);
        width: 100%;
        max-width: 300px;
    }
    
    .footer-social .social-links {
        gap: 0.5rem;
    }
    
    .footer-social .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-contact-row {
        gap: 1rem;
    }
    
    .contact-item span {
        font-size: 1rem;
    }
    
    .contact-item small {
        font-size: 0.8rem;
    }
}

/* New Footer Styles - Exact Match to Screenshot */
.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.app-downloads {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.app-download {
    display: block;
    transition: var(--transition);
}

.app-download img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition);
}

.app-download:hover {
    transform: translateY(-2px);
}

.app-download:hover img {
    filter: brightness(1.1);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Contact Numbers Row - Exact Match to Screenshot */
.footer-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin: 2rem 0 1rem 0;
    max-width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    flex: 1;
}

.contact-item:first-child {
    justify-content: flex-start;
}

.contact-item:nth-child(3) {
    justify-content: center;
}

.contact-item:last-child {
    justify-content: flex-end;
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--white);
    margin-right: 0.3rem;
}

.contact-item span {
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
}

.contact-item small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
}

.contact-separator {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 1rem;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile Responsiveness for New Footer Design */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .footer-social {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-contact {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }
    
    .contact-separator {
        display: none;
    }
    
    .contact-item {
        justify-content: center !important;
        padding: 0.8rem 1rem;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        width: 100%;
        max-width: 320px;
        flex: none;
    }
    
    .footer-links {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer .app-downloads {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .footer .app-download img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-item span {
        font-size: 0.9rem;
    }
    
    .contact-item small {
        font-size: 0.8rem;
    }
}
.franchise-hero {
    position: relative; /* IMPORTANT */
}

.franchise-top-right {
    position: absolute;
    top: 30px;
    right: 113px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.franchise-logo {
    height: 150px;
    width: auto;
       /* height ke hisaab se */
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-sizing: border-box;
}

.download-btn {
    background: linear-gradient(135deg, #6f42c1, #8e6cff);
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-btn:hover {
    opacity: 0.9;
}

@media (max-width: 1200px) {
    .franchise-top-right {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 15px auto 15px auto;
        gap: 12px;
    }

    .franchise-logo {
        height: 100px;
        width: auto;
        padding: 6px;
    }
    
    .download-btn {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 18px;
    }
}

@media (max-width: 992px) {
    .franchise-top-right {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 12px auto 12px auto;
        gap: 10px;
    }
    
    .franchise-logo {
        height: 90px;
        width: auto;
        padding: 5px;
    }
    
    .download-btn {
        padding: 7px 11px;
        font-size: 12px;
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .franchise-top-right {
        position: relative; /* Change from absolute to relative */
        top: auto;
        right: auto;
        flex-direction: row; /* Keep items in same row */
        align-items: center;
        justify-content: center; /* Center the content */
        margin: 10px auto 10px auto; /* Equal top and bottom margins */
        gap: 10px; /* Smaller gap */
    }

    .franchise-logo {
        height: 80px; /* Smaller logo for mobile */
        width: auto;
        padding: 4px; /* Add some padding inside */
    }
    
    .download-btn {
        padding: 6px 10px; /* Smaller button padding */
        font-size: 12px; /* Smaller font size */
        border-radius: 15px; /* Smaller border radius */
    }
}

@media (max-width: 480px) {
    .franchise-top-right {
        flex-direction: row; /* Keep in same row */
        gap: 8px; /* Even smaller gap */
        margin: 8px auto 8px auto; /* Equal spacing for small phones */
    }
    
    .franchise-logo {
        height: 60px; /* Even smaller for small phones */
    }
    
    .download-btn {
        padding: 4px 8px; /* Even smaller button */
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0; /* Prevent button from shrinking */
    }
}
.support-card ul {
    margin-top: 16px;
    padding-left: 0;
    list-style: none;
}

.support-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 10px;
}

.support-card ul li::before {
    content: "•";
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
}

.value-list {
    margin-top: 12px;
    padding-left: 18px;
}

.value-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Card overall */
.value-card {
    text-align: center; /* heading & icon center */
}

/* List container */
.value-card ul {
    list-style: none;
    padding-left: 0;
    margin: 16px auto 0;
    max-width: 90%;
}

/* List items proper left alignment */
.value-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;        /* 🔥 MAIN FIX */
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Custom bullet */
.value-card ul li::before {
    content: "•";
    font-size: 20px;
    line-height: 1;
    margin-top: 3px;
}


/* Parent section must be relative */
.services-detail {
    position: relative;
    overflow: visible;   /* important */
}

/* Right side image + download button */
.right-download-box {
    position: absolute;
    top: 10px;
    right: 117px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
       /* 🔥 main reason it was hidden */
}

/* Image styling */
.right-download-img {
    height: 170px;
    width: auto;
    background: #fff;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Comprehensive responsive breakpoints for right-download-box */
@media (max-width: 1200px) {
    .right-download-box {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin: 15px auto 15px auto;
        padding: 0 15px;
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .right-download-img {
        height: 100px;
        width: auto;
        padding: 6px;
    }
    
    .download-btn {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 18px;
    }
}

@media (max-width: 992px) {
    .right-download-box {
        margin: 12px auto 12px auto;
        gap: 10px;
    }
    
    .right-download-img {
        height: 90px;
        padding: 5px;
    }
    
    .download-btn {
        padding: 7px 11px;
        font-size: 12px;
        border-radius: 16px;
    }
}

/* Mobile devices (phones, 768px and below) */
@media (max-width: 768px) {
    .right-download-box {
        position: relative; /* Remove absolute positioning */
        top: auto;
        right: auto;
        justify-content: center; /* Center the content */
        margin: 10px auto 10px auto; /* Equal top and bottom margins */
        padding: 0 15px;
        width: 100%;
        flex-direction: row; /* Keep items in same row */
        align-items: center;
        gap: 10px; /* Match franchise page gap */
    }
    
    .right-download-img {
        height: 80px; /* Match franchise logo size */
        width: auto;
        padding: 4px; /* Add padding like franchise logo */
    }
    
    .download-btn {
        padding: 6px 10px; /* Smaller button padding */
        font-size: 12px; /* Smaller font size */
        border-radius: 15px; /* Smaller border radius */
    }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
    .right-download-box {
        flex-direction: row; /* Keep in same row instead of column */
        gap: 8px; /* Match franchise page gap */
        margin: 8px auto 8px auto; /* Equal top and bottom margins */
    }
    
    .right-download-img {
        height: 60px; /* Match franchise logo size */
    }
    
    .download-btn {
        padding: 4px 8px; /* Even smaller button */
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0; /* Prevent button from shrinking */
    }
}

/* Download button */
.download-btn {
    background: #6f42c1;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.download-btn:hover {
    opacity: 0.9;
}

/* Mobile fix - Updated to work with new layout */
@media (max-width: 768px) {
    .right-download-box {
        position: static;
        justify-content: center; /* Center instead of flex-end */
        margin-bottom: 0; /* Remove bottom margin completely */
    }
}
