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

:root {
    /* Colors */
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #0f766e;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    
    /* Neutrals */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1280px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 700ms ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 20px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(30, 64, 175, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-text-company {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-img-small {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 16px;
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition-base);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(15, 118, 110, 0.1) 0%, transparent 60%);
}

.hero-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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.03'%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: 10;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-tagline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--gray-500);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--transition-base);
}

.scroll-indicator:hover {
    color: var(--white);
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats-section {
    background: var(--gray-50);
    padding: 80px 0;
    position: relative;
}

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

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

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

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.about-content {
    max-width: 540px;
}

.about-text {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    border-radius: 50%;
}

.feature-item span {
    font-weight: 500;
    color: var(--gray-800);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.image-main {
    aspect-ratio: 4/5;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    text-align: center;
    min-width: 140px;
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 4px;
    line-height: 1.3;
}

/* Leadership Section */
.leadership {
    padding: 60px 0 var(--section-padding);
    background: var(--white);
}

.leadership-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
}

.leadership-content {
    position: relative;
    z-index: 1;
}

.leadership-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.leadership-text {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.leadership-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.signature-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}

.signature-title {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}

.leadership-image {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.leadership-avatar {
    width: 250px;
    height: 250px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.avatar-placeholder {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Form Messages */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Button Loader */
.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-loader::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Products Section */
.products {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.product-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

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

.product-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    border-radius: var(--radius);
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.product-card .product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 24px;
    transition: transform var(--transition-base);
}

.product-card:hover .product-img {
    transform: scale(1.02);
}

.product-card:hover .product-icon {
    background: var(--primary);
    color: var(--white);
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.product-description {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.product-link:hover {
    gap: 8px;
}

/* Services Section */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.services-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.2;
}

.service-item {
    text-align: center;
    position: relative;
}

.service-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.service-content h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.cta-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.contact-info .section-title {
    text-align: left;
}

.contact-intro {
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-text a,
.contact-text span:last-child {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-text a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

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

.btn-submit {
    margin-top: 8px;
}

.btn-submit svg {
    transition: transform var(--transition-fast);
}

.btn-submit:hover svg {
    transform: translateX(4px) translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 40px;
}

.footer-brand .logo-text-company {
    font-size: 18px;
    color: var(--white);
}

.footer-brand .logo-icon {
    background: var(--gradient-accent);
}

.footer-brand .logo-main {
    color: var(--white);
}

.footer-brand .logo-sub {
    color: var(--gray-500);
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-slower);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image {
        order: -1;
    }
    
    .leadership-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .leadership-image {
        order: -1;
    }
    
    .services-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-timeline::before {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .experience-badge {
        right: 0;
        bottom: -10px;
        padding: 16px 20px;
    }
    
    .leadership-card {
        padding: 40px 24px;
    }
    
    .leadership-avatar {
        width: 200px;
        height: 200px;
    }
    
    .avatar-placeholder {
        font-size: 3rem;
    }
    
    .services-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .cta-card {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-tagline {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        padding: 100px 0 60px;
    }
    
    .product-card {
        padding: 24px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .leadership-card {
        padding: 30px 20px;
    }
    
    .cta-card {
        padding: 30px 24px;
    }
}

/* ==========================================
   ADDITIONAL STYLES FOR NEW PAGES
   ========================================== */

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
    opacity: 0.9;
}

.page-header-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-tagline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Products Section Page */
.products-section {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.products-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.category-link {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    transition: all var(--transition-fast);
}

.category-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* Product Detail Section */
.product-detail {
    padding: 80px 0;
    background: var(--white);
}

.product-detail.alt-bg {
    background: var(--gray-50);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.product-detail-grid.reversed {
    grid-template-columns: 1.2fr 1fr;
}

.product-detail-image {
    position: relative;
}

.product-image-placeholder {
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
}

.product-image-placeholder img,
.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.product-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.chemical-bg { background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%); }
.equipment-bg { background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); }
.furniture-bg { background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%); }
.eco-bg { background: linear-gradient(135deg, #15803d 0%, #22c55e 100%); }
.scrubber-bg { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); }
.blower-bg { background: linear-gradient(135deg, #0369a1 0%, #38bdf8 100%); }
.cleanroom-bg { background: linear-gradient(135deg, #4b5563 0%, #9ca3af 100%); }

.product-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.product-detail-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.product-detail-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.product-features h3,
.product-specs h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-700);
}

.feature-check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.spec-item {
    background: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius);
}

.spec-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.spec-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--white);
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services-intro-content .section-title {
    text-align: left;
}

.services-intro-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
}

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

.service-stat {
    text-align: center;
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.stat-number-large {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-desc {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
    background: var(--white);
}

.service-detail.alt-bg {
    background: var(--gray-50);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.service-detail-grid.reversed {
    grid-template-columns: 1.2fr 0.8fr;
}

.service-icon-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.design-icon { background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); }
.install-icon { background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%); }
.maintenance-icon { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); }
.consult-icon { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); }

.service-icon-wrapper svg {
    color: var(--white);
}

.service-number-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 16px;
}

.service-detail-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Process Steps */
.service-process h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray-600);
}

.service-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.feature-tag {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    background: rgba(30, 64, 175, 0.1);
    border-radius: var(--radius-full);
}

/* Installation Includes */
.service-includes h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.include-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.include-item span {
    font-size: 15px;
    color: var(--gray-700);
}

.service-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(30, 64, 175, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 32px;
}

.service-note svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.service-note p {
    font-size: 14px;
    color: var(--gray-700);
    margin: 0;
}

/* Maintenance Packages */
.maintenance-packages h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

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

.package-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    transition: all var(--transition-fast);
}

.package-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.package-card.recommended {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius-full);
}

.package-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.package-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.package-price {
    display: block;
    font-size: 14px;
    color: var(--gray-600);
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-features li {
    font-size: 14px;
    color: var(--gray-700);
    padding-left: 20px;
    position: relative;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Consultation Areas */
.consultation-areas h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.area-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.area-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.area-content h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.area-content p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.advantage-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

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

.advantage-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.advantage-card h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Cards Section */
.contact-cards-section {
    padding: 60px 0;
    background: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

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

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-info-card.highlighted {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.contact-info-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-card > p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.contact-card-link {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 4px;
    transition: color var(--transition-fast);
}

.contact-card-link:hover {
    color: var(--primary-dark);
}

.contact-card-text {
    display: block;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Main Contact Section */
.contact-main {
    padding: 80px 0;
    background: var(--gray-50);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.contact-form-section {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 32px;
}

.form-header .section-tag {
    margin-bottom: 8px;
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--gray-600);
}

.contact-form-advanced {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
}

.quick-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quick-info-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.quick-info-card h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.quick-info-card > p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

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

.quick-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.quick-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.quick-value {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
}

a.quick-value:hover {
    color: var(--primary);
}

.expectation-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expectation-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.expectation-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.expectation-item p {
    font-size: 14px;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.5;
    padding-top: 6px;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: var(--white);
}

.map-content svg {
    color: var(--accent-light);
    margin-bottom: 16px;
}

.map-content h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.map-content p {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius);
}

.faq-question {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Responsive for New Pages */
@media (max-width: 1024px) {
    .product-detail-grid,
    .product-detail-grid.reversed,
    .services-intro,
    .service-detail-grid,
    .service-detail-grid.reversed,
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .product-detail-image,
    .service-detail-icon {
        order: -1;
    }
    
    .service-icon-wrapper {
        width: 160px;
        height: 160px;
    }
    
    .packages-grid,
    .areas-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards-section {
        margin-top: 0;
    }
    
    .contact-info-card.highlighted {
        order: -1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .includes-grid,
    .feature-list,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .services-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .product-detail,
    .service-detail {
        padding: 60px 0;
    }
    
    .product-detail-title,
    .service-detail-title {
        font-size: 1.75rem;
    }
    
    .service-number-badge {
        font-size: 3rem;
    }
    
    .packages-grid,
    .areas-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 32px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .products-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .products-section {
        position: relative;
        top: 0;
    }
}
