@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0056b3; /* Deep Blue */
    --secondary-color: #00a8ff; /* Light Blue */
    --accent-color: #00d2ff; /* Very Light Blue */
    --text-main: #2b3a4a;
    --text-muted: #6b7c93;
    --bg-main: #f4f9ff;
    --bg-white: #ffffff;
    --whatsapp-green: #25D366;
    --shadow-soft: 0 8px 30px rgba(0, 86, 179, 0.08);
    --shadow-hover: 0 15px 35px rgba(0, 86, 179, 0.15);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section */
section {
    padding: 5rem 0;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.4);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: #20bd5a;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 86, 179, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

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

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
    border: 5px solid rgba(255,255,255, 0.6);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('../Images/unnamed.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(244,249,255,0.85) 100%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #f39c12;
    background: var(--bg-white);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.trust-item.blue {
    color: var(--primary-color);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.micro-line {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Dashboard / Instant Order Panel */
.instant-order {
    background: var(--bg-white);
    transform: translateY(-50px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    position: relative;
    z-index: 10;
    margin-bottom: -50px;
}

.instant-order h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.order-card {
    background: var(--bg-main);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 86, 179, 0.05);
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 168, 255, 0.3);
}

.order-card-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.order-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.order-card .btn {
    width: 100%;
}

/* Subscriptions Section */
.subscriptions {
    background-color: var(--bg-main);
}

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

.sub-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.sub-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.sub-card.popular::before {
    content: "Most Popular";
    position: absolute;
    top: 20px;
    right: -35px;
    background: #f39c12;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.sub-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
}

.sub-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.sub-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    min-height: 48px;
}

.sub-highlight {
    background: rgba(0, 168, 255, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
}

/* Products Section */
.products {
    background-color: var(--bg-white);
}

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

.product-card {
    background: var(--bg-main);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.product-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.product-features {
    margin-bottom: 25px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.product-features li i {
    color: var(--secondary-color);
}

/* Quality Section */
.quality {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 80px 0;
}

.quality h2 {
    color: var(--bg-white);
}

.quality .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.quality-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition);
}

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

.quality-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.quality-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.quality-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    background: var(--bg-white);
}

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

.testi-card {
    background: var(--bg-main);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

.stars {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testi-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact & Location Section Premium Overhaul */
.contact-section {
    background: radial-gradient(circle at top right, #f4f9ff 0%, #e0f0ff 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.contact-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 50px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 86, 179, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    transition: var(--transition);
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 120px rgba(0, 86, 179, 0.18);
}

.contact-header {
    margin-bottom: 50px;
    position: relative;
}

.contact-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.15), rgba(0, 86, 179, 0.15));
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 168, 255, 0.1);
}

.contact-header h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 168, 255, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 168, 255, 0.15);
    transition: var(--transition);
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

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

.contact-text strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 800;
}

.contact-text span, .contact-text a {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.4;
}

.contact-text a {
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.contact-text a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.contact-item:hover .contact-text a::after {
    width: 100%;
}

.location-map {
    height: 100%;
    position: relative;
}

.location-map::after {
    content: "Live Route Map";
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

.location-map .map-container {
    height: calc(100% - 70px);
    min-height: 400px;
    width: 100%;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 86, 179, 0.15);
    border: 5px solid #fff;
    border-bottom: none;
    transition: var(--transition);
}

.map-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-color);
    padding: 15px;
    border-radius: 0 0 40px 40px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 5px solid #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
}

.map-nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 400px;
    filter: grayscale(0.2) contrast(1.1);
}

/* Footer */
footer {
    background: #1a2530;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-nav ul li a:hover {
    color: var(--secondary-color) !important;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #a0aec0;
    font-size: 0.95rem;
}

.footer-info .logo {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.footer-info .logo span {
    color: var(--secondary-color);
}


/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp-green);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    background: #20bd5a;
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        order: 1;
        margin: 0 auto;
    }
    .hero-image {
        order: 2;
        margin-top: 30px;
        max-width: 400px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .trust-indicators {
        justify-content: center;
    }
    .cta-buttons {
        justify-content: center;
    }
    .instant-order {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero {
        padding-top: 100px;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }
    .cta-buttons {
        justify-content: center;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .instant-order {
        transform: translateY(-30px);
        margin-bottom: -30px;
        padding: 20px;
    }
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    .quick-links ul {
        grid-template-columns: 1fr;
    }

    /* Contact Section Mobile Fixes */
    .contact-section {
        padding: 60px 0;
    }
    .contact-box {
        padding: 40px 20px;
        border-radius: 30px;
        width: 100%;
        margin: 0 auto;
    }
    .contact-header {
        margin-bottom: 30px;
        text-align: center;
    }
    .contact-header h3 {
        font-size: 2rem;
    }
    .contact-info-list {
        gap: 20px;
    }
    .contact-item {
        padding: 10px;
        gap: 15px;
        align-items: flex-start; /* Better for long text */
    }
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-radius: 12px;
        box-shadow: 0 8px 15px rgba(0, 168, 255, 0.1);
    }
    .contact-text strong {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }
    .contact-text span, .contact-text a {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .location-map .map-container {
        min-height: 350px;
        border-radius: 30px;
        border-width: 5px;
    }
}

@media (max-width: 480px) {
    .contact-header h3 {
        font-size: 1.7rem;
    }
    .contact-box {
        padding: 30px 15px;
    }
    .contact-item {
        padding: 8px;
        gap: 12px;
    }
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .contact-text span, .contact-text a {
        font-size: 0.85rem;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
