/* ============================================= */
/* DESIGN SYSTEM - CSS VARIABLES                 */
/* ============================================= */
:root {
    /* Primary Colors - Green & Navy */
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;

    --navy-50: #f0f4ff;
    --navy-100: #dbe4ff;
    --navy-200: #bac8ff;
    --navy-300: #91a7ff;
    --navy-400: #748ffc;
    --navy-500: #4c6ef5;
    --navy-600: #3b5bdb;
    --navy-700: #1e3a5f;
    --navy-800: #0f2744;
    --navy-900: #0a1a2e;
    --navy-950: #060f1c;

    /* Semantic Colors */
    --primary: #16a34a;
    --primary-dark: #15803d;
    --primary-light: #22c55e;
    --secondary: #1e3a5f;
    --secondary-dark: #0f2744;
    --accent: #4ade80;

    /* Background */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafb;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0a1a2e;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    --text-white: #ffffff;
    --text-on-dark: #e2e8f0;

    /* Borders */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 4px 14px 0 rgba(22, 163, 74, 0.25);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 6px 16px rgba(0, 0, 0, 0.04);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #16a34a, #22c55e);
    --gradient-hero: linear-gradient(135deg, #0a1a2e 0%, #1e3a5f 50%, #15803d 100%);
    --gradient-text: linear-gradient(135deg, #16a34a, #4ade80);
    --gradient-card: linear-gradient(135deg, rgba(22, 163, 74, 0.03), rgba(30, 58, 95, 0.03));

    /* Spacing */
    --section-py: 100px;
    --container-max: 1300px;
    --container-px: 24px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Font */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
}

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

/* ============================================= */
/* COMMON UTILITIES                              */
/* ============================================= */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--green-50);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    border: 1px solid var(--green-200);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================= */
/* BUTTONS                                       */
/* ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.35);
}

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

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

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ============================================= */
/* NAVBAR                                        */
/* ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1380px;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
}

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

/* Footer logo bigger for brand visibility */
.footer-logo img {
    height: 75px;
}

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

.nav-link {
    padding: 6px 7px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

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

.nav-cta-link {
    background: var(--gradient-primary) !important;
    color: var(--text-white) !important;
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    margin-left: 2px;
    font-size: 0.78rem !important;
}

.nav-cta-link:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-green);
}

/* Download Profile Button */
.nav-download-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    background: var(--green-50) !important;
    border: 1.5px solid var(--green-300);
    border-radius: var(--radius-sm) !important;
    margin-left: 2px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.nav-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.08), transparent);
    transition: left 0.5s ease;
}

.nav-download-btn:hover::before {
    left: 100%;
}

.nav-download-btn:hover {
    color: var(--text-white) !important;
    background: var(--gradient-primary) !important;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.nav-download-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.nav-download-btn:hover .nav-download-icon {
    animation: downloadBounce 0.6s ease infinite;
}

@keyframes downloadBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

/* Corporate Login Button */
.nav-corporate-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: var(--text-white) !important;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700)) !important;
    border: 1.5px solid var(--navy-600);
    border-radius: var(--radius-sm) !important;
    margin-left: 2px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(15, 39, 68, 0.25);
}

.nav-corporate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.5s ease;
}

.nav-corporate-btn:hover::before {
    left: 100%;
}

.nav-corporate-btn:hover {
    color: var(--text-white) !important;
    background: linear-gradient(135deg, var(--navy-700), var(--primary-dark)) !important;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 39, 68, 0.35);
}

.nav-corporate-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.nav-corporate-btn:hover .nav-corporate-icon {
    transform: translateX(2px);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-toggle.active .hamburger-line:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================= */
/* HERO SECTION                                  */
/* ============================================= */
.hero {
    position: relative;
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(22, 163, 74, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 222, 128, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(30, 58, 95, 0.1) 0%, transparent 50%);
    background-size: cover;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(22, 163, 74, 0.15);
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #4ade80, #86efac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-on-dark);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
    opacity: 0.9;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero .btn-outline {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(74, 222, 128, 0.1);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

/* Hero Image Slider */
.hero-slider {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-slides-track {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: var(--radius-full);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

/* Float badges - now relative to slider */
.hero-image-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: float 4s ease-in-out infinite;
    z-index: 5;
}

.float-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.float-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 56px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ============================================= */
/* ABOUT SECTION                                 */
/* ============================================= */
.about {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.about-exp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-green);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

.about-story,
.about-vision {
    margin-bottom: 24px;
}

.about-story h3,
.about-vision h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.about-story p,
.about-vision p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.value-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.value-card:hover {
    border-color: var(--green-300);
    background: var(--green-50);
    transform: translateY(-2px);
}

.value-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.value-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.value-card p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin: 0;
    line-height: 1.3;
}

/* ============================================= */
/* SERVICES SECTION                              */
/* ============================================= */
.services {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

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

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-200);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-primary);
}

.service-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    color: var(--text-white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 10px;
}

.link-arrow {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

/* ============================================= */
/* SUPPORT / FEATURES TABLE SECTION              */
/* ============================================= */
.support {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.support-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    margin-bottom: 64px;
}

.support-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.support-table thead {
    background: var(--secondary);
}

.support-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-white);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.support-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.support-table tbody tr {
    transition: var(--transition-fast);
}

.support-table tbody tr:hover {
    background: var(--green-50);
}

.support-table tbody tr:last-child td {
    border-bottom: none;
}

.table-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.85rem;
}

.table-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.status-active {
    background: var(--green-50);
    color: var(--primary);
    border: 1px solid var(--green-200);
}

.status-icon {
    width: 14px;
    height: 14px;
}

/* Delivery Grid */
.delivery-grid {
    margin-top: 32px;
}

.delivery-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.delivery-title-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.delivery-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.delivery-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.delivery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-300);
}

.delivery-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: var(--radius-md);
    margin: 0 auto 16px;
}

.delivery-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.delivery-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.delivery-time {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.delivery-desc {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ============================================= */
/* ORDER PROCESS SECTION                         */
/* ============================================= */
.process {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 30%, rgba(22, 163, 74, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(74, 222, 128, 0.05) 0%, transparent 50%);
}

.process .section-badge {
    background: rgba(22, 163, 74, 0.15);
    color: var(--accent);
    border-color: rgba(22, 163, 74, 0.3);
}

.process .section-title {
    color: var(--text-white);
}

.process .section-subtitle {
    color: var(--text-on-dark);
    opacity: 0.8;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(22, 163, 74, 0.2) 100%);
}

.process-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 36px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-white);
    box-shadow: var(--shadow-green);
    position: relative;
    z-index: 2;
}

.step-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    flex: 1;
    transition: all var(--transition-base);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(22, 163, 74, 0.3);
    transform: translateX(6px);
}

.step-icon-wrap {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, 0.15);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.step-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-on-dark);
    opacity: 0.8;
    line-height: 1.7;
}

/* ============================================= */
/* CORPORATE GIFTING SECTION                     */
/* ============================================= */
.gifting {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.gifting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gifting-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.gifting-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.gift-cat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.gift-cat:hover {
    border-color: var(--green-300);
    background: var(--green-50);
    transform: translateX(6px);
}

.gift-cat-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.gift-cat h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.gift-cat p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.gifting-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============================================= */
/* CLIENTS SECTION                               */
/* ============================================= */
.clients {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

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

.client-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-300);
}

.client-logo-img {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px 16px;
}

.client-logo-img img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: none;
    transition: var(--transition-base);
}

.client-card:hover .client-logo-img img {
    transform: scale(1.05);
}

.client-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.client-industry {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* ============================================= */
/* CONTACT SECTION                               */
/* ============================================= */
.contact {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    padding: 36px;
    color: var(--text-white);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.15), transparent);
    border-radius: 50%;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, 0.15);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.info-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-on-dark);
    opacity: 0.8;
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--text-tertiary);
    pointer-events: none;
    z-index: 1;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 12px 14px 12px 44px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: var(--transition-fast);
    outline: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--text-tertiary);
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper .input-icon {
    top: 14px;
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.error-msg {
    display: block;
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 4px;
    min-height: 18px;
}

.input-wrapper.error input,
.input-wrapper.error textarea {
    border-color: #ef4444;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

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

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

/* ============================================= */
/* GOOGLE MAPS EMBED                             */
/* ============================================= */
.contact-map-section {
    margin-top: 64px;
    position: relative;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.map-header-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.map-pin-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.map-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.map-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.map-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    background: var(--bg-secondary);
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.map-container:hover {
    box-shadow: var(--shadow-2xl);
    border-color: var(--green-300);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 450px;
    border: none;
    border-radius: var(--radius-xl);
}

/* ============================================= */
/* TOAST NOTIFICATION                            */
/* ============================================= */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--bg-card);
    border: 1px solid var(--green-200);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 400px;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.toast-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-title {
    font-size: 0.95rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.toast-msg {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.toast-close {
    padding: 4px;
    color: var(--text-tertiary);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.toast-close:hover {
    color: var(--text-primary);
}

.toast-close-icon {
    width: 18px;
    height: 18px;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    width: 100%;
    transform-origin: left;
    animation: toast-progress 5s linear forwards;
    animation-play-state: paused;
}

.toast.show .toast-progress {
    animation-play-state: running;
}

@keyframes toast-progress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

/* ============================================= */
/* FOOTER                                        */
/* ============================================= */
.footer {
    background: var(--bg-dark);
    padding: 64px 0 0;
    color: var(--text-on-dark);
}

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

.footer-logo .logo-office {
    color: var(--text-white);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

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

.footer-links-col ul li a,
.footer-links-col ul li span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-links-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================= */
/* BACK TO TOP BUTTON                            */
/* ============================================= */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    box-shadow: var(--shadow-green);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.top-icon {
    width: 22px;
    height: 22px;
}

/* ============================================= */
/* RESPONSIVE - TABLET                           */
/* ============================================= */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    /* Tablet Nav — hamburger menu for iPad Air, iPad etc */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 65%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 80px 32px 32px;
        box-shadow: var(--shadow-2xl);
        transition: right var(--transition-base);
        gap: 4px;
        z-index: 1000;
        align-items: stretch;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-cta-link {
        text-align: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .nav-download-btn {
        margin-left: 0 !important;
        margin-top: 4px;
        justify-content: center;
        width: 100%;
        padding: 12px 16px !important;
    }

    .nav-corporate-btn {
        margin-left: 0 !important;
        margin-top: 4px;
        justify-content: center;
        width: 100%;
        padding: 12px 16px !important;
    }

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

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-image {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gifting-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gifting-image {
        order: -1;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-map-section {
        margin-top: 48px;
    }

    .map-container iframe {
        min-height: 380px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================= */
/* RESPONSIVE - MOBILE                           */
/* ============================================= */
@media (max-width: 768px) {
    :root {
        --section-py: 64px;
        --container-px: 16px;
    }


    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* About */
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Support Table */
    .support-table {
        font-size: 0.8rem;
    }

    .support-table th,
    .support-table td {
        padding: 10px 12px;
    }

    .delivery-cards {
        grid-template-columns: 1fr 1fr;
    }

    /* Process */
    .timeline-line {
        display: none;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1rem;
    }

    /* Clients */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-map-section {
        margin-top: 40px;
    }

    .map-container iframe {
        min-height: 300px;
    }

    .map-title {
        font-size: 1.15rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Toast */
    .toast {
        right: 16px;
        left: 16px;
        bottom: 16px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .delivery-cards {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 1.75rem;
    }
}

/* ============================================= */
/* RESPONSIVE - MOBILE LANDSCAPE                 */
/* ============================================= */
/* Jab mobile ghumao (landscape) — screen wide but short hoti hai */
@media (max-width: 926px) and (orientation: landscape) {
    :root {
        --section-py: 48px;
        --container-px: 24px;
    }

    /* Hero — landscape mein full height nahi chahiye */
    .hero {
        min-height: auto;
        padding: 80px 0 50px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: left;
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-cta-group {
        justify-content: flex-start;
        margin-bottom: 24px;
    }

    .hero-cta-group .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding-top: 16px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Hero slider — landscape mein dikhe */
    .hero-image,
    .hero-slider {
        display: block !important;
    }

    .hero-slides-track {
        aspect-ratio: 16 / 9;
    }

    .hero-image-float {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    /* Navbar — landscape mein bhi hamburger menu use karo */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh; /* dynamic viewport height — landscape ke liye better */
        background: var(--bg-primary);
        flex-direction: column;
        padding: 70px 28px 28px;
        box-shadow: var(--shadow-2xl);
        transition: right var(--transition-base);
        gap: 2px;
        z-index: 1000;
        align-items: stretch;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        padding: 10px 14px;
        font-size: 0.92rem;
    }

    .nav-cta-link {
        text-align: center;
        margin-left: 0;
        margin-top: 6px;
    }

    .nav-download-btn {
        margin-left: 0 !important;
        margin-top: 4px;
        justify-content: center;
        width: 100%;
        padding: 10px 14px !important;
    }

    .nav-corporate-btn {
        margin-left: 0 !important;
        margin-top: 4px;
        justify-content: center;
        width: 100%;
        padding: 10px 14px !important;
    }

    .navbar {
        padding: 8px 0;
    }

    .navbar.scrolled {
        padding: 6px 0;
    }

    .nav-logo img {
        height: 40px;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Grids — landscape mein 2 columns use karo */
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .service-card h3 {
        font-size: 0.95rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .delivery-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .delivery-card {
        padding: 16px 12px;
    }

    .delivery-time {
        font-size: 1.2rem;
    }

    .gifting-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gifting-image {
        order: 0;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .client-card {
        padding: 20px 12px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 24px;
    }

    .contact-info-card {
        padding: 24px;
    }

    .contact-form {
        padding: 24px;
    }

    /* Process timeline */
    .process-step {
        margin-bottom: 20px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 0.9rem;
    }

    .step-card {
        padding: 16px 20px;
    }

    /* Map */
    .map-container iframe {
        min-height: 280px;
    }

    .contact-map-section {
        margin-top: 36px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
    }

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

    /* Toast */
    .toast {
        bottom: 12px;
        right: 12px;
        max-width: 340px;
        padding: 14px 18px;
    }

    /* Back to top */
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* ============================================= */
/* RESPONSIVE - SMALL MOBILE LANDSCAPE           */
/* ============================================= */
/* Chhote phones jab landscape mein ho (iPhone SE etc.) */
@media (max-height: 420px) and (orientation: landscape) {
    :root {
        --section-py: 36px;
    }

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

    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 20px;
    }

    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .hero-badge {
        padding: 4px 12px;
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .hero-cta-group {
        margin-bottom: 16px;
    }

    .hero-cta-group .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding-top: 12px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-suffix {
        font-size: 0.9rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    /* Navbar even smaller */
    .nav-logo img {
        height: 35px;
    }

    /* Mobile nav panel */
    .nav-links {
        padding: 60px 24px 24px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    /* Sections compact */
    .section-header {
        margin-bottom: 28px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 4px 14px;
    }

    /* About */
    .about-image-wrapper img {
        min-height: 200px;
    }

    /* Footer compact */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* ============================================= */
/* RESPONSIVE - TABLET LANDSCAPE                 */
/* ============================================= */
/* iPad aur tablets jab landscape mein ho */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    :root {
        --section-py: 64px;
    }

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

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: left;
    }

    .hero-image,
    .hero-slider {
        display: block !important;
    }

    .hero-subtitle {
        margin: 0 0 24px;
    }

    .hero-cta-group {
        justify-content: flex-start;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .delivery-cards {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .gifting-image {
        order: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.3fr;
    }

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

/* ============================================= */
/* RESPONSIVE - TABLET PORTRAIT                  */
/* ============================================= */
/* iPad portrait mode specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

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

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* ============================================= */
/* LARGE SCREENS (1400px+)                       */
/* ============================================= */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero-container {
        gap: 80px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================= */
/* ULTRA-WIDE SCREENS (1800px+)                  */
/* ============================================= */
@media (min-width: 1800px) {
    .container {
        max-width: 1600px;
    }

    :root {
        --section-py: 120px;
    }

    .hero {
        padding: 160px 0 100px;
    }
}