/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Colors - Based on the logos */
:root {
    --primary-color: #1a5f3a; /* Dark green */
    --secondary-color: #4ade80; /* Light green */
    --accent-color: #dc2626; /* Red accent */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Dual Logo Layout */
.dual-logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo .logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Sudhakar Logo Flip Animation */
.sudhakar-logo-container {
    position: relative;
    width: 120px;
    height: 60px;
    perspective: 1000px;
}

.sudhakar-logo-flip {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: flipAnimation 4s infinite ease-in-out;
}

@keyframes flipAnimation {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    75% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}

.sudhakar-logo-front,
.sudhakar-logo-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sudhakar-logo-back {
    transform: rotateY(180deg);
}

.sudhakar-logo-container .logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Legacy logo styles for footer compatibility */
.logo-container {
    position: relative;
    width: 120px;
    height: 60px;
    perspective: 1000px;
}

.logo-flip {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-in-out;
}

.logo-flip:hover {
    transform: rotateY(180deg);
}

.logo-front,
.logo-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-back {
    transform: rotateY(180deg);
}

.logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}



/* Header and Navigation */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 95, 58, 0.8) 0%, rgba(21, 128, 61, 0.8) 100%), url('images/hero_section_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-content {
    color: var(--white);
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 95, 58, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #15803d 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

/* Products Page Header */
section.page-header.products-header {
    background: linear-gradient(135deg, rgba(26, 95, 58, 0.8) 0%, rgba(21, 128, 61, 0.8) 100%), url('images/Our_Products_page.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Portfolio Page Header */
section.page-header.portfolio-header {
    background: linear-gradient(135deg, rgba(26, 95, 58, 0.8) 0%, rgba(21, 128, 61, 0.8) 100%), url('images/Aluminium-Windows-Doors.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Enhanced Section Content */
.features .container,
.products-preview .container {
    position: relative;
    z-index: 2;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.features .section-title::after,
.products-preview .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Features Section with Green Background Design */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(26, 95, 58, 0.05) 0%, 
        rgba(74, 222, 128, 0.08) 25%, 
        rgba(26, 95, 58, 0.05) 50%, 
        rgba(34, 197, 94, 0.06) 75%, 
        rgba(26, 95, 58, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 95, 58, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 15s ease-in-out infinite;
}

.features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(74, 222, 128, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(26, 95, 58, 0.03) 50%, transparent 60%);
    background-size: 100px 100px;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(74, 222, 128, 0.1);
    box-shadow: 0 8px 32px rgba(26, 95, 58, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(26, 95, 58, 0.15);
    border-color: rgba(74, 222, 128, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* uPVC Features Section */
.upvc-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Aluminium Features Section */
.aluminium-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

/* Products Preview with Green Background Design */
.products-preview {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.03) 0%, 
        rgba(26, 95, 58, 0.06) 25%, 
        rgba(74, 222, 128, 0.04) 50%, 
        rgba(26, 95, 58, 0.06) 75%, 
        rgba(34, 197, 94, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.products-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 80%, rgba(74, 222, 128, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(26, 95, 58, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 30% 60%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 18s ease-in-out infinite reverse;
}

.products-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(74, 222, 128, 0.02) 10px, rgba(74, 222, 128, 0.02) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(26, 95, 58, 0.02) 10px, rgba(26, 95, 58, 0.02) 20px);
    animation: patternSlide 25s linear infinite;
    pointer-events: none;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(26, 95, 58, 0.1);
    box-shadow: 0 8px 32px rgba(26, 95, 58, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 95, 58, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(26, 95, 58, 0.15);
    border-color: rgba(26, 95, 58, 0.2);
}

.product-image {
    height: 200px;
}

.product-image.upvc-bg {
    background: url('images/2-Track-2-Panel-Small-Mesh.png') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
}

.product-image.aluminium-bg {
    background: url('images/aluminium1.png') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
}

/* uPVC Product Images */
.product-image.upvc-casement {
    background: url('images/Casement-Single-Openable-Inward-Outward.png') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
}

.product-image.upvc-sliding {
    background: url('images/2-Track-2-Panel-Small-Mesh.png') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
}

.product-image.upvc-tilt-turn {
    background: url('images/Tilt-and-Turn.png') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
}

.product-image.upvc-fixed {
    background: url('images/Fixed.png') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
}

/* Aluminium Product Images */
.product-image.aluminium-windows {
    background: url('images/Aluminium-Windows-Doors.png') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
}

.product-image.aluminium-doors {
    background: url('images/aluminium1.png') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
}

.product-image.aluminium-sliding {
    background: url('images/2-Track-3-Panel-Small-Mesh.png') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
}

.product-image.aluminium-facade {
    background: url('images/2T4P-Small-Mesh.png') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f8f9fa !important;
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.product-card .btn {
    margin: 0 1.5rem 1.5rem;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-story {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-story h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.story-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.highlight-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-text p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.story-conclusion {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 3rem;
    font-weight: 400;
    text-align: center;
    font-style: italic;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--light-gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mv-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

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

/* Values */
.values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background: var(--light-gray);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cert-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Products Page */
.product-categories {
    padding: 40px 0;
    background: var(--light-gray);
    margin-top: 80px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.tab-btn {
    padding: 20px 40px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(26, 95, 58, 0.1);
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), #15803d);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 95, 58, 0.3);
    border-color: var(--primary-color);
}

/* Responsive Design for Tabs */
@media (max-width: 768px) {
    .category-tabs {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .tab-btn {
        padding: 16px 24px;
        font-size: 1rem;
        min-width: 150px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .category-tabs {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 280px;
        padding: 18px 20px;
    }
}

.product-section {
    display: none;
    padding: 80px 0;
}

.product-section.active {
    display: block;
}

.product-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.product-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.product-image {
    height: 300px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.upvc-window {
    background: linear-gradient(45deg, #1a5f3a, #4ade80);
}

.upvc-door {
    background: linear-gradient(45deg, #15803d, #22c55e);
}

.upvc-sliding {
    background: linear-gradient(45deg, #16a34a, #4ade80);
}

.aluminium-window {
    background: linear-gradient(45deg, #15803d, #22c55e);
}

.aluminium-door {
    background: linear-gradient(45deg, #16a34a, #4ade80);
}



.product-details {
    padding: 2rem;
}

.product-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-details li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.product-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Features Comparison */
.features-comparison {
    padding: 80px 0;
    background: var(--light-gray);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:hover {
    background: var(--light-gray);
}

/* Portfolio Page */
.portfolio-filters {
    padding: 40px 0;
    background: var(--light-gray);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.portfolio-gallery {
    padding: 80px 0;
}

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

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    position: relative;
    height: 250px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.residential-1 { background: linear-gradient(45deg, #1a5f3a, #4ade80); }
.residential-2 { background: linear-gradient(45deg, #15803d, #22c55e); }
.residential-3 { background: linear-gradient(45deg, #16a34a, #4ade80); }
.commercial-1 { background: linear-gradient(45deg, #15803d, #22c55e); }
.commercial-2 { background: linear-gradient(45deg, #16a34a, #4ade80); }
.commercial-3 { background: linear-gradient(45deg, #1a5f3a, #4ade80); }

/* Portfolio Images */
.portfolio1 { background: url('images/portfolio1.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio2 { background: url('images/portfolio2.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio3 { background: url('images/portfolio3.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio4 { background: url('images/portfolio4.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio5 { background: url('images/portfolio5.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio6 { background: url('images/portfolio6.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio7 { background: url('images/portfolio7.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio8 { background: url('images/portfolio8.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio9 { background: url('images/portfolio9.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio10 { background: url('images/portfolio10.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio11 { background: url('images/portfolio11.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio12 { background: url('images/portfolio12.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio13 { background: url('images/portfolio13.jpeg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio14 { background: url('images/portfolio14.jpeg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio15 { background: url('images/portfolio15.jpeg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio16 { background: url('images/portfolio16.jpeg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio17 { background: url('images/portfolio17.jpeg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio18 { background: url('images/portfolio18.jpeg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio19 { background: url('images/portfolio19.jpg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio20 { background: url('images/portfolio20.jpeg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio21 { background: url('images/portfolio21.jpeg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.portfolio22 { background: url('images/portfolio22.jpeg') !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }

/* New Portfolio Images (23-35) */
.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 95, 58, 0.9);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Featured Projects */
.featured-projects {
    padding: 80px 0;
    background: var(--light-gray);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.featured-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-image {
    height: 250px;
}

.featured-1 { background: linear-gradient(45deg, #1a5f3a, #4ade80); }
.featured-2 { background: linear-gradient(45deg, #15803d, #22c55e); }

.featured-content {
    padding: 2rem;
}

.featured-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.project-location {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.project-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.project-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--primary-color);
}

/* Video Gallery */
.video-gallery {
    padding: 80px 0;
    background: var(--white);
}

.video-gallery .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.video-gallery .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.portfolio-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 95, 58, 0.9));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-item:hover .video-overlay {
    transform: translateY(0);
}

.video-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.video-overlay p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), #4ade80);
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Contact Info */
.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.social-links h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: #4ade80;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h4 {
    color: var(--primary-color);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-form .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Background Image Section */
.background-image-section {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 80px; /* Account for fixed header */
    overflow: hidden;
}

.background-image-section::before {
    content: '';
    display: block;
    padding-top: 40%; /* 40% aspect ratio for better mobile visibility */
}

.background-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .background-image {
        object-fit: contain;
        object-position: center;
    }
    
    .background-image-section {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .hero-products {
        margin-top: 0;
        padding: 2rem 0 4rem 0;
    }
    
    /* Ensure no gaps between sections */
    .background-image-section + .hero-products {
        margin-top: 0;
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    .background-image {
        object-fit: contain;
        object-position: center;
    }
    
    .background-image-section {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
        height: auto !important;
    }
    
    .hero-products {
        margin-top: 0 !important;
        padding: 0.5rem 0 3rem 0 !important;
        border-top: none !important;
    }
    
    /* Ensure no gaps between sections */
    .background-image-section + .hero-products {
        margin-top: 0 !important;
        padding-top: 0.5rem !important;
    }
    
    /* Remove any potential spacing from container */
    .background-image-section .container,
    .hero-products .container {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Force remove any gaps */
    .background-image-section::after {
        display: none !important;
    }
    
    .hero-products::before {
        display: none !important;
    }
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 95, 58, 0.3) 0%,
        rgba(74, 222, 128, 0.2) 50%,
        rgba(220, 38, 38, 0.1) 100%
    );
    pointer-events: none;
}

/* Hero Products Section */
.hero-products {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    margin-top: 0; /* No margin needed since background image is above */
    overflow: hidden;
}

.hero-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 95, 58, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundShift 8s ease-in-out infinite;
}

/* Animated background elements */
.hero-products::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(220, 38, 38, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(74, 222, 128, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(26, 95, 58, 0.03) 0%, transparent 60%);
    pointer-events: none;
    animation: backgroundPulse 6s ease-in-out infinite;
}

/* Floating particles - using a separate element */
.hero-products .floating-particles {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(220, 38, 38, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(74, 222, 128, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(26, 95, 58, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(220, 38, 38, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(74, 222, 128, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: float 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-products-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-products-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideInDown 1s ease-out 0.2s both;
    position: relative;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.hero-products-title:hover {
    transform: scale(1.02);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.hero-products-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    animation: expandWidth 1s ease-out 0.8s forwards;
    transition: width 0.3s ease;
}

.hero-products-title:hover::after {
    width: 120px;
}

.hero-products-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
    opacity: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-products-subtitle:hover {
    color: var(--text-dark);
    transform: scale(1.01);
}

.series-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
    opacity: 0;
    perspective: 1000px;
}

.series-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.series-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.series-btn:hover::before {
    left: 100%;
}

.series-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.series-btn:hover::after {
    transform: translateX(100%);
}

.series-btn:hover {
    transform: translateY(-3px) scale(1.05) rotateX(5deg);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    background: #b91c1c;
}

.series-btn:active {
    transform: translateY(-1px) scale(1.02) rotateX(2deg);
}

.series-btn.active {
    background: #ef4444;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    animation: pulse 2s infinite;
}

.series-btn.active:hover {
    animation: none;
    transform: translateY(-3px) scale(1.05) rotateX(5deg);
}

.arrow-icon {
    margin-left: 8px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.series-btn:hover .arrow-icon {
    transform: translateX(6px) scale(1.1);
}

.series-btn.active .arrow-icon {
    transform: translateX(4px);
    animation: bounce 1s infinite;
}

/* Enhanced container animation */
.hero-products .container {
    animation: fadeInScale 1s ease-out 0.1s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes backgroundShift {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-10px) translateY(-5px);
    }
    50% {
        transform: translateX(5px) translateY(-10px);
    }
    75% {
        transform: translateX(-5px) translateY(5px);
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-10px) translateX(5px);
    }
    66% {
        transform: translateY(5px) translateX(-5px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(4px);
    }
    40% {
        transform: translateX(8px);
    }
    60% {
        transform: translateX(6px);
    }
}

/* Series Content Sections */
.series-content {
    display: none;
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.series-content.active {
    display: block;
}

/* Product Type Tabs */
.product-type-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

.type-tab {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.type-tab.active {
    color: var(--accent-color);
}

.type-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.type-tab:hover {
    color: var(--accent-color);
}

/* Product Type Content */
.product-type-content {
    display: none;
}

.product-type-content.active {
    display: block;
}

/* Series Content Wrapper */
.series-content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Mobile Filters (hidden on desktop) */
.mobile-filters {
    display: none;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.mobile-filters h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    position: sticky;
    top: 2rem;
}

.filters-sidebar h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.filter-btn.active {
    background: #fce7f3;
    border-color: #ec4899;
    color: #be185d;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

/* Product Display Area */
.product-display-area {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

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

.product-visual {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

/* Window Images */
.window-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block; /* Ensure image is displayed */
    min-height: 200px; /* Minimum height to ensure visibility */
    object-fit: contain; /* Maintain aspect ratio */
}

.product-card:hover .window-image {
    transform: scale(1.05);
}

/* Product Visual Container */
.product-visual {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px; /* Ensure container has height */
    background: #f8fafc; /* Light background to see container */
    border-radius: 8px;
    padding: 1rem;
}

/* Product Card Filter States */
.product-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    background: var(--white);
    margin-bottom: 1rem;
}

/* Only apply filter hiding to sliding windows, not casement/combinations */
.sliding-content .product-card:not(.active),
.prima-sliding-content .product-card:not(.active),
.royal-sliding-content .product-card:not(.active) {
    display: none;
}

.sliding-content .product-card.active,
.prima-sliding-content .product-card.active,
.royal-sliding-content .product-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Casement and combinations content should always show */
.casement-content .product-card,
.combinations-content .product-card {
    display: block;
}

/* Tilt and Turn Container */
.tilt-turn-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.tilt-example,
.turn-example {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.tilt-example img,
.turn-example img {
    max-width: 150px;
    height: auto;
    flex-shrink: 0;
}

.opening-option {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    margin: 0;
    flex: 1;
}

/* Responsive adjustments for tilt-turn */
@media (max-width: 768px) {
    .tilt-example,
    .turn-example {
        flex-direction: column;
        text-align: center;
    }
    
    .tilt-example img,
    .turn-example img {
        max-width: 120px;
    }
}

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

.product-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    padding: 4rem 0;
}

.coming-soon h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Features & Benefits Section */
.features-benefits {
    background: #374151;
    padding: 4rem 0;
    color: var(--white);
}

.features-benefits .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.features-benefits .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.features-benefits .feature-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.features-benefits .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.features-benefits .feature-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-benefits .feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.features-benefits .feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Product Details Section */
.product-details-section {
    background: var(--white);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.product-details-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.product-details-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.product-details-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-details-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: left;
}

.product-details-text p:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        background-size: contain;
        background-position: center;
        margin-top: 80px;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Remove gap between hero and features section */
    .hero + .features {
        margin-top: 0;
        padding-top: 0;
    }
    
    .features {
        margin-top: 0;
        padding-top: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .background-image-section::before {
        padding-top: 50%; /* Taller aspect ratio for tablets */
    }
    
    .background-image {
        object-position: center top;
    }
    
    .hero-products-title {
        font-size: 2.5rem;
        animation: slideInDown 0.8s ease-out 0.2s both;
    }
    
    .hero-products-subtitle {
        font-size: 1rem;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
    
    /* Optimize animations for mobile */
    .hero-products::before,
    .hero-products::after {
        animation-duration: 12s;
    }
    
    .hero-products .floating-particles {
        animation-duration: 30s;
        background-size: 150px 75px;
    }
    
    .series-btn:hover {
        transform: translateY(-2px) scale(1.03);
    }
    
    .series-btn:hover .arrow-icon {
        transform: translateX(4px) scale(1.05);
    }
    
    .series-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .series-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .product-details-title {
        font-size: 2rem;
    }
    
    .series-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Show mobile filters, hide desktop filters on mobile */
    .mobile-filters {
        display: block;
    }
    
    .filters-sidebar {
        display: none;
    }
    
    .product-type-tabs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-item {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        background-size: contain;
        background-position: center;
        margin-top: 80px;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* Remove gap between hero and features section */
    .hero + .features {
        margin-top: 0;
        padding-top: 0;
    }
    
    .features {
        margin-top: 0;
        padding-top: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .background-image-section::before {
        padding-top: 50%; /* Reduced aspect ratio for mobile */
    }
    
    .background-image {
        object-position: center top;
    }
    
    .background-image-section {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
        height: auto !important;
        line-height: 0 !important;
        font-size: 0 !important;
    }
    
    .hero-products {
        margin-top: -2px !important;
        padding: 0 0 3rem 0 !important;
        border-top: none !important;
        line-height: normal !important;
        font-size: initial !important;
    }
    
    /* Ensure no gaps between sections */
    .background-image-section + .hero-products {
        margin-top: 0 !important;
        padding-top: 0.5rem !important;
    }
    
    /* Remove any potential spacing from container */
    .background-image-section .container,
    .hero-products .container {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Force remove any gaps */
    .background-image-section::after {
        display: none !important;
    }
    
    .hero-products::before {
        display: none !important;
    }
    
    .hero-products-title {
        font-size: 2rem;
        animation: slideInDown 0.6s ease-out 0.2s both;
    }
    
    .hero-products-subtitle {
        font-size: 0.9rem;
        animation: fadeInUp 0.6s ease-out 0.4s both;
    }
    
    /* Further optimize animations for small mobile */
    .hero-products::before,
    .hero-products::after {
        animation-duration: 15s;
    }
    
    .hero-products .floating-particles {
        animation-duration: 40s;
        background-size: 100px 50px;
    }
    
    .series-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .series-btn:hover {
        transform: translateY(-1px) scale(1.02);
    }
    
    .product-details-title {
        font-size: 1.5rem;
    }
    
    .product-details-text p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .features-grid,
    .products-grid,
    .values-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs,
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Ultra-aggressive gap removal for mobile */
    .background-image-section,
    .background-image-section * {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-products,
    .hero-products * {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Direct child targeting */
    .background-image-section > * {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-products > * {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/* Animation Keyframes for Green Background Designs */
@keyframes backgroundFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(5px) translateX(-5px);
    }
    75% {
        transform: translateY(-5px) translateX(10px);
    }
}

@keyframes patternMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(100px) translateY(50px);
    }
}

@keyframes patternSlide {
    0% {
        transform: translateX(-50px) translateY(-25px);
    }
    100% {
        transform: translateX(50px) translateY(25px);
    }
} 

/* About Page Sections with Green Background Designs */

/* About Content Section */
.about-content {
    background: linear-gradient(135deg, 
        rgba(26, 95, 58, 0.04) 0%, 
        rgba(74, 222, 128, 0.06) 25%, 
        rgba(26, 95, 58, 0.04) 50%, 
        rgba(34, 197, 94, 0.05) 75%, 
        rgba(26, 95, 58, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(74, 222, 128, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(26, 95, 58, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 20s ease-in-out infinite;
}

/* Mission & Vision Section */
.mission-vision {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.03) 0%, 
        rgba(26, 95, 58, 0.05) 25%, 
        rgba(74, 222, 128, 0.04) 50%, 
        rgba(26, 95, 58, 0.05) 75%, 
        rgba(34, 197, 94, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 60%, rgba(74, 222, 128, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 75% 40%, rgba(26, 95, 58, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 18s ease-in-out infinite reverse;
}

/* Values Section */
.values {
    background: linear-gradient(135deg, 
        rgba(26, 95, 58, 0.05) 0%, 
        rgba(74, 222, 128, 0.07) 25%, 
        rgba(26, 95, 58, 0.05) 50%, 
        rgba(34, 197, 94, 0.06) 75%, 
        rgba(26, 95, 58, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(74, 222, 128, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 95, 58, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.04) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 16s ease-in-out infinite;
}

.values::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(74, 222, 128, 0.02) 50%, transparent 60%);
    background-size: 80px 80px;
    animation: patternMove 25s linear infinite;
    pointer-events: none;
}

/* Certifications Section */
.certifications {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.04) 0%, 
        rgba(26, 95, 58, 0.06) 25%, 
        rgba(74, 222, 128, 0.05) 50%, 
        rgba(26, 95, 58, 0.06) 75%, 
        rgba(34, 197, 94, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.certifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 70%, rgba(74, 222, 128, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(26, 95, 58, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 22s ease-in-out infinite reverse;
}

/* Contact Page Sections with Green Background Designs */

/* Contact Content Section */
.contact-content {
    background: linear-gradient(135deg, 
        rgba(26, 95, 58, 0.03) 0%, 
        rgba(74, 222, 128, 0.05) 25%, 
        rgba(26, 95, 58, 0.03) 50%, 
        rgba(34, 197, 94, 0.04) 75%, 
        rgba(26, 95, 58, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(74, 222, 128, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(26, 95, 58, 0.04) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 19s ease-in-out infinite;
}

.contact-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(74, 222, 128, 0.015) 15px, rgba(74, 222, 128, 0.015) 30px);
    animation: patternSlide 30s linear infinite;
    pointer-events: none;
}

/* Portfolio Page Sections with Green Background Designs */

/* Portfolio Gallery Section */
.portfolio-gallery {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.04) 0%, 
        rgba(26, 95, 58, 0.06) 25%, 
        rgba(74, 222, 128, 0.05) 50%, 
        rgba(26, 95, 58, 0.06) 75%, 
        rgba(34, 197, 94, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(74, 222, 128, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 95, 58, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.04) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundFloat 17s ease-in-out infinite;
}

.portfolio-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(-45deg, transparent 40%, rgba(26, 95, 58, 0.02) 50%, transparent 60%);
    background-size: 120px 120px;
    animation: patternMove 28s linear infinite reverse;
    pointer-events: none;
}

/* Enhanced Section Content for All Pages */
.about-content .container,
.mission-vision .container,
.values .container,
.certifications .container,
.contact-content .container,
.portfolio-gallery .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Section Titles for All Pages */
.about-content .section-title,
.mission-vision .section-title,
.values .section-title,
.certifications .section-title,
.contact-content .section-title,
.portfolio-gallery .section-title {
    position: relative;
    color: var(--text-dark);
}

.about-content .section-title::after,
.mission-vision .section-title::after,
.values .section-title::after,
.certifications .section-title::after,
.contact-content .section-title::after,
.portfolio-gallery .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Enhanced Cards for All Pages */
.about-content .highlight-item,
.mission-vision .mv-card,
.values .value-card,
.certifications .cert-item,
.contact-content .contact-item,
.portfolio-gallery .portfolio-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 222, 128, 0.1);
    box-shadow: 0 8px 32px rgba(26, 95, 58, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-content .highlight-item::before,
.mission-vision .mv-card::before,
.values .value-card::before,
.certifications .cert-item::before,
.contact-content .contact-item::before,
.portfolio-gallery .portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-content .highlight-item:hover::before,
.mission-vision .mv-card:hover::before,
.values .value-card:hover::before,
.certifications .cert-item:hover::before,
.contact-content .contact-item:hover::before,
.portfolio-gallery .portfolio-item:hover::before {
    left: 100%;
}

.about-content .highlight-item:hover,
.mission-vision .mv-card:hover,
.values .value-card:hover,
.certifications .cert-item:hover,
.contact-content .contact-item:hover,
.portfolio-gallery .portfolio-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 95, 58, 0.15);
    border-color: rgba(74, 222, 128, 0.2);
}

/* Enhanced Form Elements */
.contact-content .contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 222, 128, 0.1);
    box-shadow: 0 8px 32px rgba(26, 95, 58, 0.1);
    transition: all 0.3s ease;
}

.contact-content .contact-form:hover {
    box-shadow: 0 12px 40px rgba(26, 95, 58, 0.15);
    border-color: rgba(74, 222, 128, 0.2);
}

/* Enhanced Form Sections */
.contact-content .contact-form-section,
.contact-content .contact-info-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 222, 128, 0.1);
    box-shadow: 0 8px 32px rgba(26, 95, 58, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-content .contact-form-section::before,
.contact-content .contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-content .contact-form-section:hover::before,
.contact-content .contact-info-section:hover::before {
    left: 100%;
}

.contact-content .contact-form-section:hover,
.contact-content .contact-info-section:hover {
    box-shadow: 0 12px 40px rgba(26, 95, 58, 0.15);
    border-color: rgba(74, 222, 128, 0.2);
}

/* Responsive Styles for Video Gallery */
@media (max-width: 768px) {
    .video-gallery .section-title {
        font-size: 2rem;
    }
    
    .video-gallery .section-subtitle {
        font-size: 1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-item {
        margin: 0 1rem;
    }
    
    .video-overlay {
        padding: 1.5rem;
    }
    
    .video-overlay h3 {
        font-size: 1.3rem;
    }
    
    .video-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-gallery {
        padding: 60px 0;
    }
    
    .video-gallery .section-title {
        font-size: 1.8rem;
    }
    
    .video-grid {
        gap: 1.5rem;
    }
    
    .video-item {
        margin: 0 0.5rem;
    }
    
    .video-overlay {
        padding: 1rem;
    }
    
    .video-overlay h3 {
        font-size: 1.2rem;
    }
    
    .video-overlay p {
        font-size: 0.85rem;
    }
}