/* ═══════════════════════════════════════════════════
   KARIGAR SERVICES & SUPPLIES — Main Stylesheet
   Premium dark + gold theme
═══════════════════════════════════════════════════ */

:root {
    --gold: #F5A623;
    --gold-dark: #D4891A;
    --gold-light: #FFD580;
    --gold-glow: rgba(245, 166, 35, 0.25);
    --bg-dark: #0A0A0F;
    --bg-card: #111118;
    --bg-card2: #16161F;
    --border: rgba(245, 166, 35, 0.18);
    --border-soft: rgba(255, 255, 255, 0.07);
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8CC;
    --text-muted: #6B6B80;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-gold: 0 0 40px rgba(245, 166, 35, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.highlight {
    color: var(--gold);
}

.section-tag {
    display: inline-block;
    background: rgba(245, 166, 35, 0.12);
    color: var(--gold);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto;
}

/* ─── NAV ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--border-soft);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.97);
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.logo-icon.small {
    width: 34px;
    height: 34px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.08em;
}

.logo-sub {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000 !important;
    padding: 9px 22px;
    border-radius: 100px;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px 20px;
    border-top: 1px solid var(--border-soft);
    gap: 4px;
}

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-soft);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.btn-mobile {
    margin-top: 12px !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000 !important;
    text-align: center;
    padding: 14px !important;
    border-radius: var(--radius) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
    border-bottom: none !important;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -4s;
}

.orb3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.12) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -2s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 20px) scale(0.97);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid var(--border);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.8s ease both;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s 0.1s ease both;
    font-family: 'Playfair Display', serif;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeSlideUp 0.8s 0.2s ease both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeSlideUp 0.8s 0.3s ease both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4);
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(245, 166, 35, 0.55);
}

.btn-ghost {
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 166, 35, 0.05);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeSlideUp 0.8s 0.4s ease both;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── SERVICES ─── */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    /* Increased from 160px */
    gap: 24px;
    /* Increased from 16px */
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 32px 20px;
    /* Increased padding */
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.selected {
    border-color: var(--gold);
    background: rgba(245, 166, 35, 0.1);
}

.service-card.selected .service-name {
    color: var(--gold);
}

.service-emoji {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

/* Increased icon size */
.service-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.service-card.selected .service-check {
    display: block;
}

.service-check {
    display: none;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
}

/* ─── HOW IT WORKS ─── */
.how-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(245, 166, 35, 0.03) 50%, transparent);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(245, 166, 35, 0.15);
    font-family: 'Playfair Display', serif;
    margin-bottom: -8px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

/* ─── FORM ─── */
.form-section {
    padding: 100px 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.form-left h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.form-left p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.form-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    align-items: flex-start;
}

.info-item span {
    line-height: 1.5;
}

.service-form {
    background: var(--bg-card2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 22px;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.required {
    color: var(--gold);
}

.optional {
    color: var(--text-muted);
    font-weight: 400;
}

input,
select,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    background: rgba(245, 166, 35, 0.04);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

input.error,
select.error,
textarea.error {
    border-color: #FF5252;
}

.field-error {
    display: block;
    color: #FF5252;
    font-size: 0.78rem;
    margin-top: 5px;
    min-height: 16px;
}

.field-hint {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 5px;
}

.select-wrapper {
    position: relative;
}

select {
    appearance: none;
    cursor: pointer;
}

option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.8rem;
}

textarea {
    resize: vertical;
    min-height: 90px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 166, 35, 0.5);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-toast {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.form-toast.success {
    background: rgba(72, 199, 142, 0.15);
    border: 1px solid rgba(72, 199, 142, 0.3);
    color: #48C78E;
}

.form-toast.error {
    background: rgba(255, 82, 82, 0.1);
    border: 1px solid rgba(255, 82, 82, 0.3);
    color: #FF5252;
}

/* ─── CONTACT ─── */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.contact-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.contact-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card a {
    display: block;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 6px;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--gold-light);
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 6px;
}

.contact-note {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
}

.directions-link {
    color: var(--gold) !important;
    font-weight: 600 !important;
    margin-top: 8px;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-soft);
    padding: 64px 0 24px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ─── WHATSAPP MODAL & BTN ─── */
.wa-float-btn {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 999;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px 12px 16px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.wa-float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.wa-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 20px;
}

.wa-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.wa-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    opacity: 0;
}

.wa-modal-overlay.active .wa-modal {
    transform: translateY(0);
    opacity: 1;
}

.wa-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.wa-close:hover {
    color: var(--text-primary);
}

.wa-header {
    text-align: center;
    margin-bottom: 24px;
}

.wa-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.wa-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .wa-float-btn {
        bottom: 20px;
        left: 20px;
        padding: 10px 16px;
        font-size: 0;
    }

    .wa-float-btn svg {
        margin: 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu.open {
        display: flex;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-left {
        order: 1;
    }

    .form-right {
        order: 2;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        gap: 16px;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .service-form {
        padding: 28px 20px;
    }
}