/* Modern Green Eco-Friendly Theme - Phase 2 Rebuild */
:root {
    /* Color System */
    --primary-color: #009900;
    --primary-dark: #007f00;
    --primary-light: #00b300;
    --secondary-color: #00cc66;
    --accent-color: #99ff99;

    /* Neutral Colors */
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #F9FAFB;
    --background-light: #F3F4F6;
    --background-white: #FFFFFF;

    /* UI Elements */
    --card-bg: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-green: rgba(0, 127, 0, 0.2);

    --gradient-primary: linear-gradient(135deg, #009900 0%, #00b300 100%);
    --gradient-hero: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));

    /* Spacing Scale (4pt grid) */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;

    /* Typography Scale */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */

    /* Layout Constraints */
    --container-max-width: 1280px;
    --container-padding: 2rem;
    --border-radius: 12px;

    /* Breakpoints */
    --breakpoint-mobile: 480px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;
    --breakpoint-wide: 1280px;
}

/* Global Styles */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", "Arial", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Enhanced Hover Effects */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(46, 139, 87, 0.2);
}

.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

/* Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Segoe UI", "Arial", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 var(--space-4) 0;
}

h1 {
    font-size: var(--text-4xl);
    line-height: 1.25;
}

h2 {
    font-size: var(--text-3xl);
    line-height: 1.25;
}

h3 {
    font-size: var(--text-2xl);
    line-height: 1.25;
}

h4 {
    font-size: var(--text-xl);
    line-height: 1.5;
}

h5 {
    font-size: var(--text-lg);
    line-height: 1.5;
}

h6 {
    font-size: var(--text-base);
    line-height: 1.5;
    font-weight: 600;
}

p {
    line-height: 1.625;
    margin-bottom: var(--space-4);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Text utility classes */
.text-wrap {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.text-nowrap {
    white-space: nowrap;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Image utilities */
.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
}

/* List styles */
ul,
ol {
    margin-bottom: var(--space-4);
    padding-left: var(--space-8);
}

ul li,
ol li {
    margin-bottom: var(--space-2);
    line-height: 1.625;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

/* Nested lists */
ul ul,
ol ul {
    margin-top: var(--space-2);
    margin-bottom: var(--space-2);
}

ul ol,
ol ol {
    margin-top: var(--space-2);
    margin-bottom: var(--space-2);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: "Segoe UI", "Arial", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px var(--shadow-green);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-green);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-8);
}

.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.grid-auto-fill {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-8);
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Grid gap utilities */
.gap-xs {
    gap: var(--space-1);
}

.gap-sm {
    gap: var(--space-2);
}

.gap-md {
    gap: var(--space-4);
}

.gap-lg {
    gap: var(--space-6);
}

.gap-xl {
    gap: var(--space-8);
}

.gap-2xl {
    gap: var(--space-12);
}

.gap-3xl {
    gap: var(--space-16);
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

/* Flex alignment utilities */
.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.items-stretch {
    align-items: stretch;
}

.items-baseline {
    align-items: baseline;
}

/* Flex justification utilities */
.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

/* Flex item utilities */
.flex-1 {
    flex: 1 1 0%;
}

.flex-auto {
    flex: 1 1 auto;
}

.flex-initial {
    flex: 0 1 auto;
}

.flex-none {
    flex: none;
}

.flex-grow {
    flex-grow: 1;
}

.flex-shrink {
    flex-shrink: 1;
}

/* Header & Navigation - Modern Redesign */
header {
    background-color: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

/* Product Details Gallery Styles */
.product-gallery {
    position: relative;
    margin-bottom: var(--space-6);
}

.product-gallery .main-image {
    width: 100%;
    height: 450px;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-4);
    overflow: hidden;
}

.product-gallery .main-image img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-gallery .main-image:hover img {
    transform: scale(1.02);
}

.product-gallery .thumbnail-gallery {
    display: flex;
    gap: var(--space-2);
    overflow-x: auto;
    padding-bottom: var(--space-2);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) var(--background-light);
}

.product-gallery .thumbnail-gallery::-webkit-scrollbar {
    height: 6px;
}

.product-gallery .thumbnail-gallery::-webkit-scrollbar-track {
    background: var(--background-light);
    border-radius: 3px;
}

.product-gallery .thumbnail-gallery::-webkit-scrollbar-thumb {
    background-color: var(--primary-light);
    border-radius: 3px;
}

.product-gallery .thumbnail-gallery img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: contain;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    background-color: var(--background-white);
    padding: 4px;
    transition: all 0.2s ease;
}

.product-gallery .thumbnail-gallery img:hover,
.product-gallery .thumbnail-gallery img.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--accent-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Dropdown Menu - Simplified */
.dropdown {
    position: relative;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn {
    position: relative;
    padding-right: 15px;
}

.dropbtn::after {
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropbtn::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown .dropbtn.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    top: 100%;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
    border: 1px solid rgba(46, 139, 87, 0.1);
    padding: 0.5rem 0;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.dropdown-content a i {
    color: var(--primary-color);
    width: 20px;
    font-size: 1rem;
}

.dropdown-content a:hover {
    color: var(--primary-color);
    background-color: #f0fff0;
    border-left-color: var(--primary-color);
    padding-left: 1.5rem;
}

.dropdown-content a.view-all {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    font-weight: 600;
    color: var(--primary-color);
}

.dropdown-content a.view-all:hover {
    background-color: var(--primary-color);
    color: white;
}

.dropdown-content a.view-all i {
    color: inherit;
}

/* Hero Slider - Modern Cinematic Design */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    /* Increased for cinematic feel */
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 15s ease-in-out infinite;
}

@keyframes zoomIn {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    padding: var(--space-8);
    max-width: 900px;
    width: 90%;
    z-index: 3;
    animation: slideUp 1s ease-out;
}

.slide-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slide-content .subtext {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.3s;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-control:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
    left: 20px;
}

.slider-control.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
    gap: 8px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background-color: var(--primary-color);
    border-color: white;
    transform: scale(1.2);
}

/* Base Card Component System */
.card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--shadow-green);
    border-color: var(--primary-color);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-header {
    padding: var(--space-6);
    border-bottom: 1px solid var(--border-color);
}

.card-body {
    padding: var(--space-6);
    flex-grow: 1;
}

.card-footer {
    padding: var(--space-6);
    margin-top: auto;
    border-top: 1px solid var(--border-color);
}

/* Feature Cards - Modern Design */
.feature-card {
    display: flex;
    flex-direction: column;
    background: white;
    padding: var(--space-8);
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 139, 87, 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-green);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--space-6);
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-4);
    color: var(--text-dark);
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

.feature-card ul {
    margin: var(--space-4) 0 0 var(--space-6);
    color: #666;
}

.feature-card li {
    margin-bottom: var(--space-2);
    position: relative;
    padding-left: var(--space-4);
}

.feature-card li::before {
    content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Product Cards - Enhanced Design */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-green);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px var(--shadow-green);
    border-color: var(--primary-color);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.featured-products {
    padding: var(--space-12) 0;
    background: white;
}

.product-card-content {
    padding: var(--space-6);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.product-card ul {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
    flex-grow: 1;
}

.product-card ul li {
    margin-bottom: var(--space-1);
    color: #666;
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
}

.product-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.section-title.text-left {
    text-align: left;
}

.section-title.text-left::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts */
.features-grid,
.product-grid,
.testimonials-grid,
.faq-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {

    .features-grid,
    .product-grid,
    .testimonials-grid,
    .faq-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonial Cards */
.testimonial-card {
    display: flex;
    flex-direction: column;
    background: white;
    padding: var(--space-8);
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
    border-left: 4px solid var(--primary-color);
    height: 100%;
}

.testimonial-content {
    margin-bottom: var(--space-6);
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.05rem;
    flex-grow: 1;
}

.client-info {
    margin-top: auto;
}

.client-info h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-1);
}

.client-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Info Cards */
.contact-info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--shadow-green);
    border-color: var(--primary-color);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Form Layout System */
.form-grid {
    display: grid;
    gap: var(--space-6);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: var(--space-12);
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-4);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: var(--text-base);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    width: 100%;
}

.form-status {
    margin-top: var(--space-6);
    padding: var(--space-4);
    border-radius: 6px;
}

.form-status .error {
    color: #D32F2F;
    background-color: #FFEBEE;
    padding: var(--space-4);
    border-radius: 6px;
}

.form-status .success {
    color: #388E3C;
    background-color: #E8F5E9;
    padding: 0.8rem;
    border-radius: 6px;
}

/* Footer - Modern Design */
footer {
    background: var(--background-dark);
    color: white;
    padding: 3rem 2% 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Page Banner */
.page-banner {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
}

.page-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Grid responsive behavior */
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .grid-auto-fit,
    .grid-auto-fill {
        grid-template-columns: 1fr;
    }

    /* Form grid responsive behavior */
    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }

    header {
        padding: 0.8rem 4%;
        height: auto;
    }

    nav ul {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-buttons .btn {
        width: 100%;
    }

    .contact-form-section .container {
        flex-direction: column;
    }

    .contact-form-container,
    .contact-image {
        width: 100%;
    }

    .contact-image {
        margin-top: 2rem;
    }
}

/* Tablet responsive adjustments */
@media (min-width: 481px) and (max-width: 768px) {

    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop responsive adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Margin Utilities */
.m-0 {
    margin: 0;
}

.m-auto {
    margin: auto;
}

.mt-0 {
    margin-top: 0;
}

.mt-xs {
    margin-top: var(--space-1);
}

.mt-sm {
    margin-top: var(--space-2);
}

.mt-md {
    margin-top: var(--space-4);
}

.mt-lg {
    margin-top: var(--space-6);
}

.mt-xl {
    margin-top: var(--space-8);
}

.mt-2xl {
    margin-top: var(--space-12);
}

.mt-3xl {
    margin-top: var(--space-16);
}

.mr-0 {
    margin-right: 0;
}

.mr-xs {
    margin-right: var(--space-1);
}

.mr-sm {
    margin-right: var(--space-2);
}

.mr-md {
    margin-right: var(--space-4);
}

.mr-lg {
    margin-right: var(--space-6);
}

.mr-xl {
    margin-right: var(--space-8);
}

.mr-2xl {
    margin-right: var(--space-12);
}

.mr-3xl {
    margin-right: var(--space-16);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-xs {
    margin-bottom: var(--space-1);
}

.mb-sm {
    margin-bottom: var(--space-2);
}

.mb-md {
    margin-bottom: var(--space-4);
}

.mb-lg {
    margin-bottom: var(--space-6);
}

.mb-xl {
    margin-bottom: var(--space-8);
}

.mb-2xl {
    margin-bottom: var(--space-12);
}

.mb-3xl {
    margin-bottom: var(--space-16);
}

.ml-0 {
    margin-left: 0;
}

.ml-xs {
    margin-left: var(--space-1);
}

.ml-sm {
    margin-left: var(--space-2);
}

.ml-md {
    margin-left: var(--space-4);
}

.ml-lg {
    margin-left: var(--space-6);
}

.ml-xl {
    margin-left: var(--space-8);
}

.ml-2xl {
    margin-left: var(--space-12);
}

.ml-3xl {
    margin-left: var(--space-16);
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-xs {
    margin-left: var(--space-1);
    margin-right: var(--space-1);
}

.mx-sm {
    margin-left: var(--space-2);
    margin-right: var(--space-2);
}

.mx-md {
    margin-left: var(--space-4);
    margin-right: var(--space-4);
}

.mx-lg {
    margin-left: var(--space-6);
    margin-right: var(--space-6);
}

.mx-xl {
    margin-left: var(--space-8);
    margin-right: var(--space-8);
}

.mx-2xl {
    margin-left: var(--space-12);
    margin-right: var(--space-12);
}

.mx-3xl {
    margin-left: var(--space-16);
    margin-right: var(--space-16);
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-xs {
    margin-top: var(--space-1);
    margin-bottom: var(--space-1);
}

.my-sm {
    margin-top: var(--space-2);
    margin-bottom: var(--space-2);
}

.my-md {
    margin-top: var(--space-4);
    margin-bottom: var(--space-4);
}

.my-lg {
    margin-top: var(--space-6);
    margin-bottom: var(--space-6);
}

.my-xl {
    margin-top: var(--space-8);
    margin-bottom: var(--space-8);
}

.my-2xl {
    margin-top: var(--space-12);
    margin-bottom: var(--space-12);
}

.my-3xl {
    margin-top: var(--space-16);
    margin-bottom: var(--space-16);
}

/* Legacy margin classes for backward compatibility */
.mt-1 {
    margin-top: var(--space-2);
}

.mt-2 {
    margin-top: var(--space-4);
}

.mt-3 {
    margin-top: var(--space-6);
}

.mt-4 {
    margin-top: var(--space-8);
}

.mt-5 {
    margin-top: var(--space-12);
}

.mb-1 {
    margin-bottom: var(--space-2);
}

.mb-2 {
    margin-bottom: var(--space-4);
}

.mb-3 {
    margin-bottom: var(--space-6);
}

.mb-4 {
    margin-bottom: var(--space-8);
}

.mb-5 {
    margin-bottom: var(--space-12);
}

/* Product Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin: var(--space-8) 0;
    padding: 0 var(--space-4);
}

.product-section {
    padding: var(--space-8) 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-btn {
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: var(--text-base);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

/* Padding Utilities */
.p-0 {
    padding: 0;
}

.p-xs {
    padding: var(--space-1);
}

.p-sm {
    padding: var(--space-2);
}

.p-md {
    padding: var(--space-4);
}

.p-lg {
    padding: var(--space-6);
}

.p-xl {
    padding: var(--space-8);
}

.p-2xl {
    padding: var(--space-12);
}

.p-3xl {
    padding: var(--space-16);
}

.pt-0 {
    padding-top: 0;
}

.pt-xs {
    padding-top: var(--space-1);
}

.pt-sm {
    padding-top: var(--space-2);
}

.pt-md {
    padding-top: var(--space-4);
}

.pt-lg {
    padding-top: var(--space-6);
}

.pt-xl {
    padding-top: var(--space-8);
}

.pt-2xl {
    padding-top: var(--space-12);
}

.pt-3xl {
    padding-top: var(--space-16);
}

.pr-0 {
    padding-right: 0;
}

.pr-xs {
    padding-right: var(--space-1);
}

.pr-sm {
    padding-right: var(--space-2);
}

.pr-md {
    padding-right: var(--space-4);
}

.pr-lg {
    padding-right: var(--space-6);
}

.pr-xl {
    padding-right: var(--space-8);
}

.pr-2xl {
    padding-right: var(--space-12);
}

.pr-3xl {
    padding-right: var(--space-16);
}

.pb-0 {
    padding-bottom: 0;
}

.pb-xs {
    padding-bottom: var(--space-1);
}

.pb-sm {
    padding-bottom: var(--space-2);
}

.pb-md {
    padding-bottom: var(--space-4);
}

.pb-lg {
    padding-bottom: var(--space-6);
}

.pb-xl {
    padding-bottom: var(--space-8);
}

.pb-2xl {
    padding-bottom: var(--space-12);
}

.pb-3xl {
    padding-bottom: var(--space-16);
}

.pl-0 {
    padding-left: 0;
}

.pl-xs {
    padding-left: var(--space-1);
}

.pl-sm {
    padding-left: var(--space-2);
}

.pl-md {
    padding-left: var(--space-4);
}

.pl-lg {
    padding-left: var(--space-6);
}

.pl-xl {
    padding-left: var(--space-8);
}

.pl-2xl {
    padding-left: var(--space-12);
}

.pl-3xl {
    padding-left: var(--space-16);
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-xs {
    padding-left: var(--space-1);
    padding-right: var(--space-1);
}

.px-sm {
    padding-left: var(--space-2);
    padding-right: var(--space-2);
}

.px-md {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.px-lg {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.px-xl {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
}

.px-2xl {
    padding-left: var(--space-12);
    padding-right: var(--space-12);
}

.px-3xl {
    padding-left: var(--space-16);
    padding-right: var(--space-16);
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-xs {
    padding-top: var(--space-1);
    padding-bottom: var(--space-1);
}

.py-sm {
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
}

.py-md {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.py-lg {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
}

.py-xl {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

.py-2xl {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

.py-3xl {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

/* Legacy padding classes for backward compatibility */
.p-1 {
    padding: var(--space-2);
}

.p-2 {
    padding: var(--space-4);
}

.p-3 {
    padding: var(--space-6);
}

.p-4 {
    padding: var(--space-8);
}

.p-5 {
    padding: var(--space-12);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: auto;
    right: 7rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--shadow-green);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Load Calculator Specific Styles */
.calculator-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-4);
}

.load-card {
    background: white;
    padding: var(--space-8);
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
    margin-bottom: var(--space-8);
}

.load-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-6);
    font-size: 1.3rem;
}

.form-row {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

/* Table container with horizontal scroll */
.table-container,
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: var(--space-6) 0;
}

.load-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.load-table thead {
    position: sticky;
    top: 0;
    background: var(--primary-color);
    z-index: 10;
}

.load-table th,
.load-table td {
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-4);
    text-align: left;
}

.load-table th {
    color: white;
    font-weight: 500;
    white-space: nowrap;
}

.load-table input,
.load-table select {
    padding: var(--space-2);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    width: 100%;
    min-width: 80px;
}

.add-appliance-btn {
    background: var(--primary-color);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-top: var(--space-4);
}

.result-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin: var(--space-8) 0;
}

.result-card {
    display: flex;
    flex-direction: column;
    background: var(--background-light);
    border-radius: 8px;
    padding: var(--space-6);
    text-align: center;
    border-left: 4px solid var(--primary-color);
    height: 100%;
}

.result-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: var(--space-2) 0;
}

.result-label {
    color: #666;
    font-size: 0.9rem;
}

.recommendation-box {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.recommendation-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.email-btn {
    background: #EA4335;
    color: white;
}

.pdf-btn {
    background: #FF5722;
    color: white;
}

/* Product Page Specific Styles */
.product-header {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 4rem 1rem 3rem;
    margin-bottom: 2rem;
}

.product-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.6rem 1.2rem;
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border-color);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.product-subtitle {
    display: inline-block;
    background: var(--background-light);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    align-self: flex-start;
}

/* About Page Specific Styles */
.about-content-section {
    padding: 3rem 0;
}

.about-content-section .container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
}

/* Duplicate .why-choose-us removed */

.our-values {
    padding: 3rem 0;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px var(--shadow-green);
    border-color: var(--primary-color);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.team-section {
    padding: 3rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px var(--shadow-green);
}

.team-member h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.team-member p {
    color: #666;
}

/* Contact Page Specific Styles */
.contact-hero {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 4rem 1rem 3rem;
    margin-bottom: 2rem;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Contact Info Section */
.contact-info-section {
    padding: 3rem 0;
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--shadow-green);
    border-color: var(--primary-color);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.contact-info-card:hover i {
    transform: scale(1.1);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    text-align: left;
}

.contact-info-card p i {
    font-size: 1rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
    display: inline-block;
}

.contact-form-section {
    padding: 3rem 0;
    background: var(--background-light);
}

.contact-form-section .container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-green);
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
}

.form-status .error {
    color: #D32F2F;
    background-color: #FFEBEE;
    padding: 0.8rem;
    border-radius: 6px;
}

.form-status .success {
    color: #388E3C;
    background-color: #E8F5E9;
    padding: 0.8rem;
    border-radius: 6px;
}

.contact-image {
    text-align: center;
    margin-top: 2rem;
}

.contact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
}

.map-section {
    padding: 3rem 0;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-green);
}

.faq-section {
    padding: 3rem 0;
    background: var(--background-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--shadow-green);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.faq-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-toggle.active i {
    transform: rotate(180deg);
}

/* Office Locations */
.office-locations {
    padding: 3rem 0;
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
    border: 1px solid var(--border-color);
}

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive adjustments for Contact Page */
@media (max-width: 768px) {
    .contact-form-section .container {
        flex-direction: column;
    }

    .contact-form-container,
    .contact-image {
        width: 100%;
    }

    .contact-image {
        margin-top: 2rem;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
    .product-grid {
        gap: 1.5rem;
    }

    .product-content {
        padding: 1rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 0.6rem;
    }

    .btn {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .about-content-section .container {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    .contact-form-section .container {
        flex-direction: column;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background-color: #25D366;
}

.calculator-btn {
    background-color: #4CAF50;
}

.floating-btn i {
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

/* Floating button animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.floating-btn {
    animation: float 3s ease-in-out infinite;
}

.floating-btn:nth-child(1) {
    animation-delay: 0.2s;
}

.floating-btn:nth-child(2) {
    animation-delay: 0.4s;
}

/* Responsive adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 5.5rem;
        right: 1.5rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .floating-btn i {
        font-size: 1.5rem;
    }
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    /* Adjust dropdown for mobile */
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        width: 100%;
        background-color: #f9f9f9;
        padding-left: 0;
        animation: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown:hover .dropdown-content {
        display: none;
        /* Disable hover on mobile */
    }

    .dropbtn::after {
        display: inline-block;
        margin-left: 5px;
    }
}


/* Standardized Section Components */
.section-title {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
}

.section-title h2 {
    font-size: var(--text-3xl);
    color: var(--primary-dark);
    display: inline-block;
    position: relative;
    margin-bottom: 0;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    max-width: 700px;
    margin: var(--space-4) auto var(--space-12);
    font-size: var(--text-lg);
    line-height: 1.6;
}


/* Responsive Hero Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-buttons .btn {
        width: 100%;
    }

    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-control.prev {
        left: 10px;
    }

    .slider-control.next {
        right: 10px;
    }
}

/* Footer Logo Customization */
.footer-logo {
    padding-left: 15px;
    /* Move slightly right */
}

.footer-logo img {
    height: 90px;
    /* Increase size substantially */
    width: auto;
    object-fit: contain;
}

/* About Page Styles */
.about-hero {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 6rem 1rem 4rem;
    margin-bottom: var(--space-8);
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-4);
    font-weight: 700;
    color: white;
}

.about-hero p {
    font-size: var(--text-xl);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    color: var(--text-light);
}

/* Zig-Zag Layout */
.zig-zag-section {
    padding: var(--space-8) 0;
}

.zig-zag-row {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.zig-zag-row:nth-child(even) {
    flex-direction: row-reverse;
}

.zig-zag-text {
    flex: 1;
}

.zig-zag-image {
    flex: 1;
}

.zig-zag-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    height: 400px;
    /* Fixed height for consistency */
    object-fit: cover;
}

.zig-zag-image img:hover {
    transform: scale(1.02);
}

.zig-zag-text h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-4);
    font-size: var(--text-3xl);
}

.zig-zag-text p {
    color: var(--text-medium);
    margin-bottom: var(--space-4);
    font-size: var(--text-lg);
}

/* Timeline Components */
.timeline-section {
    padding: var(--space-12) 0;
    background: var(--background-light);
}

.timeline-item {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    align-items: flex-start;
    position: relative;
    padding-left: var(--space-8);
    border-left: 4px solid var(--primary-light);
}

.timeline-year {
    flex: 0 0 80px;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    padding: var(--space-2);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    background: white;
    padding: var(--space-6);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: var(--space-2);
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-medium);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.value-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .zig-zag-row,
    .zig-zag-row:nth-child(even) {
        flex-direction: column;
        gap: var(--space-8);
    }

    .timeline-item {
        flex-direction: column;
        gap: var(--space-4);
        border-left: none;
        padding-left: 0;
    }

    .timeline-year {
        width: 100%;
        text-align: left;
    }
}

/* Why Choose Us Styles */
.why-choose-us {
    padding: var(--space-12) 0;
    background: var(--background-light);
}

.why-choose-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.why-choose-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}


/* Load Calculator Styles */
.calculator-section {
    padding: var(--space-8) var(--space-4);
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-section h1 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: var(--space-8);
    font-size: var(--text-3xl);
}

.user-details-section,
.load-input-section,
.system-parameters,
.results-section {
    background: white;
    padding: var(--space-6);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-8);
    border: 1px solid var(--border-color);
}

.calculator-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-4);
    font-size: var(--text-xl);
    border-bottom: 2px solid var(--background-light);
    padding-bottom: var(--space-2);
}

.form-row {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

/* Load Table */
.load-card {
    overflow-x: auto;
}

.load-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.load-table th,
.load-table td {
    padding: var(--space-3);
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.load-table th {
    background: var(--background-light);
    color: var(--primary-dark);
    font-weight: 600;
}

.add-appliance-btn {
    margin-top: var(--space-4);
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: var(--space-2) var(--space-4);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

/* Results Cards */
.result-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
}

.result-card {
    background: var(--background-light);
    padding: var(--space-4);
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
}

.result-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-8);
}

.action-buttons button {
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: transform 0.2s;
}

.action-buttons button:hover {
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.email-btn {
    background: #EA4335;
    color: white;
}

.download-btn {
    background: var(--primary-dark);
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.cookie-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

/* Footer Styles */
footer {
    background: #1a253f;
    padding: var(--space-12) 0 var(--space-4);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.footer-section h3 {
    color: var(--text-light);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.footer-section p,
.footer-section li,
.footer-section a {
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: var(--space-2);
}

.footer-section a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section i {
    color: var(--primary-color);
    margin-right: var(--space-2);
}

.social-icons {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-2);
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white !important;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icons a i {
    color: white;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.footer-bottom {
    text-align: center;
    margin-top: var(--space-8);
    padding: var(--space-6) 0;
    border-top: 1px solid var(--border-color);
    background: #2c3e50;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: var(--text-sm);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Product Card Styles */
.product-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    height: 220px;
    background: var(--background-light);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.capacity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px var(--shadow-green);
}

.product-content,
.product-card-content {
    padding: var(--space-6);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name,
.product-card-content h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
    line-height: 1.4;
}

.voltage-info {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-3);
}

.voltage-badge {
    background: #e8f5e9;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #c8e6c9;
}

.usage-type {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: var(--space-4);
    font-style: italic;
}

.product-card-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.product-card-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-4);
}

.product-card-content li {
    color: var(--text-medium);
    padding-left: var(--space-4);
    margin-bottom: var(--space-2);
    position: relative;
}

.product-card-content li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.tech-specs-mini {
    background: var(--background-light);
    padding: var(--space-3);
    border-radius: 8px;
    margin: var(--space-4) 0;
    font-size: 0.9rem;
}

.tech-specs-mini ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-specs-mini li {
    margin-bottom: var(--space-1);
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: var(--space-1);
    color: var(--text-medium);
}

.tech-specs-mini li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.tech-specs-mini strong {
    color: var(--text-dark);
}

.button-group {
    display: flex;
    gap: var(--space-2);
    margin-top: auto;
}

.btn-view-details {
    flex: 1;
    background: var(--primary-color);
    color: white;
    padding: var(--space-3) var(--space-4);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-view-details:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-green);
}

.btn-download-spec {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: var(--space-3) var(--space-4);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
}

.btn-download-spec:hover {
    background: #e8f5e9;
}

/* Page & Section Headers Alignment */
.page-header {
    text-align: center;
    padding: 4rem 1rem;
    background: var(--gradient-primary);
    color: white;
    margin-bottom: 2rem;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-header .section-description {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-medium);
}

/* CTA Section Styles */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--text-4xl);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: var(--text-lg);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: var(--text-3xl);
    }
    
    .cta-content p {
        font-size: var(--text-lg);
        margin-bottom: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

/* Utility Classes */
.bg-light {
    background: var(--background-light) !important;
}

.turbine-section {
    padding: 4rem 0;
}

/* Product Details Page Styles */
.product-detail-section {
    padding: 3rem 0;
    background: var(--background-light);
}

.product-detail-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.product-gallery {
    flex: 1;
}

.main-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-green);
    margin-bottom: 1.5rem;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.02);
}



.product-info {
    flex: 1;
}

.product-info h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    position: relative;
}

.product-meta .capacity-badge {
    position: static;
    box-shadow: none;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}

.product-type {
    background: var(--background-light);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid var(--primary-color);
}

.product-description {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.7;
}

.technical-specs {
    margin-bottom: 2rem;
}

.technical-specs h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.technical-specs ul {
    list-style: none;
    padding: 0;
}

.technical-specs li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.technical-specs li::before {
    content: "\2022";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 200px;
}

.error-message {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-green);
}

.error-message h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-message p {
    color: #666;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
    }

    .product-gallery,
    .product-info {
        width: 100%;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }
}

/* Turbine Details Specific Styles */
.breadcrumb {
    padding: 1rem 0;
    background: #f8f9fa;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li::after {
    content: '/';
    margin: 0 0.5rem;
    color: #999;
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.product-image-section {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.main-product-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.main-product-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.product-info-section h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.voltage-info {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.voltage-badge {
    background: #e8f5e9;
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #c8e6c9;
}

.tech-specs {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.tech-specs h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

.spec-label {
    font-weight: 600;
    color: #555;
}

.spec-value {
    color: var(--text-dark);
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.features-section {
    margin: 2rem 0;
}

.features-section h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.features-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 900;
}

#product-usage {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.map-container iframe {
    border: 0;
}

/* Animated Logo Styles */
.animated-logo {
    border-radius: 15px; /* Bend the corner */
    animation: floatLogo 3s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@keyframes floatLogo {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Product Marquee Styles */
.products-marquee-section {
    padding: var(--space-12) 0;
    background: var(--background-light); /* Matches theme */
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0; /* Space for shadow */
}

.marquee-content {
    display: flex;
    gap: var(--space-8);
    width: max-content;
    /* 
       Total width of one set = (250px + 32px gap) * 8 items = 2256px
       We scroll by -50% of the total width (which includes the duplicate set)
    */
    animation: marqueeScroll 40s linear infinite;
}

/* Pause animation on hover for better user experience */
.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    width: 280px;
    height: 220px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.marquee-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marquee-item:hover img {
    transform: scale(1.1);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move left by 50% of the container width plus half the gap of the last item to make it seamless */
        /* Actually, we just need to translate by -50% if the content is perfectly duplicated */
        transform: translateX(calc(-50% - var(--space-4))); 
    }
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .marquee-item {
        width: 220px;
        height: 180px;
    }
}
