/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; line-height: 1.6; color: #333; background: #FFFFFF; }

/* Container */
.container { width: 90%; margin: 0 auto; max-width: 1200px; }

/* Header */
header { background: #1A2526; color: white; position: fixed; top: 0; width: 100%; z-index: 100; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
header .main-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; }
header .logo img { height: 50px; display: block; }
header .nav-menu { list-style: none; display: flex; gap: 1.5rem; }
header .nav-menu li a { color: #FFFFFF !important; text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 1rem; transition: color 0.3s; }
header .nav-menu li a.active, header .nav-menu li a:hover { color: #D4A017 !important; }
header .contact-bar { background: #0F1A1B; text-align: center; padding: 0.5rem; font-size: 0.9rem; font-family: 'Open Sans', sans-serif; }
header .contact-bar span { display: inline; }

/* Hamburger Menu */
header .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
header .hamburger span { width: 25px; height: 3px; background: white; transition: all 0.3s; }

/* Responsive Header */
@media (max-width: 768px) {
    header .main-header { padding: 1rem 3%; }
    header .nav-menu { display: none; flex-direction: column; gap: 1rem; background: #1A2526; width: 100%; padding: 1rem 0; position: absolute; top: 70px; left: 0; }
    header .nav-menu.active { display: flex; }
    header .nav-menu li a { display: block; text-align: center; padding: 0.5rem 0; }
    header .hamburger { display: flex; }
    header .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    header .hamburger.active span:nth-child(2) { opacity: 0; }
    header .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    header .contact-bar { font-size: 0.85rem; }
    header .contact-bar span { display: block; margin: 0.3rem 0; }
}

/* Hero Slider with Parallax (for index.php) */
.hero-slider { position: relative; width: 100%; height: 600px; margin-top: 60px; margin-bottom: 1.5rem; overflow: hidden; aspect-ratio: 16 / 9; background: #1A2526; }
.hero-slider .slides { display: flex; width: 100%; height: 100%; transition: transform 0.5s ease-in-out; }
.hero-slider .slide { min-width: 100%; height: 100%; position: relative; opacity: 0; transition: opacity 0.5s ease-in-out; }
.hero-slider .slide.active { opacity: 1; }
.hero-slider .slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); display: block; transform: scale(1.1); transition: transform 5s ease-in-out; }
.hero-slider .overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: white; z-index: 2; }
.hero-slider .overlay h1 { font-family: 'Montserrat', sans-serif; font-size: 3.5rem; margin-bottom: 1rem; text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5); }
.hero-slider .overlay p { font-size: 1.5rem; margin-bottom: 2rem; }
.hero-slider .cta-button { background: #FF6200; color: white; padding: 1rem 3rem; text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 700; border-radius: 50px; transition: background 0.3s, transform 0.3s; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); }
.hero-slider .cta-button:hover { background: #D4A017; transform: scale(1.1); }
.hero-slider .prev, .hero-slider .next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.5); color: white; border: none; padding: 1rem; cursor: pointer; font-size: 1.5rem; z-index: 3; }
.hero-slider .prev { left: 20px; }
.hero-slider .next { right: 20px; }

/* Scroll Animations */
.animate-on-scroll { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* General Sections */
section { padding: 10rem 0; position: relative; z-index: 1; }
section h2 { font-family: 'Montserrat', sans-serif; font-size: 3.5rem; color: #1A2526; text-align: center; margin-bottom: 3rem; text-transform: uppercase; letter-spacing: 2px; }
section h3 { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; color: #1A2526; margin: 2rem 0 1.5rem; }

/* Intro Section (for index.php) */
.intro { background: linear-gradient(135deg, #1A2526 0%, #FF6200 100%); color: white; padding: 7rem 0; position: relative; overflow: hidden; }
.intro::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255, 98, 0, 0.2) 0%, transparent 70%); transform: rotate(45deg); }
.intro h2 { font-size: 4rem; text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5); }
.intro p { font-size: 1.5rem; max-width: 900px; line-height: 1.8; font-weight: 600; }

/* Services Section (for index.php) */
.services { background: #FFFFFF; }
.services .service-cards { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.services .card { background: #F5F5F5; padding: 2.5rem; border-radius: 20px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); width: 30%; text-align: center; transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.services .card:hover { transform: translateY(-15px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
.services .card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: #FF6200; transition: height 0.3s; }
.services .card:hover::before { height: 100%; opacity: 0.2; }
.services .card .service-icon { font-size: 3rem; color: #D4A017; margin-bottom: 1.5rem; transition: color 0.3s; display: inline-block; }
.services .card:hover .service-icon { color: #FF6200; }
.services .card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.8rem; color: #1A2526; margin-bottom: 1rem; }
.services .card p { font-size: 1.1rem; color: #666; }
@media (max-width: 768px) {
    .services .card { width: 100%; margin-bottom: 1.5rem; }
}

/* Off-Site Monitoring Section (for index.php) */
.off-site-monitoring { background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%); position: relative; }
.off-site-monitoring::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23D4A017" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat bottom; }
.off-site-monitoring .monitoring-content { display: flex; gap: 3rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.off-site-monitoring .monitoring-text { flex: 1; min-width: 300px; position: relative; z-index: 2; }
.off-site-monitoring .monitoring-text p { font-size: 1.3rem; color: #666; text-align: left; margin-bottom: 2rem; }
.off-site-monitoring .monitoring-text .cta-button { 
    display: inline-block; 
    background: #FF6200; 
    color: white; 
    padding: 0.8rem 2.5rem; 
    border-radius: 50px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.1rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s; 
    z-index: 3; 
    text-decoration: none; 
}
.off-site-monitoring .monitoring-text .cta-button:hover { 
    background: #D4A017; 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
}
.off-site-monitoring .monitoring-image { flex: 1; min-width: 300px; position: relative; z-index: 1; }
.off-site-monitoring .monitoring-image img { width: 100%; border-radius: 15px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); transition: transform 0.3s; }
.off-site-monitoring .monitoring-image:hover img { transform: scale(1.05); }

/* Footer */
footer { background: #1A2526; color: white; padding: 3rem 0; position: relative; z-index: 1; }
footer .footer-content { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
footer .footer-section { flex: 1; min-width: 250px; }
footer .footer-section h3 { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; margin-bottom: 1rem; }
footer .footer-section ul { list-style: none; }
footer .footer-section ul li { font-size: 0.9rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
footer .footer-section ul li i { color: #D4A017; }
footer .footer-section p { font-size: 0.9rem; line-height: 1.7; }
footer .footer-section a { color: #D4A017; text-decoration: none; transition: color 0.3s; }
footer .footer-section a:hover { color: white; }
footer .copyright { text-align: center; margin-top: 2rem; font-size: 0.9rem; opacity: 0.7; }
@media (max-width: 768px) {
    footer .footer-section { flex: 100%; margin-bottom: 2rem; }
}

/* About Page Styles */
.about-hero { 
    position: relative; 
    height: 700px; 
    background: linear-gradient(135deg, #1A2526 0%, #FF6200 70%); 
    margin-top: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    overflow: hidden; 
}
.about-hero::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23D4A017" fill-opacity="0.2" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"%3E%3C/path%3E%3C/svg%3E') no-repeat top; 
    z-index: 1; 
}
.about-hero .overlay { 
    position: relative; 
    z-index: 2; 
    color: white; 
}
.about-hero h1 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 4.5rem; 
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5); 
    margin-bottom: 1.5rem; 
}
.about-hero p { 
    font-size: 1.8rem; 
    font-weight: 600; 
    margin-bottom: 2rem; 
}
.about-hero .cta-button { 
    background: #D4A017; 
    color: white; 
    padding: 1.5rem 4rem; 
    font-size: 1.3rem; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    border-radius: 50px; 
    border: 2px solid #FFFFFF; 
    text-decoration: none; 
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); 
    display: inline-block; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}
.about-hero .cta-button:hover { 
    background: #FF6200; 
    transform: translateY(-5px); 
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5); 
}

/* Our Achievements Section */
.our-achievements { 
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%); 
    padding: 10rem 0; 
    position: relative; 
}
.our-achievements::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23D4A017" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat bottom; 
}
.our-achievements h2 { 
    font-size: 3.5rem; 
    margin-bottom: 1rem; 
}
.our-achievements .achievement-cards { 
    display: flex; 
    gap: 2rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.our-achievements .achievement-card { 
    background: #FFFFFF; 
    padding: 2rem; 
    border-radius: 15px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    border: 1px solid #D4A017; 
    width: 22%; 
    text-align: center; 
    transition: transform 0.3s, box-shadow 0.3s; 
}
.our-achievements .achievement-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); 
}
.our-achievements .achievement-card .achievement-icon { 
    font-size: 3rem; 
    color: #D4A017; 
    margin-bottom: 1.5rem; 
    transition: color 0.3s; 
}
.our-achievements .achievement-card:hover .achievement-icon { 
    color: #FF6200; 
}
.our-achievements .achievement-card h3 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.6rem; 
    color: #1A2526; 
    margin-bottom: 1rem; 
}
.our-achievements .achievement-card p { 
    font-size: 1.1rem; 
    color: #666; 
}
@media (max-width: 768px) {
    .our-achievements .achievement-card { width: 100%; margin-bottom: 2rem; }
}

/* Our Story Section */
.our-story { 
    background: #FFFFFF; 
    padding: 10rem 0; 
}
.our-story h2 { 
    font-size: 3.5rem; 
    margin-bottom: 2rem; 
}
.our-story p { 
    font-size: 1.4rem; 
    color: #555; 
    line-height: 1.8; 
    max-width: 900px; 
    margin: 0 auto; 
    text-align: center; 
}

/* Our Values Section */
.our-values { 
    background: #FFFFFF; 
    padding: 10rem 0; 
}
.our-values h2 { 
    font-size: 3.5rem; 
    margin-bottom: 3rem; 
}
.our-values .values-cards { 
    display: flex; 
    gap: 2rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.our-values .value-card { 
    background: #F5F5F5; 
    padding: 2.5rem; 
    border-radius: 15px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    border: 1px solid #D4A017; 
    width: 22%; 
    text-align: center; 
    transition: transform 0.3s, box-shadow 0.3s; 
}
.our-values .value-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); 
}
.our-values .value-card .value-icon { 
    font-size: 3rem; 
    color: #D4A017; 
    margin-bottom: 1.5rem; 
    transition: color 0.3s; 
}
.our-values .value-card:hover .value-icon { 
    color: #FF6200; 
}
.our-values .value-card h3 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.6rem; 
    color: #1A2526; 
    margin-bottom: 1rem; 
}
.our-values .value-card p { 
    font-size: 1.1rem; 
    color: #666; 
}
@media (max-width: 768px) {
    .our-values .value-card { width: 100%; margin-bottom: 2rem; }
}

/* Call to Action Section */
.cta-section { 
    background: linear-gradient(135deg, #1A2526 0%, #FF6200 100%); 
    color: white; 
    padding: 6rem 0; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
}
.cta-section::before { 
    content: ''; 
    position: absolute; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%; 
    background: radial-gradient(circle, rgba(255, 98, 0, 0.2) 0%, transparent 70%); 
    transform: rotate(45deg); 
}
.cta-section h2 { 
    font-size: 3rem; 
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5); 
    color: white; 
    margin-bottom: 1.5rem; 
}
.cta-section p { 
    font-size: 1.5rem; 
    margin-bottom: 2rem; 
}
.cta-section .cta-button { 
    background: #D4A017; 
    color: white; 
    padding: 1.2rem 4rem; 
    font-size: 1.2rem; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    border-radius: 50px; 
    border: 2px solid #FFFFFF; 
    text-decoration: none; 
    transition: background 0.3s, transform 0.3s; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
    display: inline-block; 
}
.cta-section .cta-button:hover { 
    background: #FF6200; 
    transform: scale(1.1); 
}

/* Services Page Styles */
.services-hero { 
    position: relative; 
    height: 700px; 
    background: linear-gradient(135deg, #1A2526 0%, #FF6200 70%); 
    margin-top: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    overflow: hidden; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); 
}
.services-hero::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23D4A017" fill-opacity="0.2" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"%3E%3C/path%3E%3C/svg%3E') no-repeat top; 
    z-index: 1; 
}
.services-hero .overlay { 
    position: relative; 
    z-index: 2; 
    color: white; 
    background: rgba(0, 0, 0, 0.3); 
    padding: 2rem; 
    border-radius: 15px; 
}
.services-hero h1 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 5rem; 
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7); 
    margin-bottom: 1.5rem; 
}
.services-hero p { 
    font-size: 2rem; 
    font-weight: 600; 
    margin-bottom: 2rem; 
}
.services-hero .cta-button { 
    background: #D4A017; 
    color: white; 
    padding: 1.8rem 5rem; 
    font-size: 1.5rem; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    border-radius: 50px; 
    border: 2px solid #FFFFFF; 
    text-decoration: none; 
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); 
    display: inline-block; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    animation: pulse 2s infinite; 
}
.services-hero .cta-button:hover { 
    background: #FF6200; 
    transform: translateY(-5px); 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); 
}

/* Pulse Animation for CTA Button */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.services-section { 
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%); 
    padding: 12rem 0; 
    position: relative; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
}
.services-section::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23D4A017" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat bottom; 
}
.services-section h2 { 
    font-size: 4rem; 
    margin-bottom: 1rem; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); 
}
.services-section .service-cards { 
    display: flex; 
    gap: 3rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.services-section .service-card { 
    background: #FFFFFF; 
    padding: 3rem; 
    border-radius: 20px; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
    border: 2px solid #D4A017; 
    width: 30%; 
    text-align: center; 
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s; 
}
.services-section .service-card:hover { 
    transform: translateY(-15px); 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25); 
    border-color: #FF6200; 
}
.services-section .service-card .service-icon { 
    font-size: 4rem; 
    color: #D4A017; 
    margin-bottom: 2rem; 
    transition: color 0.4s, transform 0.4s; 
}
.services-section .service-card:hover .service-icon { 
    color: #FF6200; 
    transform: scale(1.1); 
}
.services-section .service-card h3 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 2rem; 
    color: #1A2526; 
    margin-bottom: 1.5rem; 
}
.services-section .service-card .sub-services { 
    list-style: none; 
    text-align: left; 
    font-size: 1.1rem; 
    color: #555; 
    line-height: 1.8; 
}
.services-section .service-card .sub-services li { 
    position: relative; 
    padding-left: 1.5rem; 
    margin-bottom: 0.8rem; 
}
.services-section .service-card .sub-services li::before { 
    content: '\f058'; 
    font-family: 'Font Awesome 6 Free'; 
    font-weight: 900; 
    color: #D4A017; 
    position: absolute; 
    left: 0; 
    top: 0; 
}
@media (max-width: 768px) {
    .services-section .service-card { width: 100%; margin-bottom: 3rem; }
}

/* Request Quote Page Styles */
.request-quote-hero { 
    position: relative; 
    height: 700px; 
    background: linear-gradient(135deg, #1A2526 0%, #FF6200 70%); 
    margin-top: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    overflow: hidden; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); 
}
.request-quote-hero::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23D4A017" fill-opacity="0.2" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"%3E%3C/path%3E%3C/svg%3E') no-repeat top; 
    z-index: 0; 
}
.request-quote-hero .overlay { 
    position: relative; 
    z-index: 2; 
    color: white; 
    background: rgba(0, 0, 0, 0.3); 
    padding: 2rem; 
    border-radius: 15px; 
}
.request-quote-hero h1 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 5rem; 
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7); 
    margin-bottom: 1.5rem; 
}
.request-quote-hero p { 
    font-size: 2rem; 
    font-weight: 600; 
    margin-bottom: 2rem; 
}
.request-quote-hero .cta-button { 
    background: #D4A017; 
    color: white; 
    padding: 1.8rem 5rem; 
    font-size: 1.5rem; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    border-radius: 50px; 
    border: 2px solid #FFFFFF; 
    text-decoration: none; 
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); 
    display: inline-block; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    animation: pulse 2s infinite; 
}
.request-quote-hero .cta-button:hover { 
    background: #FF6200; 
    transform: translateY(-5px); 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); 
}

.quote-form-section { 
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%); 
    padding: 12rem 0; 
    position: relative; 
    z-index: 1; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
}
.quote-form-section::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23D4A017" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat bottom; 
    z-index: 0; 
}
.quote-form-section form { 
    max-width: 800px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 2rem; 
    background: #FFFFFF; 
    padding: 3rem; 
    border-radius: 20px; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
    border: 2px solid #D4A017; 
    position: relative; 
    z-index: 2; 
    pointer-events: auto; 
}
.quote-form-section form .form-row { 
    display: flex; 
    gap: 1.5rem; 
    flex-wrap: wrap; 
}
.quote-form-section form .form-group { 
    flex: 1; 
    min-width: 250px; 
}
.quote-form-section form label { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
    color: #1A2526; 
    font-size: 1.2rem; 
    display: block; 
    margin-bottom: 0.5rem; 
}
.quote-form-section form input, 
.quote-form-section form textarea, 
.quote-form-section form select { 
    width: 100%; 
    padding: 1rem; 
    border: 2px solid #D4A017; 
    border-radius: 10px; 
    font-family: 'Open Sans', sans-serif; 
    font-size: 1rem; 
    transition: border-color 0.3s, box-shadow 0.3s; 
    pointer-events: auto; 
    cursor: text; 
}
.quote-form-section form input:focus, 
.quote-form-section form textarea:focus, 
.quote-form-section form select:focus { 
    border-color: #FF6200; 
    box-shadow: 0 0 8px rgba(255, 98, 0, 0.3); 
    outline: none; 
}
.quote-form-section form select { 
    cursor: pointer; 
}
.quote-form-section form textarea { 
    min-height: 120px; 
    resize: vertical; 
}
.quote-form-section form .consent-group { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}
.quote-form-section form .consent-group input[type="checkbox"] { 
    width: auto; 
    cursor: pointer; 
    pointer-events: auto; 
}
.quote-form-section form .consent-group label { 
    font-size: 1rem; 
    font-weight: 400; 
}
.quote-form-section form .consent-group a { 
    color: #D4A017; 
    text-decoration: underline; 
}
.quote-form-section form .consent-group a:hover { 
    color: #FF6200; 
}
.quote-form-section form button { 
    background: #D4A017; 
    color: white; 
    padding: 1.5rem 4rem; 
    border: none; 
    border-radius: 50px; 
    cursor: pointer; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    font-size: 1.2rem; 
    text-transform: uppercase; 
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
    align-self: center; 
    pointer-events: auto; 
}
.quote-form-section form button:hover { 
    background: #FF6200; 
    transform: scale(1.05); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); 
}
@media (max-width: 768px) {
    .quote-form-section form { padding: 2rem; }
    .quote-form-section form .form-group { min-width: 100%; }
}

/* Contact Page Styles */
.contact-hero { 
    position: relative; 
    height: 700px; 
    background: linear-gradient(135deg, #1A2526 0%, #FF6200 70%); 
    margin-top: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    overflow: hidden; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); 
}
.contact-hero::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23D4A017" fill-opacity="0.2" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"%3E%3C/path%3E%3C/svg%3E') no-repeat top; 
    z-index: 0; 
}
.contact-hero .overlay { 
    position: relative; 
    z-index: 2; 
    color: white; 
    background: rgba(0, 0, 0, 0.3); 
    padding: 2rem; 
    border-radius: 15px; 
}
.contact-hero h1 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 5rem; 
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7); 
    margin-bottom: 1.5rem; 
}
.contact-hero p { 
    font-size: 2rem; 
    font-weight: 600; 
    margin-bottom: 2rem; 
}
.contact-hero .cta-button { 
    background: #D4A017; 
    color: white; 
    padding: 1.8rem 5rem; 
    font-size: 1.5rem; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    border-radius: 50px; 
    border: 2px solid #FFFFFF; 
    text-decoration: none; 
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); 
    display: inline-block; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    animation: pulse 2s infinite; 
}
.contact-hero .cta-button:hover { 
    background: #FF6200; 
    transform: translateY(-5px); 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); 
}

.contact-details { 
    background: #FFFFFF; 
    padding: 10rem 0; 
    position: relative; 
    z-index: 1; 
}
.contact-details .contact-offices { 
    display: flex; 
    gap: 2rem; 
    justify-content: center; 
    flex-wrap: wrap; 
    margin-bottom: 3rem; 
}
.contact-details .office { 
    background: #F5F5F5; 
    padding: 2rem; 
    border-radius: 15px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    width: 30%; 
    text-align: center; 
}
.contact-details .office h3 { 
    font-size: 1.8rem; 
    margin-bottom: 1.5rem; 
}
.contact-details .office p { 
    font-size: 1.1rem; 
    color: #666; 
    margin-bottom: 0.5rem; 
}
.contact-details .office p i { 
    color: #D4A017; 
    margin-right: 0.5rem; 
}
.contact-details .coordinator { 
    text-align: center; 
}
.contact-details .coordinator h3 { 
    font-size: 1.8rem; 
    margin-bottom: 1.5rem; 
}
.contact-details .coordinator p { 
    font-size: 1.1rem; 
    color: #666; 
    margin-bottom: 0.5rem; 
}
.contact-details .coordinator p i { 
    color: #D4A017; 
    margin-right: 0.5rem; 
}
.contact-details .coordinator a { 
    color: #D4A017; 
    text-decoration: none; 
}
.contact-details .coordinator a:hover { 
    color: #FF6200; 
}
@media (max-width: 768px) {
    .contact-details .office { width: 100%; margin-bottom: 2rem; }
}

.maps-section { 
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%); 
    padding: 10rem 0; 
    position: relative; 
    z-index: 1; 
}
.maps-section::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23D4A017" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat bottom; 
    z-index: 0; 
}
.maps-section .maps-container { 
    display: flex; 
    gap: 2rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.maps-section .map { 
    width: 30%; 
    text-align: center; 
}
.maps-section .map h3 { 
    font-size: 1.8rem; 
    margin-bottom: 1.5rem; 
}
.maps-section .map iframe { 
    width: 100%; 
    height: 300px; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
}
@media (max-width: 768px) {
    .maps-section .map { width: 100%; margin-bottom: 2rem; }
}

.contact-form-section { 
    background: #FFFFFF; 
    padding: 10rem 0; 
    position: relative; 
    z-index: 1; 
}
.contact-form-section::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23D4A017" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') no-repeat bottom; 
    z-index: 0; 
}
.contact-form-section form { 
    max-width: 800px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 2rem; 
    background: #FFFFFF; 
    padding: 3rem; 
    border-radius: 20px; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
    border: 2px solid #D4A017; 
    position: relative; 
    z-index: 2; 
    pointer-events: auto; 
}
.contact-form-section form .form-row { 
    display: flex; 
    gap: 1.5rem; 
    flex-wrap: wrap; 
}
.contact-form-section form .form-group { 
    flex: 1; 
    min-width: 250px; 
}
.contact-form-section form label { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
    color: #1A2526; 
    font-size: 1.2rem; 
    display: block; 
    margin-bottom: 0.5rem; 
}
.contact-form-section form input, 
.contact-form-section form textarea { 
    width: 100%; 
    padding: 1rem; 
    border: 2px solid #D4A017; 
    border-radius: 10px; 
    font-family: 'Open Sans', sans-serif; 
    font-size: 1rem; 
    transition: border-color 0.3s, box-shadow 0.3s; 
    pointer-events: auto; 
    cursor: text; 
}
.contact-form-section form input:focus, 
.contact-form-section form textarea:focus { 
    border-color: #FF6200; 
    box-shadow: 0 0 8px rgba(255, 98, 0, 0.3); 
    outline: none; 
}
.contact-form-section form textarea { 
    min-height: 120px; 
    resize: vertical; 
}
.contact-form-section form .consent-group { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}
.contact-form-section form .consent-group input[type="checkbox"] { 
    width: auto; 
    cursor: pointer; 
    pointer-events: auto; 
}
.contact-form-section form .consent-group label { 
    font-size: 1rem; 
    font-weight: 400; 
}
.contact-form-section form .consent-group a { 
    color: #D4A017; 
    text-decoration: underline; 
}
.contact-form-section form .consent-group a:hover { 
    color: #FF6200; 
}
.contact-form-section form button { 
    background: #D4A017; 
    color: white; 
    padding: 1.5rem 4rem; 
    border: none; 
    border-radius: 50px; 
    cursor: pointer; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    font-size: 1.2rem; 
    text-transform: uppercase; 
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
    align-self: center; 
    pointer-events: auto; 
}
.contact-form-section form button:hover { 
    background: #FF6200; 
    transform: scale(1.05); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); 
}
@media (max-width: 768px) {
    .contact-form-section form { padding: 2rem; }
    .contact-form-section form .form-group { min-width: 100%; }
}

/* Responsive Typography */
@media (max-width: 768px) {
    section h2 { font-size: 2.5rem; }
    section h3 { font-size: 1.5rem; }
    .about-hero h1, .services-hero h1, .request-quote-hero h1, .contact-hero h1 { font-size: 3.5rem; }
    .about-hero p, .services-hero p, .request-quote-hero p, .contact-hero p { font-size: 1.6rem; }
    .about-hero .cta-button, .services-hero .cta-button, .request-quote-hero .cta-button, .contact-hero .cta-button { padding: 1.5rem 4rem; font-size: 1.3rem; }
    .our-achievements h2, .our-story h2, .our-values h2, .services-section h2, .quote-form-section h2, .contact-details h2, .maps-section h2, .contact-form-section h2, .cta-section h2 { font-size: 3rem; }
    .our-story p { font-size: 1.2rem; }
    .cta-section p { font-size: 1.2rem; }
    .services-section .service-card h3 { font-size: 1.8rem; }
    .services-section .service-card .sub-services { font-size: 1rem; }
}