/* ==========================================
   SATISH AGENCY - REFINED GLASSMORPHISM
   Compact, Aligned, Professional
   ========================================== */

/* ============ VARIABLES ============ */
:root {
    --bg-dark:      #0a0a1f;
    --bg-mid:       #12122e;
    --purple:       #8b5cf6;
    --pink:         #ec4899;
    --gold:         #f59e0b;
    --blue:         #3b82f6;
    --teal:         #14b8a6;
    --white:        #ffffff;
    --text:         #e2e8f0;
    --text-mute:    #94a3b8;
    --glass-bg:     rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:       16px;
    --radius-sm:    12px;
    --radius-lg:    20px;
}

/* ============ RESET ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    line-height: 1.5;
    position: relative;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
/* Keep image layout stable and use object-fit where appropriate */
.product-img img,
.gallery-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
button { border: none; background: none; font-family: inherit; cursor: pointer; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============ GLASSMORPHISM ============ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: inherit;
}

.glass-card:hover::before {
    opacity: 1;
}

/* ============ BACKGROUND BLOBS ============ */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: blobFloat 25s infinite ease-in-out;
}

.blob-1 {
    width: 450px; height: 450px;
    background: linear-gradient(45deg, var(--purple), var(--pink));
    top: -150px; left: -150px;
}

.blob-2 {
    width: 400px; height: 400px;
    background: linear-gradient(45deg, var(--blue), var(--teal));
    top: 50%; right: -150px;
    animation-delay: -8s;
}

.blob-3 {
    width: 400px; height: 400px;
    background: linear-gradient(45deg, var(--gold), var(--pink));
    bottom: -150px; left: 40%;
    animation-delay: -15s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-40px, 30px) scale(0.95); }
}

/* ============ GRADIENTS ============ */
.gradient-text {
    background: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-purple { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.gradient-pink   { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.gradient-blue   { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.gradient-gold   { background: linear-gradient(135deg, #f59e0b, #f97316); }
.gradient-gold-full { background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706); }

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1180px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 31, 0.75);
    padding: 8px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--pink));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span {
    font-size: 16px;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-text small {
    font-size: 9px;
    color: var(--text-mute);
    letter-spacing: 3px;
    margin-top: 2px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.nav-link {
    padding: 7px 16px;
    border-radius: 25px;
    color: var(--text-mute);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-glass {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-glass:hover {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(9px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-9px); }

/* ============ HERO (CLEAN, NO OVERLAP) ============ */
.hero {
    position: relative;
    width: 100%;
    height: calc(85vh + 100px);
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    background: #000;
    margin-top: 0;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.hero-bottom { z-index: 1; }

.hero-top {
    z-index: 2;
    -webkit-mask-image: radial-gradient(
        circle 110px at var(--x, -500px) var(--y, -500px),
        transparent 0,
        transparent 85px,
        rgba(0,0,0,0.3) 100px,
        black 130px
    );
    mask-image: radial-gradient(
        circle 110px at var(--x, -500px) var(--y, -500px),
        transparent 0,
        transparent 85px,
        rgba(0,0,0,0.3) 100px,
        black 130px
    );
    transition: -webkit-mask-image 0.15s ease, mask-image 0.15s ease;
}

.hero-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
    pointer-events: none;
    animation: floatHint 3s infinite ease-in-out;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}

@keyframes floatHint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

/* ============ HERO INFO STRIP (Below Hero) ============ */
.hero-info {
    padding: 60px 0 40px;
    position: relative;
}

.hero-info-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 10px;
    color: white;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
    border-radius: 25px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 14px;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-mute);
    margin-bottom: 26px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.hero-info-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.feature-pill:hover {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.pill-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-pill h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.feature-pill p {
    font-size: 12px;
    color: var(--text-mute);
}

/* ============ SECTIONS (COMPACT) ============ */
.section {
    padding: 60px 0;
    position: relative;
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-head .section-badge {
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 14px;
    color: var(--text-mute);
    line-height: 1.6;
}

/* ============ ABOUT GRID ============ */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-card {
    padding: 24px 20px;
    text-align: left;
    position: relative;
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.about-card p {
    color: var(--text-mute);
    font-size: 13px;
    line-height: 1.5;
}

/* ============ STATS ============ */
.stats-section {
    padding: 20px 0 40px;
}

.stats-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 30px 24px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.stat-num,
.stat-plus {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-plus {
    font-size: clamp(22px, 2.5vw, 30px);
}

.stat p {
    color: var(--text-mute);
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-top: 6px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============ FILTER TABS ============ */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.filter-tab {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-mute);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.filter-tab:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* ============ PRODUCTS GRID (SMALLER, PERFECT ALIGN) ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.product-card.hidden-card { display: none; }
.product-card.show-card { display: flex; animation: cardFadeIn 0.4s ease forwards; }

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}




.product-card:hover {
transform: translateY(-4px);
border-color: rgba(139, 92, 246, 0.4);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.product-img {
aspect-ratio: 1;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #1e293b, #334155);
display: flex;
align-items: center;
justify-content: center;
}


/* 
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease; 
}


.product-card:hover .product-img img {
    filter: grayscale(0%);
}


.product-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.product-img {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
}
*/


.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-img .emoji {
    font-size: 42px;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3));
}

.product-info {
    padding: 12px 14px;
    text-align: center;
}

.product-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-tag {
    display: inline-block;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.product-card.featured {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(245, 158, 11, 0.3);
}

.product-card.featured .product-tag {
    color: var(--pink);
}

/* ============ GALLERY (BETTER LAYOUT) ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    aspect-ratio: 4/3;
    transition: var(--transition);
}

.gallery-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, #1e293b, #334155);
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.1);
}

.gallery-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 31, 0.95) 0%, rgba(10, 10, 31, 0.3) 50%, transparent 100%);
    z-index: 2;
    transition: opacity 0.3s;
}

.gallery-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 3;
    color: white;
}

.gallery-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
    border-radius: 15px;
    text-transform: uppercase;
}

.gallery-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: white;
}

.gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 20px 0 40px;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 32px 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.05));
}

.cta-card .section-badge {
    margin-bottom: 12px;
}

.cta-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin-bottom: 6px;
}

.cta-card p {
    color: var(--text-mute);
    font-size: 13px;
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ============ CONTACT SECTION ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 20px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.info-text {
    flex: 1;
    min-width: 0;
}

.info-text h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-text a,
.info-text p {
    display: block;
    color: white;
    font-size: 13px;
    line-height: 1.5;
    transition: var(--transition);
    word-break: break-word;
}

.info-text a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form-card {
    padding: 28px;
}

.form-header {
    margin-bottom: 22px;
}

.form-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.form-header p {
    color: var(--text-mute);
    font-size: 13px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-field {
    margin-bottom: 14px;
}

.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: white;
    font-size: 13px;
    font-family: inherit;
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.form-field select option {
    background: var(--bg-dark);
    color: white;
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    margin-top: 6px;
}

.btn-submit:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-submit .btn-loading { display: none; }
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loading { display: inline; }

.btn-submit .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============ FOOTER ============ */
.footer {
    padding: 30px 0;
}

.footer-card {
    padding: 32px 28px 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
    color: var(--text-mute);
    font-size: 13px;
    line-height: 1.6;
    margin-top: 12px;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: white;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col a,
.footer-col p {
    display: block;
    color: var(--text-mute);
    font-size: 12px;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    color: var(--text-mute);
    font-size: 12px;
}

.tagline {
    color: var(--gold) !important;
    font-style: italic;
}

/* ============ FLOATING BUTTONS ============ */
.float-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: pulseWA 2s infinite;
    transition: var(--transition);
}

.float-wa:hover {
    transform: scale(1.1);
}

@keyframes pulseWA {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    transform: translateY(-2px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
    .hero-info-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-info-right {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .feature-pill {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        padding: 8px 14px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: 10px;
        left: 10px;
        flex-direction: column;
        padding: 16px;
        background: rgba(10, 10, 31, 0.95);
        backdrop-filter: blur(30px);
        border-radius: 16px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .btn-glass {
        display: none;
    }

    .hero {
    height: calc(70vh + 100px);
    min-height: 500px;
}
    .section {
        padding: 40px 0;
    }

    .hero-info {
        padding: 40px 0 20px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 20px 10px;
        padding: 24px 16px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-card {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .float-wa {
        bottom: 16px;
        right: 16px;
        width: 46px;
        height: 46px;
    }

    .back-to-top {
        bottom: 16px;
        left: 16px;
    }

    .cta-card {
        padding: 24px 18px;
    }

    .hero-info-right {
        flex-direction: column;
    }

    .feature-pill {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn-primary, .btn-secondary {
        justify-content: center;
        width: 100%;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-actions a {
        width: 100%;
        justify-content: center;
    }
}