/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #1a3c5e;
  --secondary: #00b4d8;
  --accent: #f4a261;
  --dark: #0d1b2a;
  --light: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.18);
  --radius: 12px;
  --transition: all 0.3s ease;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-main); color: var(--dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-main); }

/* ===== UTILITY CLASSES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }
.section-primary { background: var(--primary); color: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .tag { display: inline-block; background: rgba(0,180,216,0.1); color: var(--secondary); font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; margin-bottom: 14px; border: 1px solid rgba(0,180,216,0.3); }
.section-header h2 { font-size: 2.4rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; line-height: 1.2; }
.section-dark .section-header h2, .section-primary .section-header h2 { color: var(--white); }
.section-header p { font-size: 1.05rem; color: var(--gray); max-width: 580px; margin: 0 auto; }
.section-dark .section-header p, .section-primary .section-header p { color: rgba(255,255,255,0.75); }

.divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--secondary), var(--accent)); border-radius: 2px; margin: 14px auto 0; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,180,216,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #e07b3a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,162,97,0.35); }
.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-call { background: var(--primary); color: var(--white); }
.btn-call:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,60,94,0.35); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--primary); transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; transition: var(--transition); }
.navbar.scrolled { background: var(--white); box-shadow: var(--shadow); }
.navbar.scrolled .nav-logo span { color: var(--primary); }
.navbar.scrolled .nav-logo .dot { color: var(--secondary); }
.navbar.scrolled .nav-link { color: var(--dark); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--secondary); }
.navbar.scrolled .hamburger span { background: var(--dark); }

.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; max-width: 1200px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-img { height: 52px; width: auto; display: block; }
.nav-logo span { font-size: 1.35rem; font-weight: 700; color: var(--white); letter-spacing: 0.5px; }
.nav-logo .dot { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 8px 16px; border-radius: 8px; font-weight: 500; font-size: 0.95rem; color: rgba(255,255,255,0.9); transition: var(--transition); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--secondary); background: rgba(0,180,216,0.08); }
.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 10px 22px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== HERO SLIDER ===== */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slider { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.slide.active { opacity: 1; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,0.80) 0%, rgba(26,60,94,0.55) 100%); }

.slide-1 .slide-bg { background: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat #1a3c5e; }
.slide-2 .slide-bg { background: url('https://images.unsplash.com/photo-1560185127-6ed189bf02f4?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat #0d1b2a; }
.slide-3 .slide-bg { background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat #1a3c5e; }

.slide-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.slide-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.slide-tag { display: inline-block; background: var(--accent); color: var(--white); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; margin-bottom: 20px; }
.slide-inner h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; max-width: 680px; }
.slide-inner h1 span { color: var(--secondary); }
.slide-inner p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 520px; }
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-controls { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: 10px; }
.dot-nav { width: 10px; height: 10px; background: rgba(255,255,255,0.4); border-radius: 50%; cursor: pointer; transition: var(--transition); }
.dot-nav.active { background: var(--secondary); width: 30px; border-radius: 5px; }

.hero-arrows { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 100%; display: flex; justify-content: space-between; padding: 0 20px; pointer-events: none; }
.hero-arrow { width: 48px; height: 48px; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: all; transition: var(--transition); backdrop-filter: blur(4px); }
.hero-arrow:hover { background: var(--secondary); border-color: var(--secondary); transform: scale(1.1); }

/* ===== ABOUT PREVIEW ===== */
.about-preview { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-img-wrap .img-placeholder { width: 100%; height: 420px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: white; font-size: 5rem; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--secondary); color: var(--white); padding: 20px 24px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.about-badge .num { font-size: 2.2rem; font-weight: 800; display: block; }
.about-badge span { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-content .tag { display: inline-block; background: rgba(0,180,216,0.1); color: var(--secondary); font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 5px 15px; border-radius: 50px; margin-bottom: 16px; border: 1px solid rgba(0,180,216,0.3); }
.about-content h2 { font-size: 2.2rem; font-weight: 700; color: var(--primary); margin-bottom: 18px; line-height: 1.25; }
.about-content p { color: var(--gray); margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 32px; }
.about-feat { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: var(--dark); }
.about-feat i { color: var(--secondary); font-size: 1rem; }

/* ===== WHY CHOOSE US ===== */
.why-us { padding: 80px 0; background: var(--light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { background: var(--white); padding: 36px 28px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); transition: var(--transition); border-bottom: 4px solid transparent; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-bottom-color: var(--secondary); }
.why-icon { width: 72px; height: 72px; background: linear-gradient(135deg, rgba(0,180,216,0.12), rgba(26,60,94,0.08)); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: var(--transition); }
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--secondary), var(--primary)); }
.why-icon i { font-size: 1.8rem; color: var(--secondary); transition: var(--transition); }
.why-card:hover .why-icon i { color: var(--white); }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--gray); }

/* ===== SERVICES SECTION ===== */
.services-section { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-img { height: 180px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.service-img::after { content: ''; position: absolute; inset: 0; background: rgba(13,27,42,0.2); }
.service-img i { font-size: 3rem; color: rgba(255,255,255,0.9); position: relative; z-index: 1; }
.service-body { padding: 24px; }
.service-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-body p { font-size: 0.9rem; color: var(--gray); margin-bottom: 16px; }
.service-link { color: var(--secondary); font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* ===== FEATURED SERVICES ===== */
.featured-services { padding: 80px 0; background: var(--dark); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border-radius: var(--radius); overflow: hidden; }
.featured-item { background: rgba(255,255,255,0.04); padding: 40px 32px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.06); }
.featured-item:hover { background: var(--secondary); }
.featured-item .fi-num { font-size: 2.5rem; font-weight: 800; color: rgba(255,255,255,0.1); margin-bottom: 10px; }
.featured-item i { font-size: 2rem; color: var(--secondary); margin-bottom: 16px; transition: var(--transition); display: block; }
.featured-item:hover i { color: var(--white); }
.featured-item h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.featured-item p { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.featured-item:hover p { color: rgba(255,255,255,0.9); }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview { padding: 80px 0; background: var(--light); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-thumb { width: 100%; height: 200px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; }
.gallery-item.tall .gallery-thumb { height: 100%; min-height: 414px; }
.gallery-item.wide .gallery-thumb { height: 200px; }
.gallery-thumb i { font-size: 3rem; color: rgba(255,255,255,0.4); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,60,94,0.75); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--white); transform: scale(0.8); transition: var(--transition); }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; }
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.5s ease; }
.testi-card { min-width: calc(33.333% - 18px); margin-right: 27px; background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); border-top: 4px solid var(--secondary); flex-shrink: 0; }
.testi-stars { color: #ffc107; font-size: 0.9rem; margin-bottom: 16px; }
.testi-text { color: var(--gray); font-style: italic; margin-bottom: 24px; line-height: 1.8; font-size: 0.95rem; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white); font-weight: 700; flex-shrink: 0; }
.testi-name { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.testi-role { font-size: 0.82rem; color: var(--gray); }
.testi-controls { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.testi-dot { width: 10px; height: 10px; background: var(--light-gray); border-radius: 50%; cursor: pointer; transition: var(--transition); }
.testi-dot.active { background: var(--secondary); width: 28px; border-radius: 5px; }

/* ===== STATS / COUNTERS ===== */
.stats { padding: 70px 0; background: linear-gradient(135deg, var(--primary) 0%, #0d2640 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 30px 20px; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,0.15); }
.stat-num { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.stat-icon { font-size: 1.5rem; color: var(--secondary); margin-bottom: 12px; }

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; background: var(--light); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); overflow: hidden; transition: var(--transition); }
.faq-item.open { box-shadow: var(--shadow); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; cursor: pointer; transition: var(--transition); }
.faq-question h4 { font-size: 1rem; font-weight: 600; color: var(--primary); flex: 1; }
.faq-item.open .faq-question { background: var(--primary); }
.faq-item.open .faq-question h4 { color: var(--white); }
.faq-icon { width: 30px; height: 30px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.8rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { background: var(--secondary); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 26px; }
.faq-item.open .faq-answer { max-height: 200px; padding: 20px 26px 24px; }
.faq-answer p { color: var(--gray); font-size: 0.95rem; line-height: 1.8; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT PREVIEW ===== */
.contact-preview { padding: 80px 0; }
.contact-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.contact-card { background: var(--light); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: var(--transition); }
.contact-card:hover { background: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.contact-card .cc-icon { width: 64px; height: 64px; background: var(--secondary); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.contact-card .cc-icon i { font-size: 1.5rem; color: var(--white); }
.contact-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; transition: var(--transition); }
.contact-card:hover h3 { color: var(--white); }
.contact-card p { font-size: 0.9rem; color: var(--gray); transition: var(--transition); }
.contact-card:hover p { color: rgba(255,255,255,0.75); }
.contact-card a { color: var(--secondary); font-weight: 600; font-size: 1rem; display: block; margin-top: 8px; transition: var(--transition); }
.contact-card:hover a { color: var(--accent); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo-text { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 16px; display: block; }
.footer-brand .logo-text span { color: var(--secondary); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 0.95rem; transition: var(--transition); }
.social-btn:hover { background: var(--secondary); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--secondary); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--secondary); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-contact-item i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.9rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.85rem; }
.footer-bottom a { color: var(--secondary); }

/* ===== FLOATING BUTTONS ===== */
.float-btns { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 4px 16px rgba(0,0,0,0.25); transition: var(--transition); }
.float-btn:hover { transform: scale(1.12); }
.float-wa { background: #25d366; color: var(--white); }
.float-call { background: var(--secondary); color: var(--white); }

/* ===== PAGE HERO ===== */
.page-hero { padding: 160px 0 80px; background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero-alt::after { background: var(--light); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { color: var(--secondary); font-size: 0.9rem; }
.breadcrumb span { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.breadcrumb .sep { color: rgba(255,255,255,0.35); }

/* ===== ABOUT PAGE ===== */
.about-full { padding: 80px 0; }
.about-story { padding: 80px 0; background: var(--light); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 50px; }
.mv-card { background: var(--white); padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); border-left: 5px solid var(--secondary); }
.mv-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.mv-card h3 i { color: var(--secondary); }
.mv-card p { color: var(--gray); font-size: 0.95rem; }
.team-section { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-img { width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 2.5rem; color: var(--white); }
.team-name { font-size: 1rem; font-weight: 700; color: var(--primary); }
.team-role { font-size: 0.85rem; color: var(--secondary); margin-top: 4px; }
.story-img { width: 100%; height: 380px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 5rem; color: rgba(255,255,255,0.4); }

/* ===== SERVICES PAGE ===== */
.services-full { padding: 80px 0; }
.services-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.service-full-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; transition: var(--transition); }
.service-full-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.sfc-icon { width: 100px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sfc-icon i { font-size: 2rem; color: var(--white); }
.sfc-body { padding: 28px; }
.sfc-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.sfc-body p { font-size: 0.9rem; color: var(--gray); margin-bottom: 14px; }
.sfc-features { display: flex; flex-wrap: wrap; gap: 8px; }
.sfc-feat { background: rgba(0,180,216,0.08); color: var(--secondary); font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; border: 1px solid rgba(0,180,216,0.2); }

/* ===== GALLERY PAGE ===== */
.gallery-full { padding: 80px 0; }
.gallery-filter { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 9px 22px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; background: var(--light); color: var(--gray); border: 2px solid transparent; transition: var(--transition); cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.gallery-full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-full-item { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; aspect-ratio: 1; }
.gallery-full-item .gfi-thumb { width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; transition: transform 0.4s ease; }
.gallery-full-item:hover .gfi-thumb { transform: scale(1.06); }
.gallery-full-item .gfi-thumb i { font-size: 2.5rem; color: rgba(255,255,255,0.35); }
.gfi-overlay { position: absolute; inset: 0; background: rgba(13,27,42,0.75); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: var(--transition); }
.gallery-full-item:hover .gfi-overlay { opacity: 1; }
.gfi-overlay i { font-size: 1.8rem; color: var(--white); }
.gfi-overlay span { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 600; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 100%; max-height: 85vh; border-radius: 8px; }
.lightbox-img-placeholder { width: 600px; max-width: 90vw; height: 400px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 5rem; color: rgba(255,255,255,0.4); }
.lightbox-close { position: absolute; top: -44px; right: 0; color: var(--white); font-size: 1.8rem; cursor: pointer; opacity: 0.75; transition: var(--transition); }
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

/* ===== CONTACT PAGE ===== */
.contact-main { padding: 80px 0; }
.contact-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.contact-info p { color: var(--gray); margin-bottom: 32px; }
.contact-detail { display: flex; gap: 18px; margin-bottom: 28px; padding: 22px; background: var(--light); border-radius: var(--radius); transition: var(--transition); }
.contact-detail:hover { background: var(--primary); }
.cd-icon { width: 50px; height: 50px; background: var(--secondary); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon i { font-size: 1.2rem; color: var(--white); }
.cd-text h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 4px; transition: var(--transition); }
.contact-detail:hover .cd-text h4 { color: rgba(255,255,255,0.7); }
.cd-text a, .cd-text p { font-size: 1rem; font-weight: 600; color: var(--primary); transition: var(--transition); }
.contact-detail:hover .cd-text a, .contact-detail:hover .cd-text p { color: var(--white); }
.contact-action-btns { display: flex; flex-direction: column; gap: 14px; }
.contact-action-btns .btn { justify-content: center; font-size: 1rem; padding: 16px 28px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 400px; border: none; display: block; }
.map-placeholder { width: 100%; height: 400px; background: linear-gradient(135deg, var(--light), var(--light-gray)); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--gray); }
.map-placeholder i { font-size: 3rem; color: var(--secondary); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

.animate-fade-up { animation: fadeInUp 0.7s ease forwards; }
.animate-fade-up-2 { animation: fadeInUp 0.7s ease 0.15s forwards; opacity: 0; }
.animate-fade-up-3 { animation: fadeInUp 0.7s ease 0.3s forwards; opacity: 0; }

/* ===== SCROLL TO TOP ===== */
.scroll-top { position: fixed; bottom: 100px; right: 28px; width: 44px; height: 44px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: var(--transition); z-index: 990; box-shadow: var(--shadow); }
.scroll-top.show { opacity: 1; }
.scroll-top:hover { background: var(--secondary); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid, .services-grid, .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2)::after { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.9rem; }
  .nav-menu { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--white); padding: 80px 24px 24px; box-shadow: -4px 0 20px rgba(0,0,0,0.15); gap: 4px; overflow-y: auto; }
  .nav-menu.open { display: flex; }
  .nav-link { color: var(--dark); padding: 12px 16px; border-radius: 8px; width: 100%; }
  .nav-link:hover, .nav-link.active { color: var(--secondary); background: rgba(0,180,216,0.08); }
  .navbar.scrolled .nav-link { color: var(--dark); }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .about-grid, .story-grid, .contact-main-grid { grid-template-columns: 1fr; }
  .about-badge { right: 20px; }
  .why-grid, .services-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall .gallery-thumb { min-height: 180px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none !important; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testi-card { min-width: calc(100% - 0px); margin-right: 0; }
  .contact-preview-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .cta-inner h2 { font-size: 1.9rem; }
  .hero-controls { bottom: 20px; }
}
@media (max-width: 480px) {
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-btns { flex-direction: column; align-items: flex-start; }
  .hero-arrows { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }
}
