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

:root {
    --primary-green: #025028;
    --primary-orange: #D57B01;
    --text-black: #000000;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #9f9f9f;;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-black);
}

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

/* Header & Navigation */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    transition: padding 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.logo-img {
    height: 50px;
    margin-top: 7px;
    margin-bottom: 7px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    position: relative;
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

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

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}


.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a.active {
    color: var(--primary-orange);
    background: rgba(213, 123, 1, 0.1);
}

.nav-links a.active::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-green);
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-toggle:hover {
    background: rgba(2, 80, 40, 0.1);
}

/* Navbar scroll effect */
.navbar-scrolled {
    padding: 0.8rem 0;
}

.navbar-scrolled .logo {
    font-size: 1.6rem;
}

/* Navigation indicators */
.nav-indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.nav-links:hover .nav-indicator {
    opacity: 1;
}

/* Advanced Hero Carousel Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-green) 0%, #034d33 100%);
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, #034d33 100%);
    z-index: 1;
}

.slide-background.commercial {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
}

.slide-background.premium {
    background: linear-gradient(135deg, #744210 0%, #975a16 100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.slide-content {
    position: relative;
    z-index: 3;
    padding: 0 80px;
    color: var(--white);
}

.content-wrapper {
    max-width: 600px;
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--white), #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

.slide-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #e2e8f0;
}

.slide-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.slide-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

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

.cta-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(213, 123, 1, 0.3);
}

.cta-primary:hover {
    background: #b86801;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(213, 123, 1, 0.4);
}

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

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.slide-visual {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(1deg); 
    }
}

.hero-gate-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.floating-card:hover .hero-gate-image {
    transform: scale(1.05);
}

.floating-stats {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-green);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: statPulse 4s ease-in-out infinite;
}

@keyframes statPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Carousel Navigation */
.carousel-navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-dots {
    display: flex;
    gap: 1rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.2);
}

.nav-dot:hover {
    border-color: var(--white);
    transform: scale(1.1);
}

.nav-arrows {
    display: flex;
    gap: 0.5rem;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), #ff6b35);
    width: 0%;
    transition: width 8s linear;
    animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% {
        box-shadow: 0 0 5px var(--primary-orange);
    }
    100% {
        box-shadow: 0 0 20px var(--primary-orange), 0 0 30px var(--primary-orange);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.float-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(213, 123, 1, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-1 {
    top: 10%;
    left: 10%;
    animation: floatDrift1 20s ease-in-out infinite;
}

.float-2 {
    top: 60%;
    right: 15%;
    animation: floatDrift2 25s ease-in-out infinite;
}

.float-3 {
    bottom: 20%;
    left: 20%;
    animation: floatDrift3 30s ease-in-out infinite;
}

@keyframes floatDrift1 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
        opacity: 0.3;
    }
    33% { 
        transform: translate(30px, -20px) rotate(120deg); 
        opacity: 0.6;
    }
    66% { 
        transform: translate(-20px, 20px) rotate(240deg); 
        opacity: 0.4;
    }
}

@keyframes floatDrift2 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
        opacity: 0.4;
    }
    50% { 
        transform: translate(-40px, -30px) rotate(180deg); 
        opacity: 0.7;
    }
}

@keyframes floatDrift3 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
        opacity: 0.2;
    }
    25% { 
        transform: translate(20px, -40px) rotate(90deg); 
        opacity: 0.5;
    }
    75% { 
        transform: translate(-30px, 10px) rotate(270deg); 
        opacity: 0.3;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cta-button {
    background: var(--primary-orange);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 123, 1, 0.3);
}

/* Advanced Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header Section */
.services-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-orange), #ff6b35);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(213, 123, 1, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.6;
    max-width: 600px;
}

.services-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, var(--white), #f1f5f9);
    border-radius: 50%;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    animation: statFloat 6s ease-in-out infinite;
}

.stat-circle:nth-child(2) { animation-delay: -2s; }
.stat-circle:nth-child(3) { animation-delay: -4s; }

@keyframes statFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.stat-circle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.stat-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--medium-gray);
    margin-top: 0.2rem;
}

/* Advanced Services Grid */
.services-advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-card-advanced {
    height: 350px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

.service-front {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-front {
    background: linear-gradient(145deg, var(--white), #f8fafc);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* .service-back removed - no flip effect */

.service-icon-container {
    position: relative;
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.service-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-orange), #ff6b35);
    border-radius: 50%;
    opacity: 0.1;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--primary-orange);
    z-index: 2;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.feature-tag {
    background: rgba(213, 123, 1, 0.1);
    color: var(--primary-orange);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(213, 123, 1, 0.2);
}

/* Service Back Details - Removed */

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-list i {
    color: var(--primary-orange);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.service-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(213, 123, 1, 0.3);
}

.service-btn:hover {
    background: #b86801;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 123, 1, 0.4);
}

/* Bottom CTA Section */
.services-bottom-cta {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(145deg, var(--white), #f8fafc);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.services-bottom-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(213, 123, 1, 0.05) 0%, transparent 70%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: rotate(0deg); opacity: 0.5; }
    50% { transform: rotate(180deg); opacity: 0.8; }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.cta-primary-btn, .cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-primary-btn {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(213, 123, 1, 0.3);
}

.cta-primary-btn:hover {
    background: #b86801;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 123, 1, 0.4);
}

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

.cta-secondary-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Floating Elements for Services */
.floating-elements-services {
    position: relative;
    width: 100%;
    height: 200px;
}

.float-service {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(213, 123, 1, 0.1), rgba(2, 80, 40, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.float-service-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation: floatServiceDrift1 12s ease-in-out infinite;
}

.float-service-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation: floatServiceDrift2 15s ease-in-out infinite;
}

.float-service-3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 60%;
    animation: floatServiceDrift3 18s ease-in-out infinite;
}

@keyframes floatServiceDrift1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -15px) rotate(120deg); }
    66% { transform: translate(-10px, 15px) rotate(240deg); }
}

@keyframes floatServiceDrift2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-25px, -20px) rotate(180deg); }
}

@keyframes floatServiceDrift3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -25px) rotate(90deg); }
    75% { transform: translate(-20px, 10px) rotate(270deg); }
}

/* Gate Selector Section */
.color-selector {
    padding: 80px 0;
    background: var(--white);
}

.gate-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.gate-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.gate-option:hover,
.gate-option.active {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(213, 123, 1, 0.2);
}

.gate-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.gate-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-black);
    text-align: center;
}

.gate-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.gate-preview {
    text-align: center;
}

.gate-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.gate-main-image:hover {
    transform: scale(1.02);
}

.gate-info-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gate-info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

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

.gate-spec {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 8px;
}

.gate-spec i {
    color: var(--primary-orange);
    width: 20px;
    text-align: center;
}

.gate-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.quote-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quote-btn:hover {
    background: #b86801;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 123, 1, 0.3);
}

/* Advanced About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(2, 80, 40, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(213, 123, 1, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* About Hero */
.about-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-orange), #ff6b35);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(213, 123, 1, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

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

.about-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--primary-green), #064d33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    line-height: 1.6;
    max-width: 600px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, var(--white), #f1f5f9);
    border-radius: 50%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 4px 8px rgba(255, 255, 255, 0.9);
    position: relative;
    animation: counterFloat 4s ease-in-out infinite;
}

@keyframes counterFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.counter-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(213, 123, 1, 0.2);
}

.counter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--medium-gray);
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.3;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.feature-card {
    background: linear-gradient(145deg, var(--white), #f8fafc);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(213, 123, 1, 0.2);
}

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

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-orange), #ff6b35);
    border-radius: 50%;
    opacity: 0.1;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(213, 123, 1, 0.4));
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    display: inline-block;
    background: rgba(213, 123, 1, 0.1);
    color: var(--primary-orange);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(213, 123, 1, 0.2);
}

/* CTA Section */
.about-cta {
    background: linear-gradient(145deg, var(--primary-green), #034d33);
    border-radius: 25px;
    padding: 4rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(213, 123, 1, 0.1) 0%, transparent 70%);
    animation: ctaRotate 10s linear infinite;
}

@keyframes ctaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.about-container .cta-content h3 {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}



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

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(213, 123, 1, 0.3);
}

.cta-primary:hover {
    background: #b86801;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 123, 1, 0.4);
}

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

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.decoration-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 15%;
    animation: decorationFloat1 8s ease-in-out infinite;
}

.decoration-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 20%;
    animation: decorationFloat2 10s ease-in-out infinite;
}

.decoration-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 70%;
    animation: decorationFloat3 12s ease-in-out infinite;
}

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

@keyframes decorationFloat2 {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(15px); }
}

@keyframes decorationFloat3 {
    0%, 100% { transform: translate(0px, 0px); }
    50% { transform: translate(-10px, -15px); }
}

/* Contact Section */
/* Locations Section */
.locations {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.locations::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.locations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.locations-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-green), #2d5a3d);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(2, 80, 40, 0.3);
}

.locations-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 1rem;
}

.locations-header .section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Branch Selector */
.branch-selector {
    display: none;
}

.branch-buttons {
    display: flex;
    background: white;
    padding: 0.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    gap: 0.5rem;
}

.branch-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.branch-btn.active {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 80, 40, 0.3);
}

.branch-btn:hover:not(.active) {
    background: #f8fafc;
    transform: translateY(-1px);
}

.branch-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.branch-btn.active .branch-icon {
    background: rgba(255, 255, 255, 0.2);
}

.branch-icon i {
    font-size: 1.5rem;
}

.branch-info {
    text-align: left;
    position: relative;
    z-index: 1;
}

.branch-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.branch-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Map Container */
.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.interactive-map {
    height: 100%;
    min-height: 500px;
    position: relative;
    background: #f1f5f9;
}

.interactive-map .ol-control {
    border-radius: 8px;
}

.interactive-map .ol-zoom {
    top: 1rem;
    left: 1rem;
}

.interactive-map .ol-zoom button {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-bottom: 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.interactive-map .ol-zoom button:hover {
    background: var(--primary-green);
    color: white;
    transform: scale(1.05);
}

/* Branch Details */
.branch-details {
    background: #f8fafc;
    padding: 2rem;
    position: relative;
}

.branch-detail {
    display: none;
}

.branch-detail.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

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

.detail-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.branch-status {
    background: #d1fae5;
    color: #065f46;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.detail-content {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.detail-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    width: 20px;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.detail-item div {
    flex: 1;
}

.detail-item strong {
    color: var(--primary-green);
    font-weight: 600;
}

.detail-item a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.detail-item a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn.primary {
    background: linear-gradient(45deg, var(--primary-green), #2d5a3d);
    color: white;
    box-shadow: 0 4px 15px rgba(2, 80, 40, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 80, 40, 0.4);
}

.action-btn.secondary {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.action-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .interactive-map {
        height: 400px;
    }
    
    .branch-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }
    
    .locations-header .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .locations {
        padding: 60px 0;
    }
    
    .locations-container {
        padding: 0 1rem;
    }
    
    .locations-header .section-title {
        font-size: 2rem;
    }
    
    .locations-header .section-subtitle {
        font-size: 1rem;
    }
    
    .branch-btn {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .branch-info h3 {
        font-size: 1.1rem;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
    
    .detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .action-btn {
        justify-content: center;
    }
    
    .interactive-map {
        height: 300px;
    }
}

/* Footer */
footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 40px 0 20px;
}

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

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

.footer-section p,
.footer-section li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

.footer-section ul a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-features {
        display: none;
    }

    /* Services cards safe spacing for tablets */
    .service-card-advanced {
        margin-bottom: 2rem;
    }

    /* No flip effect needed */
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        animation: fadeIn 0.8s ease-out 0.6s both;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        border-radius: 0 0 15px 15px;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.4s ease-out;
    }

    .nav-links li {
        transform: translateY(20px);
        opacity: 0;
        animation: slideUpFade 0.4s ease-out forwards;
    }

    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.5s; }

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

    .nav-links a {
        text-align: center;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content,

    .gate-options {
        gap: 1rem;
    }

    .gate-option {
        padding: 0.8rem;
    }

    .gate-thumb {
        width: 60px;
        height: 60px;
    }

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

    .gate-info-card {
        order: -1;
    }

    header {
        padding: 0 10px;
    }

    nav {
        padding: 1rem 0;
    }

    /* Hero Carousel Responsive */
    .hero {
        min-height: 100vh;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slide-content {
        padding: 2rem 1rem;
        order: 2;
    }

    .slide-visual {
        display: none;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .slide-features {
        display: none;
    }

    .slide-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }

    .carousel-navigation {
        bottom: 20px;
        gap: 1rem;
    }

    .nav-arrows {
        order: -1;
    }

    .floating-elements {
        display: none;
    }

    /* Services Section Responsive */
    .services-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .services-stats {
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-circle {
        width: 80px;
        height: 80px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

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

    .services-advanced-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }


    .service-card-advanced {
        height: auto;
        min-height: 320px;
        z-index: 1;
    }

    .service-card-inner {
        position: relative;
        height: auto;
    }

    .service-front {
        position: relative;
        backface-visibility: initial;
        min-height: 280px;
    }

    /* service-back removed - no flip effect */

    .service-icon-container {
        position: relative;
        margin: 0 auto 1.5rem;
        z-index: 2;
    }

    .service-info h3 {
        margin-top: 0.5rem;
    }

    .services-bottom-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .cta-primary-btn, .cta-secondary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .floating-elements-services {
        display: none;
    }

    /* About Section Responsive */
    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 4rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .experience-counter {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .counter-number {
        font-size: 3rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }


    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .about-cta {
        padding: 2.5rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Reviews Section Styles */
.reviews-section {
    padding: 4rem 0;
    margin: 4rem 0;
    background: linear-gradient(
        135deg,
        rgba(74, 144, 226, 0.05) 0%,
        rgba(80, 200, 120, 0.05) 50%,
        rgba(74, 144, 226, 0.05) 100%
    );
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(80, 200, 120, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.reviews-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.reviews-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.reviews-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 500px;
    margin: 0 auto;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Reviews Carousel */
.reviews-carousel {
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem 0;
}

.review-card {
    min-width: calc(50% - 0.75rem);
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4A90E2, #50C878);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 144, 226, 0.2);
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.reviewer-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.reviewer-location {
    font-size: 0.85rem;
    color: #718096;
    margin: 0.2rem 0 0 0;
}

.review-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.stars {
    display: flex;
    gap: 0.1rem;
}

.stars i {
    font-size: 0.9rem;
}

.stars .fas {
    color: #FFD700;
}

.stars .far {
    color: #e2e8f0;
}

.verified-badge {
    font-size: 0.75rem;
    color: #48bb78;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.verified-badge i {
    font-size: 0.8rem;
}

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

.review-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    font-style: italic;
    position: relative;
}

.review-content p::before {
    content: '"';
    font-size: 2rem;
    color: #e2e8f0;
    position: absolute;
    top: -0.5rem;
    left: -1rem;
    font-family: Georgia, serif;
}

.review-footer {
    font-size: 0.8rem;
    color: #718096;
}

/* Navigation Controls */
.reviews-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.reviews-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reviews-nav-btn:hover {
    background: #4A90E2;
    color: white;
    border-color: #4A90E2;
    transform: scale(1.1);
}

.reviews-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Styles for Reviews */
@media (max-width: 1024px) {
    .reviews-container {
        padding: 0 1rem;
    }
    
    .review-card {
        min-width: calc(100% - 1rem);
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 1rem;
        margin: 3rem 0;
    }
    
    .reviews-header h3 {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
        min-width: 100%;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .review-rating {
        align-items: flex-start;
    }
    
    .reviews-navigation {
        gap: 1rem;
    }
    
    .reviews-nav-btn {
        width: 45px;
        height: 45px;
    }
}