/* ===================================
   OVELIS GROUP LIMITED – style.css
   Premium Corporate Website
=================================== */

/* --- Variables --- */
:root {
  --navy: #0f1e3c;
  --navy-dark: #0a1428;
  --navy-light: #1a3060;
  --gold: #c9a84c;
  --gold-light: #e2c06e;
  --gold-dark: #a8883a;
  --cream: #f5f0e8;
  --cream-dark: #ede8de;
  --white: #ffffff;
  --text: #2d3748;
  --text-light: #718096;
  --border: rgba(201,168,76,0.25);
  --shadow: 0 4px 24px rgba(15,30,60,0.10);
  --shadow-lg: 0 12px 48px rgba(15,30,60,0.16);
  --radius: 4px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --transition: 0.35s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-tag { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--font-serif); font-size: clamp(32px, 5vw, 52px); font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 16px; color: var(--text-light); max-width: 560px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--transition); cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); border: 2px solid var(--navy); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-full { width: 100%; justify-content: center; }
.btn-gold-sm { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; background: var(--gold); color: var(--white); border-radius: var(--radius); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: all var(--transition); }
.btn-gold-sm:hover { background: var(--gold-dark); }

/* --- LOADER --- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo { width: 140px; margin: 0 auto 24px; opacity: 0; animation: fadeInUp 0.6s 0.2s forwards; border-radius: 8px; }
.loader-bar { width: 160px; height: 2px; background: rgba(255,255,255,0.15); margin: 0 auto; border-radius: 2px; overflow: hidden; opacity: 0; animation: fadeInUp 0.5s 0.5s forwards; }
.loader-bar span { display: block; height: 100%; background: var(--gold); border-radius: 2px; animation: loadBar 1.4s 0.7s ease-in-out forwards; width: 0; }

@keyframes loadBar { to { width: 100%; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* --- TOP BAR --- */
.topbar { background: var(--navy-dark); padding: 10px 0; font-size: 12px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-links { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-links a, .topbar-links span { color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; transition: color var(--transition); font-size: 12px; }
.topbar-links a:hover { color: var(--gold); }
.topbar-links i { color: var(--gold); font-size: 10px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { color: rgba(255,255,255,0.6); width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; font-size: 11px; transition: all var(--transition); }
.topbar-social a:hover { color: var(--gold); border-color: var(--gold); }

/* --- NAVBAR --- */
#navbar {
  position: sticky; top: 0; z-index: 999;
  background: var(--white); padding: 0;
  box-shadow: 0 2px 20px rgba(15,30,60,0.08);
  transition: all var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 32px rgba(15,30,60,0.14); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.nav-logo img { height: 56px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--navy); padding: 8px 14px;
  border-radius: var(--radius); transition: all var(--transition);
  position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }

/* --- HERO --- */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,20,40,0.82) 0%, rgba(10,20,40,0.55) 60%, rgba(10,20,40,0.35) 100%); }
.hero-content {
  position: relative; z-index: 2;
  height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 60px;
}
.hero-tag { font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; opacity: 0; animation: fadeInUp 0.7s 0.5s forwards; }
.hero-content h1 { font-family: var(--font-serif); font-size: clamp(44px, 7vw, 88px); font-weight: 600; color: var(--white); line-height: 1.05; margin-bottom: 20px; opacity: 0; animation: fadeInUp 0.7s 0.7s forwards; }
.hero-content h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 520px; line-height: 1.7; margin-bottom: 36px; opacity: 0; animation: fadeInUp 0.7s 0.9s forwards; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeInUp 0.7s 1.1s forwards; }
.hero-nav { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dot { width: 28px; height: 3px; background: rgba(255,255,255,0.4); border-radius: 3px; transition: all var(--transition); }
.hero-dot.active { background: var(--gold); width: 48px; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 6px; animation: bounce 2s infinite; }
.hero-scroll i { font-size: 14px; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* --- STATS STRIP --- */

.stats-strip { background: var(--navy); padding: 30px 0; }
.stats-inner { display: flex; align-items: center; justify-content: space-around; gap: 24px; flex-wrap: wrap; }
.stat-item { text-align: center; flex: 1; min-width: 140px; }
/*.stat-num { font-family: var(--font-serif); font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; }
*/
.stat-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-plus { font-family: var(--font-serif); font-size: 36px; color: var(--gold); vertical-align: top; }
.stat-item p { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 8px; }
.stat-divider { width: 1px; height: 60px; background: rgba(253, 249, 249, 0.926); }

/* --- ABOUT --- */


.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img-main:hover img { transform: scale(1.03); }
.about-img-secondary { position: absolute; bottom: -28px; right: -28px; width: 46%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid var(--white); aspect-ratio: 4/3; }
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--white); padding: 10px 16px; border-radius: var(--radius); text-align: center; }
.about-badge .badge-num { display: block; font-size: 18px; font-weight: 700; }
.about-badge .badge-text { display: block; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }
.about-text { padding-bottom: 28px; }
.about-lead { font-family: var(--font-serif); font-size: 20px; color: var(--navy); line-height: 1.6; margin-bottom: 16px; }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 14px; font-size: 15px; }
.values-list { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; }
.value-icon { width: 44px; height: 44px; background: var(--navy); color: var(--gold); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.value-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.value-item span { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* --- MISSION BANNER --- */
.mission-banner { background: var(--gold); padding: 48px 0; }
.mission-inner { display: flex; align-items: center; gap: 28px; }
.mission-icon { font-size: 40px; color: rgba(255,255,255,0.8); flex-shrink: 0; }
.mission-text h3 { font-family: var(--font-serif); font-size: 26px; color: var(--white); margin-bottom: 8px; }
.mission-text p { color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.7; max-width: 700px; }

/* --- SERVICES --- */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  padding: 40px 32px; border-radius: var(--radius);
  border: 1px solid var(--cream-dark); position: relative;
  transition: all var(--transition); overflow: hidden;
  background: var(--white);
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform var(--transition); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card.featured { background: var(--navy); border-color: var(--navy); }
.service-card.featured .service-num { color: rgba(201,168,76,0.3); }
.service-card.featured .service-icon i { color: var(--gold); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-card.featured .service-link { color: var(--gold-light); }
.service-num { font-family: var(--font-serif); font-size: 64px; font-weight: 700; color: var(--cream-dark); line-height: 1; margin-bottom: -8px; }
.service-icon { margin-bottom: 16px; }
.service-icon i { font-size: 32px; color: var(--gold); }
.service-card h3 { font-family: var(--font-serif); font-size: 24px; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.service-link { font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 8px; transition: gap var(--transition); }
.service-link:hover { gap: 12px; }

/* --- CTA STRIP --- */
.cta-strip { background: var(--cream); border-top: 1px solid var(--cream-dark); border-bottom: 1px solid var(--cream-dark); padding: 32px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-inner p { font-family: var(--font-serif); font-size: 22px; color: var(--navy); }

/* --- QUALITY --- */
.quality { background: var(--white); }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.quality-points { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.quality-point { display: flex; gap: 16px; align-items: flex-start; }
.qp-icon { width: 44px; height: 44px; background: var(--cream); color: var(--gold); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.quality-point h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.quality-point p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.cert-badge { display: inline-flex; align-items: center; gap: 14px; background: var(--cream); border: 1px solid var(--border); padding: 14px 20px; border-radius: var(--radius); }
.cert-icon { width: 40px; height: 40px; background: var(--gold); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.cert-badge strong { display: block; font-size: 14px; color: var(--navy); font-weight: 600; }
.cert-badge span { font-size: 12px; color: var(--text-light); }
.quality-visual { position: relative; }
.quality-img-wrap { border-radius: var(--radius); overflow: visible; position: relative; }
.quality-img-wrap img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.quality-float-card { position: absolute; bottom: -20px; left: -20px; background: var(--navy); color: var(--white); padding: 18px 24px; border-radius: var(--radius); display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); }
.quality-float-card i { color: var(--gold); font-size: 22px; }
.quality-float-card span { font-size: 14px; font-weight: 500; }

/* --- WHY US --- */
.why-us { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.why-visual { position: relative; }
.why-visual img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.why-overlay-card { position: absolute; bottom: -16px; right: -16px; background: var(--white); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg); max-width: 260px; border-left: 4px solid var(--gold); }
.why-overlay-card blockquote { font-family: var(--font-serif); font-size: 15px; color: var(--navy); font-style: italic; line-height: 1.6; margin-bottom: 10px; }
.why-overlay-card cite { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; font-style: normal; }
.faq-list { display: flex; flex-direction: column; gap: 0; padding-top: 4px; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-q { width: 100%; text-align: left; padding: 20px 0; font-size: 15px; font-weight: 500; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color var(--transition); }
.faq-q:hover { color: var(--gold); }
.faq-q i { font-size: 12px; transition: transform var(--transition); flex-shrink: 0; color: var(--gold); }
.faq-item.active .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { font-size: 14px; color: var(--text-light); line-height: 1.8; padding-bottom: 20px; }
.faq-item.active .faq-a { max-height: 200px; }

/* --- CONTACT --- */
.contact { background: var(--navy-dark); }
.section-header.light .section-tag { color: var(--gold); }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,0.65); margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.contact-info { padding-top: 8px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.ci-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.15); color: var(--gold); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.contact-item h4 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 600; }
.contact-item p, .contact-item a { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.contact-item a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; margin-top: 8px; }
.contact-social a { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,0.3); color: rgba(255,255,255,0.6); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all var(--transition); }
.contact-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* Contact Form */
.contact-form { background: rgba(255,255,255,0.04); padding: 40px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
  padding: 14px 18px; color: var(--white); font-family: var(--font-sans); font-size: 14px;
  transition: border-color var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group select { color: rgba(255,255,255,0.6); appearance: none; cursor: pointer; }
.form-group select option { background: var(--navy-dark); color: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; text-align: center; color: #68d391; font-size: 14px; margin-top: 12px; }

/* --- FOOTER --- */
.footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer-brand img { height: 70px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 20px; max-width: 260px; }
.footer-col h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 10px; }
.footer-col p i { color: var(--gold); margin-right: 8px; font-size: 11px; }
.newsletter-form { display: flex; margin-bottom: 8px; }
.newsletter-form input { flex: 1; padding: 11px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-right: none; border-radius: var(--radius) 0 0 var(--radius); color: var(--white); font-family: var(--font-sans); font-size: 13px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button { padding: 11px 16px; background: var(--gold); color: var(--white); border-radius: 0 var(--radius) var(--radius) 0; font-size: 14px; transition: background var(--transition); }
.newsletter-form button:hover { background: var(--gold-dark); }
.footer-note { font-size: 11px !important; color: rgba(255,255,255,0.3) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 44px; height: 44px; background: var(--gold);
  color: var(--white); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* --- ANIMATIONS / REVEAL --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .about-grid, .quality-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { width: 40%; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .topbar-links span { display: none; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px 24px; box-shadow: var(--shadow); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 44px; }
  .about-img-secondary { display: none; }
  .mission-inner { flex-direction: column; text-align: center; }
  .stats-inner { gap: 32px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section-pad { padding: 64px 0; }
  .hero-btns { flex-direction: column; }
  .topbar-links { gap: 12px; }
  .topbar-links a:not(:first-child) { display: none; }
}
.p1{
  color: #a50808;
}

.hero-content,
.section-title,
.section-sub,
p {
  opacity: 1;
  visibility: visible;
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 1 !important;
  transform: none !important;
}