/* Dham Cabs Partner - Driver Registration Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS Variables ===== */
:root {
    --primary-color: #01685F;
    --primary-dark: #014d47;
    --secondary-color: #E27613;
    --secondary-dark: #c96510;
    --accent-color: #ff8200;
    --text-dark: #1a1a1a;
    --text-light: #545454;
    --text-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --success-color: #28a745;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-download {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-white);
    font-size: 18px;
    padding: 16px 36px;
    box-shadow: 0 4px 15px rgba(226, 118, 19, 0.4);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226, 118, 19, 0.5);
}

.btn-download-lg {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-white);
    font-size: 20px;
    padding: 20px 50px;
    box-shadow: 0 4px 15px rgba(226, 118, 19, 0.4);
}

.btn-download-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226, 118, 19, 0.5);
}

.btn-call {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 10px 20px;
}

.btn-call img {
    width: 24px;
    height: 24px;
}

.btn-call:hover {
    background: var(--primary-dark);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--text-white);
    padding: 10px 20px;
}

.btn-whatsapp img {
    width: 24px;
    height: 24px;
}

.btn-whatsapp:hover {
    background: #1da851;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-whatsapp-outline {
    border: 2px solid #25D366;
    color: #25D366;
    background: transparent;
}

.btn-whatsapp-outline:hover {
    background: #25D366;
    color: white;
}

.btn-playstore img {
    height: 50px;
    width: auto;
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(226, 118, 19, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(226, 118, 19, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(226, 118, 19, 0);
    }
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.header-top {
    background: var(--secondary-color);
    padding: 8px 0;
}

.header-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 14px;
}

.header-links a {
    color: var(--text-white);
}

.header-links a:hover {
    text-decoration: underline;
}

.navbar {
    padding: 10px 0;
}

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

.logo img {
    height: 50px;
    width: auto;
}

/* Nav Center - Download Button */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.btn-download-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-white);
    padding: 10px 25px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(226, 118, 19, 0.3);
    animation: pulse 2s infinite;
}

.btn-download-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 118, 19, 0.4);
}

.btn-download-header i {
    font-size: 18px;
}

.nav-right {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 300px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    color: var(--text-white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero h1 .highlight {
    color: var(--secondary-color);
}

.hero-tagline {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-cta {
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
}

.hero-image {
    flex: 0 0 350px;
}

.phone-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.qr-section-hero {
    text-align: center;
    color: white;
}

.qr-section-hero .qr-code {
    width: 200px;
    height: 200px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.qr-section-hero p {
    font-size: 14px;
    opacity: 0.9;
}

/* Google Play Store Badge in Hero */
.playstore-badge-hero {
    display: inline-block;
    margin-top: 15px;
    transition: var(--transition);
}

.playstore-badge-hero img {
    height: 45px;
    width: auto;
}

.playstore-badge-hero:hover {
    transform: scale(1.05);
}

/* Multilingual Download Text */
.download-text-multilang {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.download-text-multilang p {
    margin: 6px 0;
    font-size: 12px;
    opacity: 0.95;
    line-height: 1.4;
}

.download-text-multilang .lang-en {
    font-weight: 600;
    font-size: 13px;
    color: var(--secondary-color);
}

.download-text-multilang .lang-hi {
    font-size: 12px;
}

.download-text-multilang .lang-bn {
    font-size: 12px;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.section-header.light h2,
.section-header.light p {
    color: var(--text-white);
}

/* ===== Benefits Section ===== */
.benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: var(--text-white);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== Joining Offer Section ===== */
.joining-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.lang-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.lang-tab {
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.lang-tab:hover,
.lang-tab.active {
    background: white;
    color: var(--secondary-color);
    border-color: white;
}

.offer-content {
    display: none;
}

.offer-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.offer-amount {
    font-size: 60px;
    font-weight: 800;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 15px;
}

.offer-card h3 {
    text-align: center;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.offer-list {
    list-style: none;
}

.offer-list li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.offer-list li:last-child {
    border-bottom: none;
}

.offer-list i {
    color: var(--success-color);
    font-size: 20px;
    margin-top: 2px;
}

/* ===== Features Section ===== */
.features {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.feature-item {
    padding: 30px;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary-color);
    color: white;
}

.feature-item:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
}

.feature-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
}

/* ===== Service Areas ===== */
.service-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.city-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    color: white;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.city-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.city-card i {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.city-card h4 {
    font-size: 16px;
    font-weight: 500;
}

/* ===== QR Section ===== */
.qr-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.qr-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.qr-content {
    flex: 1;
}

.qr-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.qr-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.qr-tagline {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.download-steps {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.step-num {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.qr-image {
    flex: 0 0 300px;
}

.qr-frame {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 3px solid var(--primary-color);
}

.qr-frame img {
    width: 220px;
    height: 220px;
    margin-bottom: 15px;
}

.qr-frame p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== Why Drive Section ===== */
.why-drive {
    padding: 80px 0;
    background: var(--bg-white);
}

.why-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px;
}

.why-item i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 0;
    background: var(--primary-color);
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 35px;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 28px;
    color: white;
}

.contact-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-link {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-note {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
}

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

.cta-tagline {
    font-size: 22px !important;
    margin-bottom: 30px !important;
}

/* ===== Footer ===== */
.footer {
    background: #1a1a1a;
    padding: 60px 0 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background: var(--secondary-color);
}

.social-links i {
    color: white;
    font-size: 16px;
}

.footer-col h5 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    white-space: nowrap;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--secondary-color);
}

/* ===== Floating Buttons ===== */
.floating-btns {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-call {
    background: var(--primary-color);
}

.float-whatsapp {
    background: #25D366;
}

.float-btn img {
    width: 30px;
    height: 30px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero-image {
        flex: 0 0 280px;
    }

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

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }

    .nav-right .btn span {
        display: none;
    }

    .nav-right .btn {
        padding: 10px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .qr-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .qr-image {
        flex: none;
    }

    .download-steps {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .offer-amount {
        font-size: 48px;
    }

    .lang-tabs {
        flex-wrap: wrap;
    }

    .lang-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .btn-download-lg {
        font-size: 16px;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .header-links {
        font-size: 12px;
    }

    .logo img {
        height: 40px;
    }

    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-download {
        font-size: 14px;
        padding: 12px 24px;
    }

    .stat {
        padding: 10px 15px;
    }

    .stat-value {
        font-size: 22px;
    }

    .benefits,
    .features,
    .service-areas,
    .qr-section,
    .why-drive,
    .contact,
    .cta-banner {
        padding: 50px 0;
    }

    .benefit-card,
    .offer-card {
        padding: 25px;
    }

    .qr-frame img {
        width: 180px;
        height: 180px;
    }

    .cities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .floating-btns {
        bottom: 15px;
        right: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn img {
        width: 25px;
        height: 25px;
    }
}