/* Agrawal Distilleries - Blue brand theme */

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-darker: #1e3a8a;
    --color-primary-light: #3b82f6;
    --color-sky: #38bdf8;
    --color-accent: #60a5fa;
    --color-accent-hover: #3b82f6;
    --color-text: #0f172a;
    --color-text-light: #64748b;
    --color-bg: #ffffff;
    --color-bg-alt: #f0f7ff;
    --color-bg-warm: #fafbfc;
    --color-bg-dark: #0f172a;
    --color-border: #e2e8f0;
    --gradient-brand: linear-gradient(135deg, #38bdf8 0%, #3b82f6 40%, #2563eb 70%, #1d4ed8 100%);
    --gradient-brand-soft: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 12px rgba(37, 99, 235, 0.08);
    --shadow-md: 0 8px 24px rgba(37, 99, 235, 0.12);
    --shadow-lg: 0 16px 48px rgba(37, 99, 235, 0.16);
    --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg-warm);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar {
    padding: 12px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.2));
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-light);
    border-radius: var(--radius-pill);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
    background: rgba(37, 99, 235, 0.08);
}

.btn-primary-small {
    background: var(--gradient-brand) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35) !important;
    border: none !important;
}

.btn-primary-small:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45) !important;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-secondary-large {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-body);
}

.btn-primary,
.btn-primary-large {
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover,
.btn-primary-large:hover {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
    transform: translateY(-2px);
}

.btn-secondary,
.btn-secondary-large {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover,
.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-primary-large,
.btn-secondary-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-brand);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 60% 50% at 80% 80%, rgba(30, 58, 138, 0.4) 0%, transparent 50%);
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: #bae6fd;
    text-shadow: 0 0 40px rgba(186, 230, 253, 0.4);
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 4px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    margin: 8px auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Section common */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-pill);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* Products Overview */
.products-overview {
    padding: 100px 0;
    background: var(--color-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.25);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-brand);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.product-content {
    padding: 28px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.product-description {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.product-features {
    margin-bottom: 20px;
}

.product-features li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.9rem;
    color: var(--color-text);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.product-link {
    font-weight: 600;
    color: var(--color-primary);
}

.product-link:hover {
    color: var(--color-accent);
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.feature-card {
    padding: 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.feature-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.feature-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.services-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-intro {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.services-list {
    margin-bottom: 32px;
}

.service-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.service-details h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.service-details p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.service-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-image-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-brand);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.cta-subtitle {
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cta-section .btn-secondary-large {
    color: #fff;
    border-color: #fff;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(56, 189, 248, 0.3));
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.85;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link img {
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: opacity var(--transition);
}

.social-link:hover img {
    opacity: 1;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    opacity: 0.85;
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-sky);
    opacity: 1;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--color-sky);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: transform var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* About Page */
.page-header {
    padding: 140px 0 60px;
    background: var(--gradient-brand);
    color: #fff;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.company-overview {
    padding: 100px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.overview-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.overview-content .section-title {
    text-align: left;
}

.overview-text {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.overview-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.overview-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    flex: 1;
    min-width: 200px;
}

.stat-icon {
    font-size: 2rem;
}

.stat-value {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.mv-card {
    padding: 40px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-primary);
}

.vision-card {
    border-top-color: var(--color-sky);
}

.mv-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.mv-icon svg {
    width: 100%;
    height: 100%;
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.mv-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Core Values */
.core-values {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.value-card {
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.value-title {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.value-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Leadership Team */
.leadership-team {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.team-grid {
    display: grid;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    padding: 32px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.member-image .image-placeholder {
    width: 180px;
    height: 180px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    opacity: 0.4;
}

.member-image .image-placeholder svg {
    width: 80px;
    height: 80px;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.member-position {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.member-bio {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .services-split,
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .services-visual {
        order: -1;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 12px;
    }

    .hero-stats {
        gap: 24px;
    }

    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .member-image .image-placeholder {
        margin: 0 auto;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Breadcrumb */
.breadcrumb {
    padding: 100px 0 0;
    background: var(--color-bg-alt);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-light);
    padding: 16px 0;
}

.breadcrumb-list a:hover {
    color: var(--color-primary);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--color-border);
}

.breadcrumb-list li[aria-current] {
    color: var(--color-primary);
    font-weight: 600;
}

/* Products page */
.products-page-intro {
    padding: 60px 0 40px;
}

.products-quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.products-quick-nav a {
    padding: 10px 18px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
}

.products-quick-nav a:hover {
    background: var(--gradient-brand);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.product-detail {
    padding: 80px 0;
    scroll-margin-top: 90px;
}

.product-detail:nth-child(even) {
    background: var(--color-bg-alt);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-detail-grid.reverse .product-detail-image {
    order: 2;
}

.product-detail-grid.reverse .product-detail-content {
    order: 1;
}

.product-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-detail-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.product-detail-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-pill);
}

.product-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.product-detail-text {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.75;
}

.product-specs {
    margin: 24px 0;
    padding: 24px;
    background: var(--color-bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--color-primary);
}

.product-detail:nth-child(even) .product-specs {
    background: var(--color-bg);
}

.product-specs h3 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.product-specs ul li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 0.95rem;
}

.product-specs ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.product-detail-cta {
    margin-top: 24px;
}

/* Services page */
.services-page-intro {
    padding: 60px 0 40px;
}

.service-detail {
    padding: 80px 0;
    scroll-margin-top: 90px;
}

.service-detail:nth-child(even) {
    background: var(--color-bg-alt);
}

.service-detail-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    max-width: 900px;
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-brand);
    color: #fff;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.service-detail-icon svg {
    width: 32px;
    height: 32px;
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.service-detail-text {
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 12px;
}

.service-features {
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--color-text);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.services-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 40px 0 80px;
}

.service-card-link {
    display: block;
    padding: 28px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.service-card-link:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-card-link h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 8px;
}

.service-card-link p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Contact page */
.contact-section {
    padding: 60px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-block {
    margin-bottom: 32px;
}

.contact-info-block h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-item strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-info-item a {
    color: var(--color-text-light);
}

.contact-info-item a:hover {
    color: var(--color-primary);
}

.contact-form-wrapper {
    background: var(--color-bg);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.contact-form-intro {
    color: var(--color-text-light);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--color-bg-warm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
    font-family: var(--font-body);
}

.form-submit:hover {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
    transform: translateY(-1px);
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 12px;
    text-align: center;
}

/* FAQ (SEO content) */
.faq-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg);
    border-radius: var(--radius);
    margin-bottom: 16px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .product-detail-grid,
    .product-detail-grid.reverse {
        grid-template-columns: 1fr;
    }

    .product-detail-grid.reverse .product-detail-image,
    .product-detail-grid.reverse .product-detail-content {
        order: unset;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .service-detail-inner {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}
