/* ===================================
   K N Sompura & Grandson - Styles
   =================================== */

:root {
    /* Premium Color Palette */
    --primary-color: #165546;
    --primary-dark: #c36d0a;
    --primary-light: #cefaf0;
    --secondary-color: #FDB931;
    --accent-gold: #FDB931;
    --accent-green: #2a9d8f;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #cefaf0;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #44c99f 0%, #165546 100%);
    --gradient-secondary: linear-gradient(135deg, #FDB931 0%, #F7941D 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Roboto', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

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

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

/* ===================================
   NAVIGATION BAR - Professional Design
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 20%, 
        var(--accent-gold) 50%, 
        var(--primary-color) 80%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.navbar.scrolled::after {
    opacity: 1;
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 65px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 8px rgba(22, 85, 70, 0.2));
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-family: var(--font-primary);
    line-height: 1.2;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.15rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(22, 85, 70, 0.03);
}

.nav-link:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

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

.nav-link.active {
    color: var(--primary-color);
    background: rgba(22, 85, 70, 0.05);
    font-weight: 600;
}

.nav-link.active::before {
    transform: scaleY(1);
    background: var(--gradient-primary);
}

.nav-link.active::after {
    width: 100%;
    background: var(--gradient-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(22, 85, 70, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(22, 85, 70, 0.1);
    transition: var(--transition-normal);
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(22, 85, 70, 0.1);
    border-color: rgba(22, 85, 70, 0.2);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

/* ===================================
   CREATIVE HERO SECTION WITH SLIDER
   =================================== */

.hero-creative {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    overflow: hidden;
}

.hero-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(22, 85, 70, 0.15) 0%, transparent 50%), 
                radial-gradient(circle at 80% 70%, rgba(253, 185, 49, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero-creative-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side - Content */
.hero-creative-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge-creative {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(22, 85, 70, 0.2);
    border: 2px solid rgba(22, 85, 70, 0.4);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-badge-creative:hover {
    background: rgba(22, 85, 70, 0.3);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 185, 49, 0.2);
}

.hero-badge-creative i {
    font-size: 1rem;
    color: var(--accent-gold);
}

.hero-title-creative {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title-line-1 {
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.6s ease-out;
}

.hero-title-line-2 {
    font-size: clamp(3rem, 6vw, 5rem);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text-creative {
    background: linear-gradient(135deg, var(--accent-gold) 0%, rgba(253, 185, 49, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-line-3 {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description-creative {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-cta-creative {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out 0.8s both;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 85, 70, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 85, 70, 0.4);
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(5px);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}


/* Right Side - Image Slider */
.hero-creative-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.heroImageSwiper {
    width: 100%;
    height: 600px;
    position: relative;
}

.heroImageSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
}

.hero-image-card {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.heroImageSwiper .swiper-slide-active .hero-image-card {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(22, 85, 70, 0.25);
}

.hero-square-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.heroImageSwiper .swiper-slide-active .hero-square-image {
    transform: scale(1.1);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 85, 70, 0.1) 0%, rgba(22, 85, 70, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.heroImageSwiper .swiper-slide-active .hero-image-overlay {
    opacity: 1;
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.heroImageSwiper .swiper-slide-active .hero-image-badge {
    transform: translateY(0);
    opacity: 1;
}

.hero-image-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hero-image-badge span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Swiper Navigation */
.hero-swiper-next,
.hero-swiper-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-swiper-next:hover,
.hero-swiper-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(253, 185, 49, 0.3);
}

.hero-swiper-next::after,
.hero-swiper-prev::after {
    font-size: 1.2rem;
    font-weight: 700;
}


/* Decorative Shapes */
.hero-decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.decorative-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatShape 20s ease-in-out infinite;
    filter: blur(40px);
}

.decorative-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.decorative-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-gold);
    bottom: 15%;
    right: -3%;
    animation-delay: 5s;
}

.decorative-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(253, 185, 49, 0.6);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

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

/* ===================================
   ABOUT US PREVIEW SECTION
   =================================== */

.about-preview-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
    padding: 0;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 85, 70, 0.03) 0%, rgba(253, 185, 49, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(22, 85, 70, 0.12);
    border-color: rgba(22, 85, 70, 0.2);
}

.feature-icon-box {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.feature-icon-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(22, 85, 70, 0.9) 100%);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.1;
}

.feature-card:hover .feature-icon-box::before {
    transform: rotate(45deg) scale(1.1);
    opacity: 0.15;
}

.feature-icon-box i {
    font-size: 2.2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-box i {
    transform: scale(1.1);
    color: var(--accent-gold);
}

.feature-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.feature-text {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.7;
}

.about-preview-cta {
    margin-top: 3rem;
    text-align: center;
}

/* ===================================
   SECTIONS
   =================================== */

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    scroll-margin-top: 80px;
    overflow-x: hidden;
}

.section-alt {
    background: var(--off-white);
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   PAGE HERO SECTION
   =================================== */

.page-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    padding: 200px 0 120px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(22, 85, 70, 0.15) 0%, transparent 50%), 
                radial-gradient(circle at 80% 70%, rgba(253, 185, 49, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-hero-title .accent-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, rgba(253, 185, 49, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--accent-gold);
    transform: translateX(-2px);
}

.breadcrumb-link i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 300;
}

.breadcrumb-current {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===================================
   404 PAGE
   =================================== */

.error-404-section {
    padding: 4rem 0;
}

.error-404-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.error-404-number {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.error-404-content .section-header {
    margin-bottom: 2.5rem;
}

.error-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.error-404-actions .cta-btn-primary {
    margin: 0;
}

.error-404-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.error-404-btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.error-404-quick-links {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.error-404-quick-links p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 0.75rem;
}

.error-404-quick-links a {
    display: inline-block;
    margin: 0 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.error-404-quick-links a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===================================
   ABOUT PAGE SECTIONS
   =================================== */

/* Welcome/Introduction Section */
.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-intro-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--black);
    font-weight: 500;
}

.about-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}

/* Intro Features */
.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.intro-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(22, 85, 70, 0.05);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.intro-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 85, 70, 0.08) 0%, rgba(22, 85, 70, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.intro-feature-item:hover::before {
    opacity: 1;
}

.intro-feature-item:hover {
    background: rgba(22, 85, 70, 0.08);
    transform: translateX(8px) translateY(-3px);
    box-shadow: 0 10px 30px rgba(22, 85, 70, 0.15);
    border-left-color: var(--accent-gold);
}

.intro-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(22, 85, 70, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.intro-feature-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.intro-feature-item:hover .intro-feature-icon {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(22, 85, 70, 0.35);
}

.intro-feature-item:hover .intro-feature-icon::before {
    opacity: 0.5;
}

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

.intro-feature-content h4 {
    transition: color 0.3s ease;
}

.intro-feature-item:hover .intro-feature-content h4 {
    color: var(--primary-color);
}

.intro-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 0.5rem 0;
}

.intro-feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin: 0;
}

.about-intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.about-intro-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 85, 70, 0.1) 0%, rgba(253, 185, 49, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: var(--radius-lg);
}

.about-intro-image:hover::before {
    opacity: 1;
}

.about-intro-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(22, 85, 70, 0.25), 0 0 40px rgba(253, 185, 49, 0.15);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-intro-image:hover img {
    transform: scale(1.1);
}

/* Mission & Vision Section */
.mission-vision-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.mission-vision-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(22, 85, 70, 0.08);
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(22, 85, 70, 0.15);
    border-color: rgba(22, 85, 70, 0.2);
}

.mv-card-inner {
    padding: 3.5rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 252, 251, 1) 100%);
}

.mv-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    margin-bottom: 2rem;
}

.mv-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(22, 85, 70, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-icon-bg {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 24px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.mission-vision-card:hover .mv-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(22, 85, 70, 0.35);
}

.mission-vision-card:hover .mv-icon-bg {
    opacity: 0.6;
}

.mv-header-text {
    flex: 1;
    padding-top: 0.5rem;
}

.mv-card-header h3 {
    font-size: 1.875rem;
    color: var(--black);
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mv-subtitle {
    font-size: 0.875rem;
    color: var(--medium-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.mv-card-content {
    position: relative;
}

.mv-description {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mv-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.mv-list li:hover {
    transform: translateX(5px);
}

.mv-check-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(22, 85, 70, 0.1) 0%, rgba(22, 85, 70, 0.15) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.mv-list li:hover .mv-check-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.mv-check-icon i {
    color: var(--primary-color);
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.mv-list li:hover .mv-check-icon i {
    color: var(--white);
}

.mv-list li span {
    flex: 1;
    padding-top: 2px;
}

/* Our Values/Principles Section */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.core-value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.4s ease;
    position: relative;
}

.core-value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.core-value-card:hover::after {
    opacity: 0.05;
}

.core-value-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(22, 85, 70, 0.2);
}

.cv-icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(22, 85, 70, 0.1) 0%, rgba(22, 85, 70, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.core-value-card:hover .cv-icon-circle {
    background: var(--gradient-primary);
    transform: rotateY(360deg);
}

.cv-icon-circle i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.core-value-card:hover .cv-icon-circle i {
    color: var(--white);
}

.core-value-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.core-value-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
    position: relative;
    z-index: 1;
}


.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px dashed var(--primary-color);
    border-radius: 50px;
}

.section-subtitle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.section-title .accent-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   SERVICES SECTION - SWIPER SLIDER
   =================================== */

.services-slider-wrapper {
    position: relative;
    overflow: visible;
    margin-top: 3rem;
}

.servicesSwiper {
    width: 100%;
    padding: 0 2rem 5rem !important;
}

.servicesSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0 1rem;
}

/* Service Card Slider Styles */
.service-card-slider {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.service-card-slider:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Service Card Image */
.service-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-slider:hover .service-card-image img {
    transform: scale(1.1);
}

/* Service Card Content */
.service-card-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-desc {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 0;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.service-card-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.service-card-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-card-btn:hover::before {
    width: 400px;
    height: 400px;
}

.service-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(22, 85, 70, 0.5);
}

.service-card-btn i {
    transition: transform 0.3s ease;
}

.service-card-btn:hover i {
    transform: translateX(5px);
}

/* Swiper Navigation */
.servicesSwiper .swiper-button-next,
.servicesSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid var(--accent-gold);
}

.servicesSwiper .swiper-button-next::after,
.servicesSwiper .swiper-button-prev::after {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 900;
}

.servicesSwiper .swiper-button-next:hover,
.servicesSwiper .swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.servicesSwiper .swiper-button-next:hover::after,
.servicesSwiper .swiper-button-prev:hover::after {
    color: var(--white);
}

/* Swiper Pagination */
.servicesSwiper .swiper-pagination {
    bottom: 0 !important;
}

.servicesSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--light-gray);
    opacity: 1;
    transition: all 0.3s ease;
}

.servicesSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

/* ===================================
   PRODUCTS SECTION - MODERN DESIGN
   =================================== */

.products-showcase {
    margin-top: 3rem;
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

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

.product-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(22, 85, 70, 0.15);
}

.product-card-image-modern {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--off-white);
}

.product-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 85, 70, 0.95) 0%, rgba(22, 85, 70, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 2rem;
}

.product-card-modern:hover .product-overlay-modern {
    opacity: 1;
}

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

.product-overlay-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.product-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 185, 49, 0.3);
}

.product-overlay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 185, 49, 0.4);
    background: #f5b530;
}

.product-overlay-btn i {
    transition: transform 0.3s ease;
}

.product-overlay-btn:hover i {
    transform: translateX(5px);
}

.product-badge-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(22, 85, 70, 0.3);
    z-index: 1;
    transition: all 0.4s ease;
}

.product-card-modern:hover .product-badge-modern {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 20px rgba(22, 85, 70, 0.4);
}

.product-card-body-modern {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title-modern {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card-modern:hover .product-title-modern {
    color: var(--primary-color);
}

.product-desc-modern {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-meta-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-category-modern {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-link-modern {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(22, 85, 70, 0.2);
}

.product-link-modern:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 15px rgba(22, 85, 70, 0.3);
}

.products-cta-modern {
    text-align: center;
    margin-top: 3rem;
}


/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

#why-choose-us {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    overflow: hidden;
}

#why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(22, 85, 70, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(253, 185, 49, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

#why-choose-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 60%, rgba(22, 85, 70, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 70% 40%, rgba(253, 185, 49, 0.02) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

#why-choose-us .container {
    position: relative;
    z-index: 1;
}

#why-choose-us .section-header {
    position: relative;
    z-index: 1;
}

#why-choose-us .section-title {
    color: var(--white);
}

#why-choose-us .section-subtitle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(22, 85, 70, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

#why-choose-us .section-subtitle img {
    filter: brightness(0) invert(1);
}

#why-choose-us .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.why-choose-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.why-choose-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 85, 70, 0.1) 0%, rgba(22, 85, 70, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.why-choose-item:hover::before {
    transform: scaleX(1);
}

.why-choose-item:hover::after {
    opacity: 1;
}

.why-choose-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(22, 85, 70, 0.4);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(22, 85, 70, 0.5);
}

.why-choose-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(22, 85, 70, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.why-choose-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.why-choose-item:hover .why-choose-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 45px rgba(22, 85, 70, 0.6), 0 0 0 6px rgba(255, 255, 255, 0.15);
}

.why-choose-item:hover .why-choose-icon::before {
    opacity: 0.7;
}

.why-choose-title {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.why-choose-item:hover .why-choose-title {
    color: var(--accent-gold);
}

.why-choose-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.why-choose-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   OUR PROCESS SECTION
   =================================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    text-align: center;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(22, 85, 70, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.step-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 35px rgba(22, 85, 70, 0.5);
}

.process-step:hover .step-icon::before {
    opacity: 0.2;
    transform: scale(1.2);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(253, 185, 49, 0.4);
    border: 3px solid var(--white);
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(253, 185, 49, 0.6);
}

.step-title {
    font-size: 1.4rem;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   STATS SECTION - STANDALONE
   =================================== */

.stats-section-standalone {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    overflow: hidden;
}

.stats-section-standalone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(22, 85, 70, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(253, 185, 49, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.stats-section-standalone::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 60%, rgba(22, 85, 70, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 70% 40%, rgba(253, 185, 49, 0.02) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

/* Dark section header styles */
.stats-section-standalone .section-subtitle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.stats-section-standalone .section-subtitle img {
    filter: brightness(0) invert(1);
}

.stats-section-standalone .section-title {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.stats-section-standalone .section-title .accent-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-section-standalone .section-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Animated background shapes */
.stats-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.stats-shape {
    position: absolute;
    opacity: 0.04;
    animation: floatShape 25s ease-in-out infinite;
}

.stats-shape-1 {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--gradient-primary);
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.stats-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    bottom: -80px;
    left: 15%;
    animation-delay: 5s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-40px) translateX(40px) scale(1.1);
    }
    50% {
        transform: translateY(-80px) translateX(-40px) scale(0.9);
    }
    75% {
        transform: translateY(-40px) translateX(-80px) scale(1.05);
    }
}

.stats-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    box-shadow: 0 2px 12px rgba(22, 85, 70, 0.5);
}

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

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(22, 85, 70, 0.3);
    border-color: rgba(22, 85, 70, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.stat-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(22, 85, 70, 0.2) 0%, rgba(253, 185, 49, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(22, 85, 70, 0.25);
}

.stat-card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(22, 85, 70, 0.4);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.stat-card:hover .stat-card-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 8px 32px rgba(22, 85, 70, 0.5);
}

.stat-card:hover .stat-card-icon::after {
    opacity: 0.5;
    transform: scale(1.2);
}

.stat-card-icon i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.5s ease;
}

.stat-card:hover .stat-card-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.stat-card-content {
    position: relative;
}

.stat-card-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    text-shadow: 0 2px 20px rgba(22, 85, 70, 0.3);
}

.stat-card-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-left: 0.25rem;
}

.stat-card-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(22, 85, 70, 0.1);
    font-family: serif;
    line-height: 1;
}

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

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

/* ===================================
   CALL TO ACTION SECTION
   =================================== */

.cta-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0a1a15 0%, #165546 50%, #0f2a22 100%);
    padding: 0;
    position: relative;
    overflow: visible;
    z-index: 2;
    border-radius: 40px;
}

.cta-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.02) 35px, rgba(255, 255, 255, 0.02) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.02) 35px, rgba(255, 255, 255, 0.02) 70px);
    opacity: 0.4;
    z-index: 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 185, 49, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(22, 85, 70, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-content-wrapper {
    position: relative;
    z-index: 1;
    padding: 4rem 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(253, 185, 49, 0.4);
    margin-top: 1rem;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(253, 185, 49, 0.6);
    background: #f5b530;
}

.cta-btn-primary i {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover i {
    transform: translateX(5px);
}

/* ===================================
   FOOTER
   =================================== */

.footer-new {
    position: relative;
    width: 100%;
    margin-top: 0;
    z-index: 1;
    animation: slideInUp 0.8s ease-out;
}

.footer-main {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    border-radius: 60px 60px 0 0;
    padding: 250px 0 0;
    overflow: hidden;
    margin-top: -12rem;
    z-index: 1;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(22, 85, 70, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(253, 185, 49, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer-main .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.footer-company-name {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    font-family: var(--font-primary);
}

.footer-tagline {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.footer-social h5 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.social-icon i {
    color: #FFFFFF;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover i {
    color: #1a5490;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.footer-links-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

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

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-links-col ul li a:hover::after {
    width: 100%;
}

.footer-contact .contact-list li {
    display: flex;
    gap: 12px;
}

.contact-icon-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact .contact-list li a {
    word-break: break-word;
    display: inline-block;
    position: relative;
}

.footer-contact .contact-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-contact .contact-list li a:hover {
    color: var(--accent-gold);
}

.footer-contact .contact-list li a:hover::after {
    width: 100%;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    margin: 50px 0 30px 0;
}

.footer-credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
}

.footer-credits p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 15px;
}

.footer-credits p a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credits p a:hover {
    color: var(--accent-gold);
}

.footer-credits .made-by {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.footer-credits .made-by a {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credits .made-by a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */

.singhal-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulseWhatsApp 2s infinite;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}

.singhal-whatsapp-float:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}

.singhal-whatsapp-float i {
    text-decoration: none;
    color: white;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FDB931 0%, #F7941D 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(253, 185, 49, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #F7941D 0%, #FDB931 100%);
    box-shadow: 0 6px 20px rgba(253, 185, 49, 0.4);
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-wrapper {
    margin-top: 3rem;
}

/* Contact Info Cards Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 85, 70, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card p a.address-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.contact-info-card p a.address-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Contact Social Media Section */
.contact-social-section {
    margin: 3rem 0 4rem;
}

.contact-social-wrapper {
    background: linear-gradient(135deg, rgba(22, 85, 70, 0.05) 0%, rgba(22, 85, 70, 0.03) 100%);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.contact-social-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(22, 85, 70, 0.1);
}

.contact-social-wrapper h3 {
    font-size: 1.75rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-social-wrapper p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--light-gray);
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    min-width: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-social-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-social-icon span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(22, 85, 70, 0.15);
    background: var(--white);
}

.contact-social-icon:hover i {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.contact-social-icon:hover span {
    color: var(--primary-color);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-gray);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Form Styles */
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--off-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(22, 85, 70, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    min-height: 0;
}

.form-group.error .error-message {
    display: block;
}

.error-message:empty {
    display: none;
}

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

/* Form Actions */
.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 85, 70, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 85, 70, 0.4);
}

.btn-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form Messages */
.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: none;
    align-items: center;
    gap: 1rem;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-message h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message p {
    margin: 0;
    font-size: 0.95rem;
}

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.success-message i {
    color: #28a745;
}

.error-message-box {
    background: #f8d7da;
    border: 2px solid #e74c3c;
    color: #721c24;
}

.error-message-box i {
    color: #e74c3c;
}

/* ===================================
   SERVICE DETAIL SECTIONS
   =================================== */

.service-detail-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.service-detail-section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-detail-alt {
    background: var(--white);
}

/* Centered Header Section */
.service-detail-header {
    max-width: 1100px;
    margin: 0 auto 5rem;
    text-align: center;
    position: relative;
}

.service-detail-header .service-number {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(22, 85, 70, 0.1);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-family: 'Poppins', sans-serif;
}

.service-detail-header .service-detail-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.service-detail-header .service-detail-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.service-detail-header .service-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.service-detail-header .service-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.service-detail-reverse {
    direction: rtl;
}

.service-detail-reverse > * {
    direction: ltr;
}

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

.service-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: transform 0.4s ease;
}

.service-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(22, 85, 70, 0.2);
}

.service-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.service-image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, rgba(22, 85, 70, 0.95) 0%, rgba(253, 185, 49, 0.95) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(22, 85, 70, 0.3);
    backdrop-filter: blur(10px);
}

.service-image-badge i {
    font-size: 1rem;
}

.service-detail-content {
    position: relative;
}

.service-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.spec-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border: 2px solid rgba(22, 85, 70, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(22, 85, 70, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 85, 70, 0.15);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(22, 85, 70, 0.3);
}

.spec-content {
    text-align: left;
}

.spec-content h4 {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.spec-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.service-benefits {
    margin-bottom: 2.5rem;
}

.service-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 0.2rem 0;
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-uses {
    margin-bottom: 2.5rem;
}

.service-uses h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.uses-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.use-tag {
    background: linear-gradient(135deg, rgba(22, 85, 70, 0.1) 0%, rgba(253, 185, 49, 0.1) 100%);
    color: var(--dark-gray);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(22, 85, 70, 0.2);
    transition: all 0.3s ease;
}

.use-tag:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(22, 85, 70, 0.3);
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(22, 85, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.service-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.service-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(22, 85, 70, 0.4);
}

.service-cta-btn i {
    transition: transform 0.3s ease;
}

.service-cta-btn:hover i {
    transform: translateX(5px);
}

/* ===================================
   PRODUCTS GALLERY
   =================================== */

.products-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-gallery-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

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

.product-gallery-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(22, 85, 70, 0.15);
}

.product-gallery-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-gallery-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--off-white);
    cursor: pointer;
}

.product-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-gallery-card:hover .product-gallery-image img {
    transform: scale(1.15);
}

.product-gallery-content {
    padding: 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-gallery-card:hover .product-gallery-title {
    color: var(--primary-color);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

/* Left Side - FAQ CTA */
.faq-cta {
    position: sticky;
    top: 100px;
}

.faq-cta .section-subtitle {
    margin-bottom: 2rem;
}

.faq-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.faq-cta-desc {
    font-size: 1.05rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 85, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.faq-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 85, 70, 0.4);
}

.faq-cta-btn i {
    transition: transform 0.3s ease;
}

.faq-cta-btn:hover i {
    transform: translateX(5px);
}

/* Right Side - FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(22, 85, 70, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    gap: 2rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle:hover {
    background: var(--primary-dark);
    transform: rotate(90deg);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i::before {
    content: '\f068';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease 0.1s, 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* ===================================
   TABLET & SMALL DESKTOP (1024px)
   =================================== */
@media (max-width: 1024px) {
    /* Hero Creative Section */
    .hero-creative-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-creative-content {
        order: 1;
        text-align: center;
        align-items: center;
    }
    
    .hero-creative-slider-wrapper {
        order: 2;
        max-width: 500px;
    }
    
    .heroImageSwiper {
        height: 500px;
    }
    
    .hero-image-card {
        width: 400px;
        height: 400px;
    }
    
    /* About Preview Section */
    .about-preview-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        padding: 0.65rem 1.25rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-box {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon-box i {
        font-size: 2rem;
    }
    
    /* Page Hero Section */
    .page-hero {
        min-height: 400px;
        padding: 160px 0px 90px;
        background-attachment: scroll;
    }
    
    .page-hero-title {
        font-size: 3rem;
        margin-bottom: 1.75rem;
    }
    
    .breadcrumb-nav {
        padding: 0.875rem 1.75rem;
        gap: 0.75rem;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.9rem;
    }
    
    /* Navbar */
    .logo-text {
        letter-spacing: 0.8px;
    }
    
    .logo {
        gap: 0.85rem;
    }
    
    /* Services Section */
    .servicesSwiper {
        padding: 0 1.5rem 4rem !important;
    }
    
    .service-card-slider {
        max-width: 400px;
    }
    
    .service-card-image {
        height: 220px;
    }
    
    .service-card-content {
        padding: 2rem;
    }
    
    .service-card-content h3 {
        font-size: 1.6rem;
    }
    
    /* Products Section */
    .products-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .product-card-image-modern {
        height: 280px;
    }
    
    .product-card-body-modern {
        padding: 1.75rem;
    }
    
    .product-title-modern {
        font-size: 1.4rem;
    }
    
    /* Why Choose Us Section */
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* About Intro Content */
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-intro-image {
        order: -1;
    }
    
    /* Mission Vision */
    .mission-vision-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mv-card-inner {
        padding: 2.5rem;
    }
    
    .mv-card-header {
        gap: 1.5rem;
    }
    
    .mv-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .mv-card-header h3 {
        font-size: 1.65rem;
    }
    
    /* Core Values Grid */
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Process Section */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* About Intro Content */
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-intro-image {
        order: -1;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .about-intro-text p {
        font-size: 1rem;
    }
    
    .intro-features {
        gap: 1.25rem;
    }
    
    .intro-feature-item {
        padding: 1.25rem;
    }
    
    .intro-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .intro-feature-content h4 {
        font-size: 1rem;
    }
    
    .intro-feature-content p {
        font-size: 0.9rem;
    }
    
    /* Mission Vision */
    .mission-vision-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mv-card-inner {
        padding: 2.5rem;
    }
    
    .mv-card-header {
        gap: 1.5rem;
        margin-bottom: 1.75rem;
    }
    
    .mv-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .mv-card-header h3 {
        font-size: 1.65rem;
    }
    
    .mv-description {
        font-size: 1.05rem;
        margin-bottom: 1.75rem;
    }
    
    .mv-card-content p {
        font-size: 1rem;
    }
    
    .mv-list li {
        font-size: 0.95rem;
    }
    
    /* Core Values Grid */
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .core-value-card {
        padding: 2rem 1.5rem;
    }
    
    .cv-icon-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }
    
    .cv-icon-circle i {
        font-size: 2rem;
    }
    
    .core-value-card h3 {
        font-size: 1.35rem;
    }
    
    .core-value-card p {
        font-size: 0.95rem;
    }
    
    /* Why Choose Us Section */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-item {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-icon {
        width: 85px;
        height: 85px;
        font-size: 2.2rem;
    }
    
    .why-choose-title {
        font-size: 1.3rem;
    }
    
    .why-choose-text {
        font-size: 0.95rem;
    }
    
    /* Stats Section */
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* FAQ Section */
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-cta {
        position: static;
    }
    
    .faq-cta-title {
        font-size: 2rem;
    }
    
    /* CTA Section */  
    .cta-btn-primary {
        max-width: 300px;
        justify-content: center;
    }
    
    /* Footer Section */
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Contact Page Responsive - Tablet */
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    /* Service Detail Sections */
    .service-detail-section {
        padding: 4rem 0;
    }
    
    .service-detail-header {
        margin-bottom: 3rem;
    }
    
    .service-detail-header .service-number {
        font-size: 6rem;
    }
    
    .service-detail-header .service-detail-title {
        font-size: 2.5rem;
    }
    
    .service-detail-header .service-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-image-container img {
        height: 400px;
    }
    
    /* Products Gallery */
    .products-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .product-gallery-image {
        height: 300px;
    }
}

/* ===================================
   TABLET (768px)
   =================================== */
@media (max-width: 768px) {
    /* Hero Creative Section */
    .hero-creative {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-creative .container {
        padding: 0 1.5rem;
    }
    
    .hero-creative-wrapper {
        gap: 2.5rem;
    }
    
    .hero-badge-creative {
        font-size: 0.8rem;
        padding: 0.65rem 1.25rem;
    }
    
    .hero-title-creative {
        text-align: center;
        gap: 0.4rem;
    }
    
    .hero-title-line-1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .hero-title-line-2 {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }
    
    .hero-title-line-3 {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    }
    
    .hero-description-creative {
        text-align: center;
        max-width: 100%;
        font-size: 1rem;
    }
    
    .hero-cta-creative {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }
    
    /* About Preview Section */
    .section-header {
        margin-bottom: 3rem;
    }
    
    /* 404 Page */
    .error-404-actions {
        flex-direction: column;
    }
    
    .error-404-actions .cta-btn-primary,
    .error-404-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .error-404-quick-links a {
        display: block;
        margin: 0.5rem 0;
    }
    
    
    .section-subtitle {
        font-size: 0.8rem;
        padding: 0.65rem 1.25rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .about-preview-features {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-box {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon-box i {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .hero-creative-slider-wrapper {
        max-width: 400px;
        padding: 0;
    }
    
    .heroImageSwiper {
        height: 400px;
    }
    
    .hero-image-card {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }
    
    .hero-image-badge {
        bottom: 20px;
        left: 20px;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-image-badge i {
        font-size: 1.3rem;
    }
    
    .hero-image-badge span {
        font-size: 0.9rem;
    }
    
    .hero-swiper-next,
    .hero-swiper-prev {
        width: 40px;
        height: 40px;
    }
    
    .hero-swiper-next::after,
    .hero-swiper-prev::after {
        font-size: 1rem;
    }
    
    .decorative-shape {
        display: none;
    }
    
    
    .nav-container {
        padding: 1rem 1.25rem;
    }
    
    .logo-img {
        height: 55px;
        object-fit: contain;
    }
    
    .logo-text {
        /* font-size: 0.85rem; */
        letter-spacing: 0.5px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        gap: 0.25rem;
        border-left: 1px solid rgba(0, 0, 0, 0.06);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        width: 100%;
        padding: 1.25rem 1.5rem;
        justify-content: flex-start;
        text-transform: none;
        font-size: 1rem;
        letter-spacing: 0.3px;
        border-radius: 0;
    }
    
    .nav-link::before {
        width: 4px;
        left: 0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link.active {
        background: rgba(22, 85, 70, 0.08);
        padding-left: 2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .menu-toggle.active span {
        background: var(--white);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .footer-main {
        border-radius: 40px 40px 0 0;
    }
    
    .footer-company-name {
        font-size: 1.3rem;
        letter-spacing: 1.2px;
    }
    
    /* Page Hero Section */
    .page-hero {
        min-height: 350px;
        padding: 140px 0px 80px;
        background-attachment: scroll;
    }
    
    .page-hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb-nav {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.85rem;
    }
    
    .breadcrumb-sep {
        font-size: 0.85rem;
    }
    
    /* Products Section */
    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card-image-modern {
        height: 280px;
    }
    
    .product-card-body-modern {
        padding: 1.5rem;
    }
    
    .product-title-modern {
        font-size: 1.3rem;
    }
    
    .product-desc-modern {
        font-size: 0.95rem;
    }
    
    .product-overlay-text {
        font-size: 1rem;
    }
    
    .product-badge-modern {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Why Choose Us Section */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Process Section */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Stats Section */
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 2.5rem 2rem;
    }
    
    .stat-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-card-icon i {
        font-size: 2rem;
    }
    
    .stat-card-number {
        font-size: 2.5rem;
    }
    
    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* FAQ Section */
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .faq-cta-title {
        font-size: 1.75rem;
    }
    
    .faq-cta-desc {
        font-size: 1rem;
    }
    
    .faq-cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    /* CTA Section */
    .cta-content-wrapper {
        padding: 4rem 0 4rem;
        min-height: 300px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-btn-primary {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }
    
    /* Footer Section */
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Service Detail Sections */
    .service-detail-section {
        padding: 3rem 0;
    }
    
    .service-detail-header {
        margin-bottom: 2.5rem;
    }
    
    .service-detail-header .service-number {
        font-size: 5rem;
    }
    
    .service-detail-header .service-detail-title {
        font-size: 2rem;
    }
    
    .service-detail-header .service-detail-subtitle {
        font-size: 1.1rem;
    }
    
    .service-detail-header .service-detail-description {
        font-size: 1rem;
    }
    
    .service-detail-header .service-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-image-container img {
        height: 350px;
    }
    
    .service-benefits h3,
    .service-uses h3 {
        font-size: 1.3rem;
    }
    
    .service-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Products Gallery */
    .products-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-gallery-image {
        height: 280px;
    }
    
    .product-gallery-content {
        padding: 1.5rem;
    }
    
    .product-gallery-title {
        font-size: 1.3rem;
    }
}

/* ===================================
   MOBILE (480px)
   =================================== */
@media (max-width: 480px) {
    /* Section Headers */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.7rem;
        padding: 0.55rem 1rem;
    }
    
    .section-subtitle img {
        width: 20px;
        height: 20px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 0.5rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    /* About Intro Content */
    .about-intro-content {
        gap: 1.5rem;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    .about-intro-text p {
        font-size: 0.95rem;
    }
    
    .intro-features {
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .intro-feature-item:hover {
        transform: translateY(-3px);
    }
    
    .intro-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto;
    }
    
    .intro-feature-content h4 {
        font-size: 1rem;
    }
    
    .intro-feature-content p {
        font-size: 0.9rem;
    }
    
    /* Mission Vision */
    .mission-vision-wrapper {
        gap: 1.25rem;
    }
    
    .mv-card-inner {
        padding: 2rem;
    }
    
    .mv-card-header {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
        align-items: center;
    }
    
    .mv-icon-wrapper {
        margin: 0 auto;
    }
    
    .mv-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .mv-header-text {
        padding-top: 0;
    }
    
    .mv-card-header h3 {
        font-size: 1.5rem;
    }
    
    .mv-subtitle {
        font-size: 0.8rem;
    }
    
    .mv-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .mv-list {
        gap: 0.875rem;
    }
    
    .mv-list li {
        font-size: 0.95rem;
    }
    
    .mv-check-icon {
        width: 26px;
        height: 26px;
    }
    
    .mv-check-icon i {
        font-size: 0.7rem;
    }
    
    /* Core Values Grid */
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .core-value-card {
        padding: 2rem 1.5rem;
    }
    
    .cv-icon-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }
    
    .cv-icon-circle i {
        font-size: 2rem;
    }
    
    .core-value-card h3 {
        font-size: 1.35rem;
    }
    
    .core-value-card p {
        font-size: 0.95rem;
    }
    
    /* About Intro Content */
    .about-intro-content {
        gap: 1.5rem;
    }
    
    .about-intro-text {
        gap: 1rem;
    }
    
    /* Mission Vision */
    .mv-card-content p {
        font-size: 0.95rem;
    }
    
    .mv-list li {
        font-size: 0.9rem;
    }
    
    /* Hero Creative Section */
    .hero-creative {
        padding: 120px 0 50px;
    }
    
    .hero-creative .container {
        padding: 0 1rem;
    }
    
    .hero-creative-wrapper {
        gap: 2rem;
    }
    
    .hero-badge-creative {
        font-size: 0.75rem;
        padding: 0.6rem 1.1rem;
        gap: 0.5rem;
    }
    
    .hero-badge-creative i {
        font-size: 0.9rem;
    }
    
    .hero-title-creative {
        gap: 0.3rem;
    }
    
    .hero-description-creative {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .hero-cta-creative {
        gap: 0.75rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* About Preview Section */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    
    .section-subtitle {
        font-size: 0.75rem;
        padding: 0.6rem 1.1rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .about-preview-features {
        gap: 1.5rem;
        margin: 2.5rem 0;
    }
    
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-icon-box {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .feature-icon-box i {
        font-size: 1.8rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    
    .hero-creative-slider-wrapper {
        padding: 0;
        max-width: 350px;
    }
    
    .heroImageSwiper {
        height: 350px;
    }
    
    .hero-image-card {
        max-width: 300px;
        max-height: 300px;
        width: 100%;
        height: 100%;
        /* height: 100%; */
        /* width: calc(100vw - 2rem); */
        /* height: calc(100vw - 2rem); */
        /* max-height: 350px; */
        border-radius: 20px;
    }
    
    .hero-image-badge {
        bottom: 15px;
        left: 15px;
        padding: 0.7rem 1rem;
    }
    
    .hero-image-badge i {
        font-size: 1.1rem;
    }
    
    .hero-image-badge span {
        font-size: 0.8rem;
    }
    
    .hero-swiper-next,
    .hero-swiper-prev {
        width: 35px;
        height: 35px;
    }
    
    .hero-swiper-next::after,
    .hero-swiper-prev::after {
        font-size: 0.9rem;
    }
    
    
    
    .footer-main {
        border-radius: 30px 30px 0 0;
    }
    
    .footer-logo {
        gap: 0.75rem;
    }
    
    .footer-company-name {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 20px;
    }
    
    .footer-logo-img {
        height: 80px;
    }
    
    .footer-desc {
        font-size: 14px;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon i {
        font-size: 18px;
    }
    
    .logo {
        gap: 0.35rem;
    }
    
    .logo-text {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    /* Footer Section */
    .footer-links-col ul {
        gap: 7px;
    }
    
    .footer-credits {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-bottom: 30px;
    }
    
    .footer-credits p {
        font-size: 14px;
    }
    
    .footer-credits .made-by {
        font-size: 13px;
    }
    
    /* Services Section */
    .services-slider-wrapper {
        margin-top: 2rem;
    }
    
    .servicesSwiper {
        padding: 0 0 6rem !important;
    }
    
    .service-card-slider {
        max-width: 100%;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .service-card-content {
        padding: 1.5rem;
    }
    
    .service-card-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card-desc {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card-features {
        margin-bottom: 1.5rem;
    }
    
    .service-card-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .service-card-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    /* Move navigation buttons below cards on mobile */
    .servicesSwiper .swiper-button-next,
    .servicesSwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
        top: auto;
        bottom: 10px;
        margin-top: 0;
    }
    
    .servicesSwiper .swiper-button-prev {
        left: 50%;
        transform: translateX(-65px);
    }
    
    .servicesSwiper .swiper-button-next {
        right: 50%;
        transform: translateX(65px);
    }
    
    .servicesSwiper .swiper-button-prev:hover {
        transform: translateX(-65px);
    }
    
    .servicesSwiper .swiper-button-next:hover {
        transform: translateX(65px);
    }
    
    .servicesSwiper .swiper-button-next::after,
    .servicesSwiper .swiper-button-prev::after {
        font-size: 1.1rem;
    }
    
    /* Hide pagination on mobile */
    .servicesSwiper .swiper-pagination {
        display: none !important;
    }
    
    /* Products Section */
    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card-image-modern {
        height: 250px;
    }
    
    .product-card-body-modern {
        padding: 1.5rem;
    }
    
    .product-title-modern {
        font-size: 1.2rem;
    }
    
    .product-desc-modern {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .product-overlay-modern {
        padding: 1.5rem;
    }
    
    .product-overlay-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .product-overlay-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .product-badge-modern {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }
    
    .product-meta-modern {
        padding-top: 1.25rem;
    }
    
    .product-link-modern {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Page Hero Section */
    .page-hero {
        min-height: 350px;
        padding: 140px 0px 80px;
        background-attachment: scroll;
    }
    
    .page-hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb-nav {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.85rem;
    }
    
    .breadcrumb-sep {
        font-size: 0.85rem;
    }
    
    /* Why Choose Us Section */ 
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-item {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .why-choose-title {
        font-size: 1.2rem;
    }
    
    .why-choose-text {
        font-size: 0.9rem;
    }
    
    /* Process Section */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -10px;
        right: -10px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    /* Stats Section */
    .stats-section-standalone {
        padding: 3rem 0;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-card-icon i {
        font-size: 1.75rem;
    }
    
    .stat-card-number {
        font-size: 2.25rem;
    }
    
    .stat-card-label {
        font-size: 1rem;
    }
    
    .stats-shape {
        display: none;
    }
    
    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* FAQ Section */
    .faq-wrapper {
        gap: 2rem;
    }
    
    .faq-cta-title {
        font-size: 1.5rem;
    }
    
    .faq-cta-desc {
        font-size: 0.95rem;
    }
    
    .faq-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
        top: 15px;
        left: 15px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    /* CTA Section */
    .cta-content-wrapper {
        padding: 4rem 0 4rem;
        min-height: 280px;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.4rem;
    }
    
    .cta-btn-primary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .cta-section::before,
    .cta-section::after {
        display: none;
    }
    
    /* Contact Page Responsive - Mobile */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-card-icon {
        width: 55px;
        height: 55px;
    }
    
    .contact-card-icon i {
        font-size: 1.5rem;
    }
    
    .contact-info-card h4 {
        font-size: 1rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    .contact-social-section {
        margin: 2rem 0 3rem;
    }
    
    .contact-social-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-social-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .contact-social-wrapper p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-social-icons {
        gap: 1rem;
    }
    
    .contact-social-icon {
        padding: 1rem 1.25rem;
        min-width: 90px;
    }
    
    .contact-social-icon i {
        font-size: 1.5rem;
    }
    
    .contact-social-icon span {
        font-size: 0.8rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.75rem;
    }
    
    .contact-form-header p {
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn-submit {
        padding: 1.125rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Service Detail Sections */
    .service-detail-section {
        padding: 2.5rem 0;
    }
    
    .service-detail-header {
        margin-bottom: 2rem;
    }
    
    .service-detail-header .service-number {
        font-size: 4rem;
        top: -1rem;
    }
    
    .service-detail-header .service-detail-title {
        font-size: 1.75rem;
    }
    
    .service-detail-header .service-detail-subtitle {
        font-size: 1rem;
    }
    
    .service-detail-header .service-detail-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .service-detail-header .service-specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .service-image-container img {
        height: 280px;
    }
    
    .service-image-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .service-benefits h3,
    .service-uses h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .benefits-list li {
        font-size: 0.95rem;
    }
    
    .use-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .service-cta-btn {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Products Gallery */
    .products-gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-gallery-image {
        height: 250px;
    }
    
    .product-gallery-content {
        padding: 1.5rem;
    }
    
    .product-gallery-title {
        font-size: 1.2rem;
    }
}

