:root {
  --primary-color: #53a548;
  --secondary-color: #9ACD32;
  --text-black: #1a1a1a;
  --text-grey: #666666;
  --bg-light: #f4f5f7;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --font-main: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-grey); line-height: 1.6; background-color: var(--bg-light); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { color: var(--text-black); font-weight: 700; margin-bottom: 0.5rem; }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.text-primary { color: var(--primary-color) !important; }
.text-gradient { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.text-white { color: var(--white); }

/* --- 3. Navigation Bar (with Dropdown) --- */
.nav-bar { background: var(--primary-color); color: var(--white); box-shadow: 0 2px 5px rgba(0,0,0,0.1); padding: 10px 0; }
.nav-container-flex { display: flex; justify-content: space-between; align-items: center; }
.nav-logo-link { display: flex; align-items: center; margin-right: 30px; }
.nav-logo { max-height: 75px; object-fit: contain; transition: all 0.3s ease; filter: brightness(0) invert(1); }
.nav-menu { display: flex; justify-content: center; align-items: center; flex: 1; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: block; padding: 15px 25px; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { background: rgba(0,0,0,0.1); }

/* Dropdown */
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 250px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-radius: 0 0 4px 4px; z-index: 1000; border: 1px solid var(--border-color); border-top: none; }
.nav-menu > li:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; padding: 12px 20px; color: var(--text-grey); border-bottom: 1px solid #f0f0f0; transition: all 0.2s; }
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { color: var(--primary-color); background: rgba(85,221,51,0.05); padding-left: 25px; }

.btn-quote { background: var(--text-black); color: var(--white); padding: 8px 20px; border-radius: 4px; font-weight: bold; cursor: pointer; border: none; text-transform: uppercase; font-size: 0.85rem; transition: background 0.2s; }
.btn-quote:hover { background: #333; }
.btn-primary { display: inline-block; background: var(--primary-color); color: var(--text-black); padding: 12px 30px; border-radius: 50px; font-weight: 600; font-size: 1.1rem; border: none; cursor: pointer; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: all 0.3s ease; text-decoration: none; }
.btn-primary:hover { background: var(--secondary-color); transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.15); }
.btn-white { display: inline-block; background: var(--white); color: var(--primary-color); padding: 12px 30px; border-radius: 50px; font-weight: 600; font-size: 1.1rem; border: none; cursor: pointer; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: all 0.3s ease; text-decoration: none; }
.btn-white:hover { background: #f9f9f9; transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.15); }
.btn-secondary { background: var(--text-grey); color: var(--white); border: none; padding: 12px 30px; border-radius: 4px; font-weight: bold; cursor: pointer; text-transform: uppercase; }

/* --- 4. Hero Slider --- */
.hero-slider { position: relative; color: var(--white); padding: 160px 0; text-align: center; border-bottom: 5px solid var(--secondary-color); overflow: hidden; z-index: 1; }
.hero-slider-bg-1, .hero-slider-bg-2, .hero-slider-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.hero-slider-bg-1 { background-image: url('img/Gazebo-1.jpeg'); z-index: -3; }
.hero-slider-bg-2 { background-image: url('img/002.jpeg'); z-index: -2; animation: fadeSlider 10s infinite alternate; }
.hero-slider-overlay { background: rgba(0,0,0,0.7); z-index: -1; }
@keyframes fadeSlider { 0%, 40% { opacity: 0; } 60%, 100% { opacity: 1; } }

.hero-slider h1 { font-size: 5rem; color: var(--white); margin-bottom: 20px; font-weight: 900; position: relative; z-index: 2; line-height: 1.1; word-break: normal; overflow-wrap: normal; hyphens: none; }
.typewriter-cursor { color: var(--primary-color); font-weight: 300; animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-slider p { font-size: 1.5rem; margin-bottom: 30px; color: #ddd; max-width: 700px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; }

/* --- 5. Info Strip --- */
.info-strip { background: var(--white); padding: 30px 0; border-bottom: 1px solid var(--border-color); }
.info-grid { display: flex; justify-content: space-between; gap: 20px; }
.info-item { display: flex; align-items: center; gap: 15px; }
.info-item i { font-size: 2rem; color: var(--text-grey); transition: color 0.3s; }
.info-item:hover i { color: var(--primary-color); }
.info-item-text h4 { font-size: 1rem; margin: 0; }
.info-item-text p { font-size: 0.85rem; margin: 0; }

/* --- 6. Category Grid (Products) --- */
.section-heading { text-align: center; margin: 60px 0 40px; font-size: 2.2rem; text-transform: uppercase; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; margin-bottom: 60px; }
.category-card { background: var(--white); border: 1px solid var(--border-color); border-radius: 8px; text-align: center; transition: all 0.3s ease; cursor: pointer; overflow: hidden; }
.category-card:hover { border-color: var(--primary-color); box-shadow: 0 15px 30px rgba(0,0,0,0.1); transform: translateY(-5px); }
.category-img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.4s ease; border-bottom: 1px solid var(--border-color); }
.category-card:hover .category-img { transform: scale(1.05); }
.category-card-body { padding: 20px; background: var(--white); position: relative; z-index: 2; }
.category-card-body h3 { font-size: 1.2rem; margin: 0 0 10px 0; font-weight: 700; }
.category-card-body p { font-size: 0.9rem; color: var(--text-grey); margin: 0; line-height: 1.4; }

/* --- 6b. Local Authority Section (SEO) --- */
.local-authority { padding: 80px 0; background: var(--bg-light); border-top: 1px solid var(--border-color); }
.local-authority-flex { display: flex; align-items: center; gap: 50px; }
.local-authority-text { flex: 1; }
.local-authority-text h2 { font-size: 2.2rem; margin-bottom: 20px; text-transform: uppercase; }
.local-authority-text p { font-size: 1.1rem; line-height: 1.8; color: var(--text-grey); margin-bottom: 20px; }
.local-authority-img { flex: 1; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.local-authority-img img { width: 100%; height: auto; display: block; }
@media (max-width: 768px) { .local-authority-flex { flex-direction: column; } }

/* --- 7. Client Logos Carousel --- */
.client-logos { padding: 60px 0; background: var(--white); border-top: 1px solid var(--border-color); overflow: hidden; }
.client-logos h2 { text-align: center; margin-bottom: 40px; text-transform: uppercase; }
.client-logos-marquee { display: flex; width: max-content; animation: slideLeft 30s linear infinite; align-items: center; }
.client-logos-marquee:hover { animation-play-state: paused; }
.client-logos-marquee img { height: 70px; margin: 0 40px; object-fit: contain; filter: grayscale(100%) opacity(0.6); transition: all 0.3s; }
.client-logos-marquee img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.1); }

@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- 8. Modal (6-Step Quote) --- */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 2000; justify-content: center; align-items: center; }
.modal-overlay.active { display: flex; }
.modal-content { background: var(--white); width: 100%; max-width: 600px; border-radius: 8px; padding: 30px; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; color: var(--text-grey); transition: color 0.2s; }
.modal-close:hover { color: var(--primary-color); }
.step-indicator { display: flex; justify-content: space-between; margin-bottom: 30px; position: relative; }
.step-indicator::before { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background: #eee; z-index: 1; transform: translateY(-50%); }
.step-dot { width: 30px; height: 30px; border-radius: 50%; background: #eee; color: var(--text-grey); display: flex; justify-content: center; align-items: center; font-weight: bold; position: relative; z-index: 2; transition: all 0.3s; }
.step-dot.active { background: var(--primary-color); color: var(--white); }
.step-dot.completed { background: var(--secondary-color); color: var(--white); }
.modal-step { display: none; }
.modal-step.active { display: block; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.modal-step h3 { margin-bottom: 20px; font-size: 1.4rem; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-black); }
.form-control { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 4px; font-family: inherit; }
.form-control:focus { outline: none; border-color: var(--primary-color); }
.modal-actions { display: flex; justify-content: space-between; margin-top: 30px; }

/* File Upload in Modal */
.file-upload { border: 2px dashed var(--border-color); padding: 30px; text-align: center; border-radius: 6px; background: #fdfdfd; cursor: pointer; position: relative; }
.file-upload:hover { border-color: var(--primary-color); background: rgba(85,221,51,0.02); }
.file-upload input[type="file"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }

/* --- 9. Footer --- */
.site-footer { background: var(--text-black); color: #bbb; padding: 60px 0 20px; }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--white); text-transform: uppercase; margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a:hover { color: var(--primary-color); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* --- Service Detail Page Specifics --- */
.service-hero { background: var(--primary-color); padding: 80px 0; text-align: center; color: var(--white); }
.service-hero h1 { color: var(--white); }
.service-sub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.service-sub-card { background: var(--white); border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; transition: all 0.3s; }
.service-sub-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--primary-color); }
.service-img { height: 200px; background: #f0f0f0; display: flex; justify-content: center; align-items: center; color: var(--primary-color); font-size: 3.5rem; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.service-sub-card:hover .service-img img { transform: scale(1.05); }
.service-sub-card-body { padding: 25px; }
.service-sub-card-body h3 { margin-bottom: 10px; }

/* --- About Page Specifics --- */
.about-hero { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/inner_b1.jpg') no-repeat center center/cover; padding: 120px 0; text-align: center; color: var(--white); border-bottom: 5px solid var(--secondary-color); }
.about-hero h1 { color: var(--white); font-size: 3rem; font-weight: 900; }

/* New About Showcase (Reference Image Layout) */
.about-showcase { display: flex; align-items: center; gap: 60px; padding: 100px 0; overflow: hidden; }
.showcase-left { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; min-height: 500px; }
.showcase-blob { position: absolute; top: 10%; left: 5%; width: 90%; height: 90%; background: linear-gradient(135deg, rgba(85,221,51,0.8), rgba(154,205,50,0.8)); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; z-index: 1; animation: morph 8s ease-in-out infinite; }
@keyframes morph { 0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } 34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; } 67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; } }
.showcase-main-img { position: relative; z-index: 2; width: 85%; object-fit: contain; border-radius: 20px; }
.showcase-float-card { position: absolute; bottom: 0; right: 0; background: var(--white); padding: 15px; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); z-index: 3; width: 45%; text-align: center; }
.showcase-float-card img { width: 100%; border-radius: 8px; margin-bottom: 10px; }
.showcase-float-card span { font-weight: 700; font-size: 0.9rem; display: block; }
.showcase-float-card small { color: var(--primary-color); font-weight: bold; }

.showcase-right { flex: 1; z-index: 2; }
.showcase-subtitle { color: var(--primary-color); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin-bottom: 15px; display: block; }
.showcase-title { font-size: 3rem; line-height: 1.1; font-weight: 900; color: var(--text-black); margin-bottom: 25px; }
.showcase-desc { color: var(--text-grey); line-height: 1.8; font-size: 1.05rem; margin-bottom: 40px; }

.feature-list { display: flex; flex-direction: column; gap: 30px; margin-bottom: 40px; }
.feature-item { display: flex; align-items: flex-start; gap: 20px; }
.feature-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(85,221,51,0.1); display: flex; justify-content: center; align-items: center; color: var(--primary-color); font-size: 1.8rem; flex-shrink: 0; }
.feature-text h4 { font-size: 1.2rem; margin-bottom: 8px; font-weight: 700; color: var(--text-black); }
.feature-text p { color: var(--text-grey); font-size: 0.95rem; line-height: 1.6; margin: 0; }

.showcase-cta-text { color: var(--primary-color); font-weight: 700; font-size: 1.1rem; margin-bottom: 25px; display: block; }
.showcase-actions { display: flex; align-items: center; gap: 30px; }
.call-expert { display: flex; align-items: center; gap: 15px; }
.expert-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.expert-info small { color: var(--text-grey); font-size: 0.85rem; display: block; margin-bottom: 2px; }
.expert-info strong { font-size: 1.1rem; color: var(--text-black); font-weight: 700; }

.about-section-2 { padding: 80px 0; background: var(--bg-light); border-top: 1px solid var(--border-color); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; }
.product-item { background: var(--white); border: 1px solid var(--border-color); border-radius: 8px; padding: 30px 20px; text-align: center; transition: all 0.3s ease; }
.product-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: var(--primary-color); }
.product-item h4 { font-size: 1.1rem; margin-bottom: 5px; }
.product-item p { color: var(--text-grey); font-size: 0.9rem; }
@media (max-width: 992px) { .about-showcase { flex-direction: column; text-align: center; } .feature-item { text-align: left; } .showcase-actions { justify-content: center; } .showcase-title { font-size: 2.5rem; } }

/* --- Full-width CTA Banner --- */
.cta-banner { position: relative; display: flex; justify-content: center; align-items: center; min-height: 450px; background: linear-gradient(90deg, var(--text-black) 0%, var(--primary-color) 100%); overflow: hidden; padding: 40px 20px; margin-bottom: 60px; }
.cta-content { text-align: center; color: var(--white); z-index: 3; max-width: 600px; }
.cta-content p { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.cta-content h2 { font-size: 3rem; font-weight: 900; line-height: 1.2; margin-bottom: 30px; color: var(--white); }
.btn-transparent { display: inline-block; background: transparent; color: var(--white); border: 2px solid var(--white); padding: 12px 35px; font-weight: bold; font-size: 1rem; border-radius: 4px; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; }
.btn-transparent:hover { background: var(--white); color: var(--text-black); }

/* Left side Diamond Mosaic */
.diamond-mosaic { position: absolute; left: 0; top: 50%; transform: translateY(-50%) translateX(-20%) rotate(45deg); display: flex; gap: 15px; z-index: 2; }
.diamond-col { display: flex; flex-direction: column; gap: 15px; }
.diamond-col:nth-child(2) { transform: translateY(67px); } /* offset to interlock */
.diamond { width: 140px; height: 140px; overflow: hidden; border-radius: 12px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); background: var(--white); }
.diamond img { width: 100%; height: 100%; object-fit: cover; transform: rotate(-45deg) scale(1.4); }

/* Right side Floating Products */
.floating-products { position: absolute; right: 5%; bottom: -30px; display: flex; align-items: flex-end; z-index: 2; height: 120%; }
.floating-product-1 { height: 75%; object-fit: contain; transform: rotate(-10deg) translateY(20px); z-index: 3; margin-right: -20px; filter: drop-shadow(-10px 10px 15px rgba(0,0,0,0.4)); }
.floating-diamond-wrapper { transform: rotate(45deg) translateY(-40px); z-index: 2; }
.diamond-large { width: 180px; height: 180px; }

@media (max-width: 1100px) {
    .diamond-mosaic { left: -100px; opacity: 0.5; }
    .floating-products { right: -50px; opacity: 0.5; }
}
@media (max-width: 768px) {
    .cta-banner { min-height: 350px; }
    .cta-content h2 { font-size: 2.2rem; }
    .diamond-mosaic, .floating-products { display: none; }
}

/* --- Contact Page Specifics --- */
.contact-hero { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/inner_b1.jpg') no-repeat center center/cover; padding: 150px 0 120px; text-align: center; color: var(--white); border-bottom: 5px solid var(--secondary-color); }
.contact-hero h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 15px; }

.contact-info-section { padding: 0 0 80px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: -60px; position: relative; z-index: 10; }
.info-card { background: var(--white); padding: 40px 30px; border-radius: 12px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); text-align: center; border-bottom: 4px solid var(--primary-color); transition: transform 0.3s ease; }
.info-card:hover { transform: translateY(-10px); }
.info-card .icon-box { width: 70px; height: 70px; background: rgba(85,221,51,0.1); color: var(--primary-color); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; margin: 0 auto 20px; }
.info-card .icon-box i { color: var(--primary-color) !important; }
.info-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--text-black); }
.info-card p, .info-card a { color: var(--text-grey); font-size: 1rem; line-height: 1.6; text-decoration: none; display: block; }
.info-card a:hover { color: var(--primary-color); }

.contact-form-section { padding: 80px 0; background: var(--bg-light); border-top: 1px solid var(--border-color); }
.contact-layout { display: flex; gap: 50px; flex-wrap: wrap; }
.contact-form-container { flex: 1; min-width: 400px; background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-form-container h2 { font-size: 2.2rem; margin-bottom: 10px; }
.contact-form-container > p { color: var(--text-grey); margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-control { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 6px; font-family: 'Poppins', sans-serif; font-size: 1rem; transition: border-color 0.3s ease; }
.form-control:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(85,221,51,0.1); }
textarea.form-control { resize: vertical; min-height: 150px; }

.contact-map-container { flex: 1; min-width: 400px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-map-container iframe { width: 100%; height: 100%; min-height: 500px; border: none; }

@media (max-width: 768px) {
    .contact-layout { flex-direction: column; }
    .contact-form-container, .contact-map-container { min-width: 100%; }
}

/* --- Gallery / Our Work Page Specifics --- */
.gallery-hero { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/inner_b1.jpg') no-repeat center center/cover; padding: 150px 0 100px; text-align: center; color: var(--white); border-bottom: 5px solid var(--secondary-color); }
.gallery-hero h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 15px; color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; padding: 60px 0 100px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); cursor: pointer; background: #fff; }
.gallery-img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.logo-img { width: 100%; height: 300px; object-fit: contain; padding: 30px; display: block; transition: transform 0.5s ease; background: var(--white); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.4s ease; color: var(--white); text-align: center; padding: 20px; }
.gallery-item:hover .gallery-img, .gallery-item:hover .logo-img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2.5rem; margin-bottom: 10px; color: var(--primary-color); transform: translateY(20px); transition: transform 0.4s ease; }
.gallery-overlay h3 { font-size: 1.4rem; color: var(--white); transform: translateY(20px); transition: transform 0.4s ease 0.1s; margin: 0; }
.gallery-item:hover .gallery-overlay i, .gallery-item:hover .gallery-overlay h3 { transform: translateY(0); }

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* --- Mobile Menu Styles --- */
.mobile-menu-toggle {
    display: none;
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: 6px 8px;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    margin-left: auto;
}
.mobile-menu-toggle:hover {
    background: rgba(85,221,51,0.1);
}

@media (max-width: 992px) {
    .nav-container-flex {
        flex-wrap: wrap;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .btn-quote {
        display: none;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--primary-color);
        margin-top: 15px;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu > li {
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-menu > li > a {
        padding: 12px 20px;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0,0,0,0.1);
    }
    .nav-menu > li:hover .dropdown-menu {
        display: none;
    }
    .nav-menu > li.active .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        color: var(--white);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .dropdown-menu li a:hover {
        background: rgba(0,0,0,0.2);
        color: var(--white);
    }
    .nav-container-flex:has(.nav-menu.active) .nav-logo-link {
        display: none;
    }
}

/* --- Global Responsive Tweaks --- */
@media (max-width: 768px) {
    /* Hero Sections */
    .hero-slider { padding: 100px 0; }
    .hero-slider h1 { font-size: clamp(2.5rem, 12vw, 4rem); line-height: 1.2; word-break: normal; overflow-wrap: normal; hyphens: none; }
    .hero-slider p { font-size: 1.1rem; }
    
    .about-hero, .contact-hero, .gallery-hero { padding: 100px 0 80px; }
    .about-hero h1, .contact-hero h1, .gallery-hero h1 { font-size: 2.2rem; }

    /* Info Strip */
    .info-grid { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        gap: 30px; 
    }
    .info-item { 
        flex-direction: column; 
        text-align: center; 
        gap: 10px;
    }

    /* Modals & Forms */
    .modal-content {
        padding: 20px;
        margin: 15px;
        width: auto;
    }
    
    /* Section Headings */
    .section-heading {
        font-size: 1.8rem;
        margin: 40px 0 30px;
    }
}

@media (max-width: 480px) {
    /* Grids on very small devices */
    .category-grid, .service-sub-grid, .gallery-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page Adjustments */
    .contact-form-container, .contact-map-container {
        padding: 20px;
        min-width: 100%;
    }
    .contact-hero h1 {
        font-size: 2rem;
    }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #fff;
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* --- 404 Error Page --- */
.error-hero {
    background: var(--primary-color);
    padding: 150px 0;
    text-align: center;
    color: var(--white);
}
.error-hero h1 {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 20px;
}
.error-hero p {
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto 30px;
}
