/*
Theme Name: Aluminium Pro
Theme URI: http://localhost/aluminium
Author: Interior Designers Kenya
Author URI: http://localhost/aluminium
Description: Professional Aluminium Sales & Services theme for Interior Designers Kenya, Nairobi
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: aluminium-pro
Tags: business, aluminium, construction, interior-design
*/

/* =============================================
   CSS RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #1a3a5c;
  --accent:    #c8973a;
  --silver:    #a8b8c8;
  --light:     #f4f6f8;
  --dark:      #0d1f2d;
  --text:      #333;
  --white:     #ffffff;
  --radius:    6px;
  --shadow:    0 4px 20px rgba(0,0,0,.1);
  --transition:all .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #b07d28; color: var(--white); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: var(--dark); color: var(--white); }

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .5rem;
  position: relative;
}
.section-title span { color: var(--accent); }
.section-subtitle {
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}
.section-label {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.text-center { text-align: center; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,.6); }
.top-bar a:hover { color: var(--accent); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 5px; }
.top-bar-item svg { width: 12px; height: 12px; fill: var(--accent); flex-shrink: 0; }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header:hover,
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(26,58,92,.25);
}
.logo-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  border: 2px solid var(--accent);
  opacity: .4;
}
.logo-icon svg { width: 22px; height: 22px; fill: var(--accent); }
.logo-text { line-height: 1.15; }
.logo-text .brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
}
.logo-text .tagline {
  font-size: .68rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  padding: 8px 14px;
  color: var(--text);
  font-weight: 600;
  font-size: .85rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  letter-spacing: .01em;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all .25s ease;
  transform: translateX(-50%);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 60%;
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary); background: transparent; }

/* CTA */
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn {
  font-size: .8rem;
  padding: 10px 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), #b07d28);
  color: var(--white);
  border: none;
  box-shadow: 0 3px 12px rgba(200,151,58,.3);
  letter-spacing: .5px;
}
.nav-cta .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(200,151,58,.45);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile nav */
@media(max-width:1100px){
  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    border-top: 2px solid var(--accent);
    gap: 2px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { display: block; padding: 10px 14px; }
  .main-nav a::after { display: none; }
  .nav-cta .btn { display: none; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  color: var(--white);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero.hero-fullbg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.82) 0%, rgba(26,58,92,.65) 50%, rgba(13,27,42,.75) 100%);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
  z-index: 3;
}
.hero .container { position: relative; z-index: 2; }
.hero-content-center {
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,58,.2);
  border: 1px solid rgba(200,151,58,.4);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--accent); }
.hero-stat .label { font-size: .8rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .5px; }

.floating-badge {
  position: absolute;
  background: var(--accent);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.floating-badge.top-right { top: 130px; right: 40px; }
.floating-badge.bottom-left { bottom: 60px; left: 40px; animation-delay: 1.5s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media(max-width:900px){
  .hero { padding: 120px 0 70px; min-height: 500px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-content-center { max-width: 100%; }
  .floating-badge.top-right { top: 100px; right: 16px; }
  .floating-badge.bottom-left { left: 16px; }
}
@media(max-width:600px){
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .floating-badge { display: none; }
}

/* =============================================
   SERVICES
   ============================================= */
.services { padding: 90px 0; background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 0 0 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
}
.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.service-card:hover .service-thumb img {
  transform: scale(1.08);
}
.service-card .service-icon,
.service-card h3,
.service-card > p,
.service-card .product-features,
.service-card .service-link {
  margin-left: 28px;
  margin-right: 28px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), #2a5a8c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 32px; height: 32px; fill: var(--accent); }
.service-card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: .7rem; font-weight: 700; }
.service-card p { color: #666; font-size: .92rem; line-height: 1.65; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: .88rem;
  font-weight: 600;
  margin-top: 1.2rem;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 14px; height: 14px; fill: currentColor; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us { padding: 90px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-visual {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: 16px;
  padding: 50px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-visual::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,151,58,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.stat-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.stat-box .num { font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-box .unit { font-size: 1.2rem; color: var(--accent); }
.stat-box .desc { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 6px; text-transform: uppercase; letter-spacing: .5px; }

.why-features { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon-wrap svg { width: 22px; height: 22px; fill: var(--white); }
.why-item h4 { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: .9rem; color: #666; }

@media(max-width:768px){
  .why-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PRODUCTS
   ============================================= */
.products { padding: 90px 0; background: var(--light); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,.14); }
.product-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), #2a5a8c);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img svg { width: 80px; height: 80px; fill: rgba(255,255,255,.15); position: absolute; }
.product-img .product-icon {
  width: 70px;
  height: 70px;
  fill: var(--accent);
  position: relative;
  z-index: 1;
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.product-info { padding: 24px; }
.product-info h3 { font-size: 1.05rem; color: var(--primary); font-weight: 700; margin-bottom: .5rem; }
.product-info p { font-size: .88rem; color: #666; margin-bottom: 1rem; }
.product-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.2rem; }
.product-features span {
  background: var(--light);
  color: var(--primary);
  font-size: .75rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* =============================================
   PROCESS
   ============================================= */
.process { padding: 90px 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(200,151,58,.25);
}
.step-card h4 { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: .5rem; }
.step-card p { font-size: .88rem; color: #666; }

@media(max-width:600px){ .process-steps::before { display: none; } }

/* =============================================
   GALLERY / PROJECTS
   ============================================= */
.gallery { padding: 90px 0; background: var(--dark); }
.gallery .section-title { color: var(--white); }
.gallery .section-subtitle { color: rgba(255,255,255,.6); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
  margin-top: 2rem;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), #2a5a8c);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item.large { grid-column: span 2; }
.gallery-item svg { width: 60px; height: 60px; fill: rgba(255,255,255,.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: .9rem; }
.gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-size: .78rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

@media(max-width:768px){
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 1; }
}
@media(max-width:500px){
  .gallery-grid { grid-template-columns: 1fr; }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: 90px 0; background: var(--light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  color: var(--accent);
  opacity: .2;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-size: .95rem; color: #555; font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}
.author-name { font-weight: 700; color: var(--primary); font-size: .95rem; }
.author-role { font-size: .8rem; color: #888; }

/* =============================================
   CONTACT
   ============================================= */
.contact { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { font-size: 1.6rem; color: var(--primary); font-weight: 700; margin-bottom: 1rem; }
.contact-info p { color: #666; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--accent); }
.contact-item h5 { font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; color: #888; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--primary); font-weight: 600; font-size: .95rem; display: block; line-height: 1.5; }
.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--light);
  border-radius: 14px;
  padding: 40px;
}
.contact-form h3 { font-size: 1.4rem; color: var(--primary); font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,151,58,.1);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group.full { grid-column: span 2; }

@media(max-width:600px){
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}
@media(max-width:900px){
  .contact-grid { grid-template-columns: 1fr; }
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,45,.88), rgba(26,58,92,.82));
  z-index: 1;
}
.cta-banner h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 1rem; position: relative; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  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 .brand { color: var(--white); }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,.4); }
.footer-about { color: rgba(255,255,255,.55); font-size: .9rem; margin: 1.2rem 0 1.5rem; line-height: 1.7; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-links a:hover { background: var(--accent); }
.social-links a svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); }
.social-links a:hover svg { fill: var(--white); }

.footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--accent); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,.55); font-size: .85rem; }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: var(--accent); }

@media(max-width:900px){
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: span 2; }
}
@media(max-width:550px){
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-brand { grid-column: span 1; }
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 9999;
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.7); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 35px rgba(37,211,102,.8); }
}

/* =============================================
   UTILITIES
   ============================================= */
.py-6 { padding: 90px 0; }
.mt-2 { margin-top: 2rem; }

/* Scroll reveal base */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   HERO IMAGE (replaces icon card)
   ============================================= */
.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  max-width: 520px;
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 6s ease;
}
.hero-image-wrap:hover img {
  transform: scale(1.05);
}

/* =============================================
   PHOTO SHOWCASE SECTION
   ============================================= */
.showcase {
  padding: 90px 0;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}
.showcase-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.showcase-item.showcase-wide {
  grid-column: span 2;
}
.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.showcase-item:hover img {
  transform: scale(1.08);
}
.showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 100%);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .35s ease;
}
.showcase-item:hover .showcase-caption {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width:768px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-item.showcase-wide {
    grid-column: span 2;
  }
}
@media(max-width:500px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-item.showcase-wide {
    grid-column: span 1;
  }
}

/* =============================================
   WHY US – IMAGE + OVERLAY
   ============================================= */
.why-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.why-visual-overlay {
  position: relative;
  z-index: 1;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(26,58,92,.85), rgba(13,31,45,.85));
}

/* =============================================
   PAGE HERO – BACKGROUND IMAGE
   ============================================= */
.page-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 0 60px;
  color: #fff;
  text-align: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,45,.88), rgba(26,58,92,.82));
  z-index: 1;
}
.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: #fff;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 0 auto;
}
.page-hero .breadcrumb {
  margin-bottom: 1.2rem;
  font-size: .85rem;
}
.page-hero .breadcrumb a {
  color: var(--accent);
}
.page-hero .breadcrumb span {
  color: rgba(255,255,255,.6);
  margin: 0 6px;
}
