/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3e60;      /* Dark blue from logo */
    --secondary-color: #c49a2b;     /* Gold accent */
    --brand-green: #A4DE02;         /* Vibrant lime green - A4DE02 */
    --accent-color: #e67e22;        /* Orange for industrial feel */
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --black: #000000;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    --gradient-green: linear-gradient(135deg, var(--brand-green), #7aa800); /* Using new green */
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-green: 0 5px 20px rgba(164, 222, 2, 0.3);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem auto;
    position: relative;
}

.underline::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--brand-green);
    left: -20px;
    top: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--brand-green);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--brand-green);
    border-color: var(--brand-green);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--brand-green);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--brand-green);
    letter-spacing: 1px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brand-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-green);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO SLIDER STYLES - FIXED ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Slide Content (varies per slide) */
.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 600px;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide.active .slide-content {
    opacity: 1;
    transform: translateY(-50%) translateX(20px);
    animation: slideInContent 1s ease forwards;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Centered Content (appears on all slides) */
.hero-content-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    z-index: 10;
    width: 90%;
}

.hero-content-centered h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-content-centered p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content-centered .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-content-centered .hero-buttons .btn {
    min-width: 160px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(164, 222, 2, 0.8);
    color: var(--dark-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    font-weight: bold;
}

.slider-arrow:hover {
    background: var(--brand-green);
    color: var(--dark-color);
    transform: translateY(-50%) scale(1.1);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(164, 222, 2, 0.5);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Slider Dots/Indicators */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--brand-green);
    transform: scale(1.2);
    border-color: var(--white);
    box-shadow: 0 0 10px rgba(164, 222, 2, 0.5);
}

.dot:hover {
    background: var(--secondary-color);
}

/* Floating Images */
.floating-images {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 15;
}

.float-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--brand-green);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    background: var(--gradient-green);
    position: relative;
}

.float-image:hover {
    transform: scale(1.1) translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(164, 222, 2, 0.4);
    z-index: 16;
}

.float-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.float-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-green);
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
}

.float-fallback i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.float-image.fallback-active .float-fallback {
    display: flex !important;
}

/* Floating animations */
.float-1 { animation: float1 3s ease-in-out infinite; }
.float-2 { animation: float2 3.5s ease-in-out infinite; }
.float-3 { animation: float3 4s ease-in-out infinite; }
.float-4 { animation: float4 3.2s ease-in-out infinite; }

@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Hero Badge */
.hero-badge {
    position: absolute;
    top: 30px;
    right: 50px;
    background: var(--brand-green);
    color: var(--dark-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    z-index: 15;
    box-shadow: 0 5px 15px rgba(164, 222, 2, 0.4);
    border: 2px solid var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 34px;
    border: 2px solid var(--brand-green);
    animation: ripple 1.5s ease-out infinite;
    opacity: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ripple {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--brand-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 400px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.about-img:hover {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(164, 222, 2, 0.1), rgba(26, 62, 96, 0.1));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover::after {
    opacity: 1;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(164, 222, 2, 0.9);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.image-placeholder {
    background: var(--gradient-green);
    color: var(--white);
    padding: 4rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.image-placeholder p {
    color: var(--white);
    font-size: 1rem;
}

/* ===== MISSION & VISION ===== */
.mission-vision {
    padding: 60px 0;
    background: var(--gradient-green);
    color: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    border-color: var(--brand-green);
}

.mission-card .icon,
.vision-card .icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mission-card h3,
.vision-card h3 {
    color: var(--white);
}

.mission-card p,
.vision-card p {
    color: rgba(255,255,255,0.9);
}

/* ===== CORE VALUES ===== */
.values {
    padding: 80px 0;
    background: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-bottom: 3px solid var(--brand-green);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--dark-color);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.95rem;
}

/* ===== COMPETITIVE EDGE ===== */
.competitive-edge {
    padding: 80px 0;
    background: var(--white);
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.edge-item {
    padding: 2rem;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.edge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-left: 3px solid var(--brand-green);
}

.edge-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(164, 222, 2, 0.1);
}

.edge-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: var(--gradient-green);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-main {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-logo .logo-sub {
    color: var(--brand-green);
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-info p {
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--brand-green);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-green);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.footer ul li i {
    margin-right: 0.5rem;
    color: var(--brand-green);
}

.footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--brand-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--gradient-green);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
}

.breadcrumb {
    margin-top: 1rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--secondary-color);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 10px;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--brand-green);
    min-width: 40px;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

.info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--brand-green);
}

.direction-note {
    font-size: 0.9rem;
    color: var(--brand-green);
    margin-top: 0.5rem;
    background: rgba(164, 222, 2, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
}

.availability {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.emergency {
    color: #dc3545;
    margin-top: 0.5rem;
    display: block;
    font-weight: 600;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    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(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(164, 222, 2, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-notes {
    margin-top: 1rem;
    text-align: center;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 5px;
}

.map-notes i {
    color: var(--brand-green);
}

/* Hours Highlight */
.hours-highlight {
    padding: 40px 0;
    background: var(--light-color);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hours-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
}

.hours-card.emergency {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.hours-card.emergency i,
.hours-card.emergency h4,
.hours-card.emergency p {
    color: white;
}

.hours-card i {
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
}

.hours-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== CLIENTS PAGE ===== */
.clients-page {
    padding: 80px 0;
    background: var(--white);
}

.clients-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.client-category {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

.client-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.client-category h3 i {
    color: var(--brand-green);
}

.client-list {
    display: grid;
    gap: 1rem;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 5px;
    transition: var(--transition);
}

.client-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border-left: 3px solid var(--brand-green);
}

.client-item i {
    color: var(--brand-green);
    font-size: 1.2rem;
}

.client-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.client-item a:hover {
    color: var(--brand-green);
}

.client-item a i.external-link {
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition);
}

.client-item a:hover i.external-link {
    opacity: 1;
    margin-left: 5px;
}

.compliance-section {
    padding: 80px 0;
}

.compliance-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.compliance-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
}

.compliance-card i {
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
}

.compliance-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.compliance-card p {
    font-size: 0.9rem;
}

.certificates-placeholder {
    margin-top: 4rem;
    text-align: center;
}

.certificates-placeholder h3 {
    margin-bottom: 2rem;
}

.certificate-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-image-placeholder {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    border: 2px dashed var(--brand-green);
}

.cert-image-placeholder i {
    font-size: 3rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
}

.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonial-placeholder {
    text-align: center;
    padding: 4rem;
    background: var(--light-color);
    border-radius: 10px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.testimonial-placeholder i {
    color: var(--brand-green);
    margin: 0 0.5rem;
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
    padding: 80px 0;
    background: var(--white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--light-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--brand-green);
    color: var(--dark-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.gallery-image-placeholder {
    background: var(--gradient-green);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.gallery-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.gallery-item:hover .gallery-image-placeholder {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    color: var(--brand-green);
    margin-bottom: 0.25rem;
}

.gallery-caption p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    padding: 40px;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--brand-green);
}

#lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    font-size: 1rem;
}

/* Animations */
@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content-centered h1 {
        font-size: 3rem;
    }
    
    .hero-content-centered p {
        font-size: 1.1rem;
    }
    
    .slide-content {
        left: 5%;
        max-width: 500px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .floating-images {
        bottom: 30px;
        right: 30px;
    }
    
    .float-image {
        width: 70px;
        height: 70px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .about-content,
    .mv-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content-centered h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-centered .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content-centered .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .slide-content {
        display: none;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .floating-images {
        bottom: 80px;
        right: 50%;
        transform: translateX(50%);
        gap: 10px;
    }
    
    .float-image {
        width: 60px;
        height: 60px;
    }
    
    .hero-badge {
        top: 20px;
        right: 20px;
        padding: 5px 15px;
        font-size: 0.8rem;
    }
    
    .about-image {
        min-height: 300px;
        margin-top: 2rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item i {
        margin-bottom: 0.5rem;
    }
    
    .hero-content-centered h1 {
        font-size: 2rem;
    }
    
    .hero-content-centered p {
        font-size: 1rem;
    }
    
    .floating-images {
        flex-wrap: wrap;
        justify-content: center;
        width: 90%;
        bottom: 70px;
    }
    
    .float-image {
        width: 50px;
        height: 50px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .about-image {
        min-height: 250px;
    }
}

/* Slide Buttons */
.slide-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.slide-buttons .btn {
    min-width: 140px;
}

/* Adjust slide content positioning */
.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 600px;
    z-index: 5;
}

/* Responsive adjustments for slide content */
@media (max-width: 768px) {
    .slide-content {
        left: 5%;
        right: 5%;
        max-width: none;
        text-align: center;
    }
    
    .slide-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
}