/* ========================================
   Sagar Enterprises - Main Stylesheet
   Modern, Professional IT Business Website
   ======================================== */

/* CSS Custom Properties */
:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #EEF2FF;
    --primary-50: #E0E7FF;
    --text-dark: #1E293B;
    --text-body: #475569;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-subtle: #F1F5F9;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
    --whatsapp: #25D366;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    font-family: var(--font);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.813rem;
}

.btn-full {
    width: 100%;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    border-color: var(--whatsapp);
    padding: 12px 24px;
}

.btn-whatsapp:hover {
    background: #1EBE5A;
    border-color: #1EBE5A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.063rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
    padding: 16px 0;
}

.header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.logo-icon {
    display: flex;
    align-items: center;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

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

.header-cta {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-light) 100%);
    overflow: hidden;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
}

/* Hero Illustration */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.illustration-monitor {
    position: relative;
    z-index: 2;
}

.monitor-screen {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    min-height: 240px;
    box-shadow: var(--shadow-lg);
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.screen-line {
    height: 10px;
    background: var(--primary-light);
    border-radius: 4px;
    width: 80%;
}

.screen-line.short {
    width: 50%;
}

.screen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.grid-item {
    height: 60px;
    background: var(--bg-subtle);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.monitor-stand {
    width: 40px;
    height: 30px;
    background: var(--border);
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
}

.monitor-base {
    width: 100px;
    height: 8px;
    background: var(--border);
    margin: 0 auto;
    border-radius: 4px;
}

.floating-element {
    position: absolute;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

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

.fe-2 {
    bottom: 60px;
    left: -20px;
    animation-delay: 1.5s;
}

.fe-3 {
    bottom: 20px;
    right: -10px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== CATEGORIES ========== */
.categories {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.category-card {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-white);
    transition: all var(--transition);
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.category-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    color: var(--primary);
}

.category-icon svg {
    width: 100%;
    height: 100%;
}

.category-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.category-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ========== PRODUCTS ========== */
.products {
    padding: 80px 0;
    background: var(--bg-light);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-body);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

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

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

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

.product-card.hidden {
    display: none;
}

.product-image {
    padding: 24px;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.product-placeholder {
    width: 80px;
    height: 80px;
    opacity: 0.6;
}

.product-placeholder svg {
    width: 100%;
    height: 100%;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 6px;
    display: block;
}

.product-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.838rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-specs {
    margin-bottom: 16px;
    padding-left: 0;
}

.product-specs li {
    font-size: 0.788rem;
    color: var(--text-body);
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.product-specs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-50);
    border: 1.5px solid var(--primary);
    transform: translateY(-50%);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.product-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    font-style: italic;
}

/* ========== SERVICES ========== */
.services {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.service-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-white);
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.063rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== WHY US ========== */
.why-us {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.why-us-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.why-us-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-us-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    color: var(--primary);
}

.why-us-icon svg {
    width: 100%;
    height: 100%;
}

.why-us-card h3 {
    font-size: 1.063rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-us-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== ABOUT ========== */
.about {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.about .section-title {
    text-align: left;
}

.about-lead {
    font-size: 1.125rem;
    color: var(--text-body);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
}

.highlight-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-image-placeholder {
    width: 100%;
    max-width: 360px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-image-placeholder svg {
    width: 100%;
    height: auto;
}

/* ========== BRANDS ========== */
.brands {
    padding: 60px 0;
    background: var(--bg-light);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    min-height: 80px;
    transition: all var(--transition);
}

.brand-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-50);
}

.brand-placeholder {
    font-size: 0.938rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.brands-note {
    text-align: center;
    font-size: 0.838rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ========== ENQUIRY ========== */
.enquiry {
    padding: 80px 0;
    background: var(--bg-white);
}

.enquiry-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.enquiry .section-title {
    text-align: left;
    font-size: 1.75rem;
}

.enquiry-lead {
    font-size: 1.063rem;
    color: var(--text-light);
    margin: 16px 0 28px;
}

.enquiry-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.enquiry-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-body);
}

.enquiry-feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

.enquiry-whatsapp p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.enquiry-form-wrapper {
    background: var(--bg-light);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.938rem;
    font-family: var(--font);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' 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: 40px;
}

/* ========== CONTACT ========== */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.contact-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.placeholder-text {
    color: var(--text-muted);
    font-style: italic;
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 380px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: var(--bg-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
}

.map-placeholder p {
    font-size: 0.838rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 280px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--text-dark);
    color: #CBD5E1;
    padding: 60px 0 0;
}

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

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: #fff;
}

.footer-about p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #94A3B8;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 0.938rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: #94A3B8;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.838rem;
    color: #94A3B8;
}

.footer-contact svg {
    color: #64748B;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
}

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

.footer-bottom p {
    font-size: 0.813rem;
    color: #64748B;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

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

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 12px 24px;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 340px;
        margin: 0 auto;
    }

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

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

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

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

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

    .about .section-title {
        text-align: center;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-text {
        text-align: center;
    }

    .about-text .btn {
        margin: 0 auto;
    }

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

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

    .enquiry .section-title {
        text-align: center;
    }

    .enquiry-lead {
        text-align: center;
    }

    .enquiry-features {
        align-items: center;
    }

    .enquiry-whatsapp {
        text-align: center;
    }

    .enquiry-form-wrapper {
        padding: 24px;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

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

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

    .products-filter {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.788rem;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========== FORM SUCCESS STATE ========== */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-success p {
    color: var(--text-light);
    font-size: 0.938rem;
}

/* Print styles */
@media print {
    .header, .mobile-toggle, .btn, .footer-social {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .hero {
        padding-top: 20px;
    }
}
