/* ─── Variables ─── */
:root {
  /* Colors based on GEOCON GROUP Logo */
  --primary: #2d6a18;     /* Dark Forest Green */
  --secondary: #7ebd26;   /* Bright Leaf Green */
  --accent: #3b2a1a;      /* Dark Brown text color */
  --dark: #222222;
  --light: #f8fafc;
  --white: #ffffff;
  --text: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;

  /* Typography */
  --font-base: 'Outfit', sans-serif;
  --font-heading: 'Playfair Display', serif;

  /* Spacing & Layout */
  --container-w: 1280px;
  --radius: 8px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* ─── Resets ─── */
html { font-size: 16px; }
@media (max-width: 1200px) { html { font-size: 15px; } }
@media (max-width: 768px) { html { font-size: 14px; } }
@media (max-width: 480px) { html { font-size: 13px; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-base); color: var(--text); background: var(--light); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: var(--dark); line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ─── Layout ─── */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.bg-light { background-color: var(--white); }
.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }
.section-header { margin-bottom: clamp(2rem, 5vw, 3.5rem); max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 5vw, 2.75rem); margin-bottom: 1rem; color: var(--primary); }
.section-subtitle { font-size: clamp(1rem, 2vw, 1.125rem); color: var(--text-muted); }

/* ─── Topbar ─── */
.topbar { background: var(--light); border-bottom: 1px solid var(--border); font-size: 0.875rem; color: var(--text-muted); }
.topbar__inner { max-width: var(--container-w); margin: 0 auto; padding: 0.5rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 1.5rem; }
.topbar__icon { width: 14px; height: 14px; vertical-align: middle; margin-right: 0.25rem; }
.topbar__link { display: flex; align-items: center; gap: 0.35rem; }
.topbar__link:hover { color: var(--primary); }
.topbar__link svg { width: 14px; height: 14px; }
.topbar__social { display: flex; gap: 0.75rem; border-left: 1px solid var(--border); padding-left: 1.5rem; }
.topbar__social svg { width: 16px; height: 16px; fill: currentColor; }
.topbar__social a:hover { color: var(--secondary); }

@media (max-width: 991px) {
  .topbar { display: none; }
}

/* ─── Header & Nav ─── */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: var(--shadow-sm); }
.header__inner { max-width: var(--container-w); margin: 0 auto; padding: 0 1.5rem; height: 80px; display: flex; align-items: center; justify-content: space-between; }
.header__logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: var(--primary); line-height: 1; }
.logo-sub { font-size: 0.75rem; font-weight: 500; color: var(--secondary); letter-spacing: 0.05em; text-transform: uppercase; }

.nav-list { display: flex; gap: 2rem; height: 100%; align-items: center; }
.nav-link { font-weight: 600; color: var(--dark); font-size: 0.95rem; display: flex; align-items: center; gap: 0.25rem; position: relative; padding: 0.5rem 0; }
.nav-link:hover, .nav-link.active { color: var(--secondary); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--secondary); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.chevron { width: 14px; height: 14px; transition: var(--transition); }

.has-dropdown { position: relative; height: 100%; display: flex; align-items: center; }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 1rem; opacity: 0; visibility: hidden; transition: var(--transition); width: max-content; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:hover .chevron { transform: rotate(180deg); }
.dropdown__inner { display: grid; gap: 0.5rem; }
.dropdown__inner--wide { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 0.5rem; }
.dropdown__item { display: block; padding: 0.75rem 1rem; border-radius: calc(var(--radius) - 2px); transition: var(--transition); }
.dropdown__item:hover { background: var(--light); }
.dropdown__item strong { display: block; color: var(--primary); font-size: 0.95rem; margin-bottom: 0.25rem; }
.dropdown__item span { display: block; font-size: 0.8rem; color: var(--text-muted); }

.header__actions { display: flex; align-items: center; gap: 1rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 24px; position: relative; z-index: 102; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--primary); position: absolute; left: 0; transition: var(--transition); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }

@media (max-width: 1024px) {
  .nav-list { display: none; }
  .header__actions .btn { display: none; }
  .hamburger { display: block; }
}

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 50px; font-weight: 600; cursor: pointer; transition: var(--transition); font-size: 0.95rem; text-align: center; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--primary { background: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.btn--primary:hover { background: var(--secondary); border-color: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }
.btn--outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); }
.btn--outline-light { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--primary); }
.btn svg { width: 16px; height: 16px; }

/* ─── Hero Slider ─── */
.hero-slider-section { position: relative; width: 100%; height: calc(100vh - 80px); min-height: 600px; overflow: hidden; }
.hero-swiper { width: 100%; height: 100%; }

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 55, 97, 0.88) 0%,
        rgba(10, 55, 97, 0.6) 55%,
        rgba(10, 55, 97, 0.2) 100%
    );
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 5%;
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}
.hero-title span { color: var(--secondary); display: block; }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2.5rem;
    max-width: 560px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.55s, transform 0.7s ease 0.55s;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}

/* Animate in active slide content */
.swiper-slide-active .hero-tag,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-subtitle,
.swiper-slide-active .hero-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Arrows */
.hero-nav-btn {
    color: var(--white) !important;
    width: 54px !important;
    height: 54px !important;
    background: rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(6px) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    transition: background 0.3s, transform 0.3s !important;
}
.hero-nav-btn:hover { background: var(--secondary) !important; transform: scale(1.1) !important; }
.hero-nav-btn::after { font-size: 18px !important; font-weight: 700 !important; }
.swiper-button-prev { left: 2rem !important; }
.swiper-button-next { right: 2rem !important; }

/* Pagination */
.hero-pagination { bottom: 2.5rem !important; }
.hero-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255,255,255,0.4) !important;
    opacity: 1 !important;
    transition: all 0.3s !important;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--secondary) !important;
    width: 30px !important;
    border-radius: 5px !important;
}

/* Slide Counter */
.hero-counter {
    position: absolute;
    bottom: 2.5rem;
    right: 2rem;
    z-index: 10;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.hero-counter-current { color: var(--white); font-size: 1.5rem; font-weight: 800; line-height: 1; }
.hero-counter-sep { font-size: 0.8rem; }

@media (max-width: 768px) {
  .hero-slider-section { height: 92svh; min-height: 500px; }
  .hero-slide-content { padding: 0 1.5rem; }
  .hero-counter { display: none; }
  .swiper-button-prev, .swiper-button-next { display: none !important; }
}

/* ─── Notification Banner ─── */
.notification-banner { background: var(--secondary); color: var(--white); padding: 0.75rem 0; }
.banner-inner { display: flex; align-items: center; justify-content: center; gap: 0.75rem; position: relative; text-align: center; padding-right: 2rem; }
.banner-inner p { font-size: 0.9rem; font-weight: 500; }
.banner-close { position: absolute; right: 0; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; opacity: 0.8; transition: var(--transition); }
.banner-close:hover { opacity: 1; }

/* ─── Page Headers ─── */
.page-header { position: relative; padding: clamp(6rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 5rem); background-size: cover; background-position: center; }
.page-header-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(45,106,24,0.9) 0%, rgba(34,34,34,0.7) 100%); z-index: 1; }

/* ─── Cards Grid ─── */
.grid-cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card { background: var(--white); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-icon { width: 60px; height: 60px; background: rgba(126,189,38,0.1); color: var(--secondary); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.card-icon svg { width: 30px; height: 30px; }
.card-title { font-size: clamp(1.15rem, 3vw, 1.35rem); margin-bottom: 1rem; color: var(--primary); }
.card-text { color: var(--text-muted); font-size: 0.95rem; text-align: justify; }

@media (max-width: 992px) {
  .grid-cards-3 > * { grid-column: span 1 !important; }
}

@media (max-width: 576px) {
  .grid-cards-3 { gap: 1rem; grid-template-columns: 1fr; }
  .card { grid-column: span 1 !important; }
}

/* ─── Career Cards ─── */
.career-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; transition: var(--transition); box-shadow: var(--shadow-sm); }
.career-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--secondary); }
.career-card__info { flex: 1; }
.career-card__info h3 { font-size: 1.35rem; color: var(--primary); margin: 0.5rem 0; }
.career-card__info p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; max-width: 800px; text-align: justify; }
.career-badge { display: inline-block; background: rgba(126,189,38,0.15); color: var(--secondary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.25rem 0.75rem; border-radius: 4px; }
.career-badge--alt { background: rgba(15,76,129,0.1); color: var(--primary); }
.career-meta { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
.career-meta span { display: flex; align-items: center; gap: 0.35rem; }
.career-apply-btn { flex-shrink: 0; min-width: 140px; }

@media (max-width: 768px) {
  .career-card { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 1.5rem; }
  .career-apply-btn { width: 100%; }
}

/* ─── Forms ─── */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-label { font-size: 0.9rem; font-weight: 600; color: var(--primary); }
.form-input { padding: 0.875rem 1rem; border: 1px solid var(--border); border-radius: 6px; font-family: var(--font-base); font-size: 0.95rem; color: var(--dark); transition: var(--transition); background: #f8fafc; }
.form-input:focus { outline: none; border-color: var(--secondary); background: var(--white); box-shadow: 0 0 0 3px rgba(126,189,38,0.15); }
.form-input::placeholder { color: #94a3b8; }
textarea.form-input { resize: vertical; min-height: 120px; }

.alert { padding: 1rem; border-radius: 6px; margin-bottom: 1.5rem; font-weight: 500; font-size: 0.95rem; }
.alert--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ─── DSC Modal ─── */
.dsc-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; padding: 1rem; }
.dsc-modal.active { opacity: 1; visibility: visible; }
.dsc-modal__overlay { position: absolute; inset: 0; background: rgba(10,25,47,0.7); backdrop-filter: blur(5px); }
.dsc-modal__content { position: relative; background: var(--white); width: 100%; max-width: 650px; border-radius: var(--radius); box-shadow: 0 20px 40px rgba(0,0,0,0.3); z-index: 10; transform: translateY(30px) scale(0.95); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; }
.dsc-modal.active .dsc-modal__content { transform: translateY(0) scale(1); }
.dsc-modal__close { position: absolute; top: 1.2rem; right: 1.2rem; width: 36px; height: 36px; border-radius: 50%; background: var(--light); border: none; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-muted); transition: var(--transition); z-index: 2; }
.dsc-modal__close svg { width: 18px; height: 18px; }
.dsc-modal__close:hover { background: #fee2e2; color: #ef4444; transform: rotate(90deg); }
.dsc-modal__header { background: var(--white); border-top: 4px solid var(--secondary); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1rem; }
.dsc-modal__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(126,189,38,0.1); color: var(--secondary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dsc-modal__icon svg { width: 24px; height: 24px; }
.dsc-modal__header h3 { margin: 0 0 0.25rem 0; font-size: 1.4rem; color: var(--primary); }
.dsc-modal__header p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.dsc-modal__body { padding: 1.5rem 2rem; overflow-y: auto; }
.dsc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; }

@media (max-width: 576px) {
  .dsc-form-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .dsc-modal__header { padding: 1.2rem 1.5rem; }
  .dsc-modal__body { padding: 1.2rem 1.5rem; }
}

/* ─── Gallery ─── */
.gallery-filters { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.gallery-masonry { column-count: 3; column-gap: 1.5rem; padding: 1rem 0; }
.gallery-item { break-inside: avoid; margin-bottom: 1.5rem; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); cursor: pointer; }
.gallery-item img { width: 100%; display: block; border-radius: var(--radius); transition: transform 0.5s ease; }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,47,0.9) 0%, rgba(10,25,47,0.2) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.4s ease; border-radius: var(--radius); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 { color: var(--white); font-family: var(--font-heading); margin-bottom: 0.25rem; font-size: 1.25rem; transform: translateY(15px); transition: transform 0.4s ease; }
.gallery-item-overlay p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; transform: translateY(15px); transition: transform 0.4s ease 0.1s; }
.gallery-item:hover .gallery-item-overlay h4, .gallery-item:hover .gallery-item-overlay p { transform: translateY(0); }

@media (max-width: 992px) { .gallery-masonry { column-count: 2; } }
@media (max-width: 576px) { .gallery-masonry { column-count: 1; } }

/* ─── Alternating Service Rows ─── */
.service-row { display: flex; align-items: center; gap: 4rem; margin-bottom: 5rem; }
.service-row:nth-child(even) { flex-direction: row-reverse; }
.service-row:last-child { margin-bottom: 0; }
.service-row-img { flex: 1; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.service-row-img img { width: 100%; height: auto; object-fit: cover; display: block; transition: transform 0.5s; aspect-ratio: 16/9; }
.service-row-img:hover img { transform: scale(1.05); }
.service-row-content { flex: 1; }
.service-row-content h3 { font-size: 2.2rem; color: var(--primary); margin-bottom: 1rem; font-weight: 700; font-family: var(--font-heading); }
.service-row-content p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; text-align: justify; }
@media (max-width: 768px) {
    .service-row, .service-row:nth-child(even) { flex-direction: column; gap: 2rem; margin-bottom: 4rem; }
    .service-row-content h3 { font-size: 1.75rem; }
}

/* ─── Sectors Grid ─── */
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.sector-card { position: relative; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.sector-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.sector-card:hover img { transform: scale(1.05); }
.sector-card-title { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; text-align: center; z-index: 2; }
.sector-card-title span { background: var(--primary); color: white; padding: 0.6rem 1rem; display: inline-block; width: 85%; font-weight: 600; font-size: 0.9rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border-radius: 4px; }
.sector-card--intro { background: var(--primary); color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 2rem; text-align: center; }
.sector-card--intro span { font-size: 1.1rem; font-style: italic; margin-bottom: 0.5rem; opacity: 0.9; }
.sector-card--intro h3 { font-size: 2rem; color: white; margin: 0; line-height: 1.2; position: relative; padding-bottom: 1rem; font-family: var(--font-heading); }
.sector-card--intro h3::after { content: ''; position: absolute; bottom: 0; left: 25%; width: 50%; height: 2px; background: rgba(255,255,255,0.4); }

@media (max-width: 992px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .sectors-grid { grid-template-columns: 1fr; } }

/* ─── Footer ─── */
.site-footer { background: var(--dark); color: var(--white); padding-top: 5rem; }
.footer__top { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 4rem; }
.footer__inner { max-width: var(--container-w); margin: 0 auto; padding: 0 1.5rem; }
.footer__top .footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }

.footer__brand { padding-right: 2rem; }
.footer__logo { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer__logo img { height: 50px; }
.footer__tagline { color: #94a3b8; font-size: 0.9rem; margin-bottom: 2rem; }
.footer__contact-item { display: flex; gap: 1rem; margin-bottom: 1rem; color: #cbd5e1; font-size: 0.9rem; align-items: flex-start; }
.footer__contact-item svg { width: 20px; height: 20px; color: var(--secondary); flex-shrink: 0; }
.footer__contact-item a:hover { color: var(--secondary); }

.footer__heading { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--white); }
.footer__list li { margin-bottom: 0.75rem; }
.footer__list a { color: #94a3b8; font-size: 0.9rem; }
.footer__list a:hover { color: var(--secondary); padding-left: 5px; }

.footer__social { display: flex; gap: 0.75rem; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-icon svg { width: 16px; height: 16px; fill: var(--white); }
.social-icon:hover { background: var(--secondary); transform: translateY(-3px); }

.footer__bottom { padding: 1.5rem 0; background: #151d28; font-size: 0.85rem; color: #64748b; }
.footer__bottom .footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a:hover { color: var(--white); }
.footer__credit a { color: var(--secondary); font-weight: 600; }

@media (max-width: 991px) {
  .footer__top .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: span 2; padding-right: 0; }
  .footer__top .footer__col:last-child { grid-column: span 2; }
}
@media (max-width: 576px) {
  .site-footer { padding-top: 3rem; }
  .footer__top { padding-bottom: 2rem; }
  .footer__top .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand, .footer__top .footer__col:last-child { grid-column: span 1; }
  .footer__bottom .footer__inner { flex-direction: column; text-align: center; justify-content: center; gap: 1rem; }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* ─── Floating Elements ─── */
.wa-fab { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(37,211,102,0.4); z-index: 99; transition: var(--transition); }
.wa-fab svg { width: 32px; height: 32px; fill: currentColor; }
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 14px rgba(37,211,102,0.6); }
.wa-fab__label { position: absolute; right: 75px; background: white; color: var(--dark); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transition: var(--transition); white-space: nowrap; }
.wa-fab:hover .wa-fab__label { opacity: 1; visibility: visible; right: 80px; }

.scroll-top { position: fixed; bottom: 30px; left: 30px; width: 45px; height: 45px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; box-shadow: var(--shadow-md); z-index: 98; opacity: 0; visibility: hidden; transition: var(--transition); transform: translateY(20px); }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--secondary); transform: translateY(-3px); }
.scroll-top svg { width: 24px; height: 24px; }

/* ─── Mobile Navigation ─── */
.mobile-nav { position: fixed; top: 0; left: -320px; width: 300px; height: 100vh; background: var(--white); z-index: 1000; box-shadow: var(--shadow-lg); transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; overflow-y: auto; }
.mobile-nav.open { left: 0; }
.mobile-nav__header { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.mobile-nav__header .header__logo img { height: 40px; }
.mobile-nav__close { background: none; border: none; cursor: pointer; color: var(--text-muted); }
.mobile-nav__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.mobile-nav__body ul { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav__body > ul > li > a, .mobile-accordion { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0.75rem 0; font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; color: var(--dark); border-bottom: 1px solid var(--light); background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; text-align: left; }
.mobile-accordion svg { width: 16px; height: 16px; transition: transform 0.3s; }
.mobile-accordion[aria-expanded="true"] svg { transform: rotate(180deg); color: var(--secondary); }
.mobile-sub { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding-left: 1rem; }
.mobile-sub.open { max-height: 500px; margin-top: 0.5rem; }
.mobile-sub a { display: block; padding: 0.5rem 0; color: var(--text-muted); font-size: 0.95rem; }
.mobile-sub a:hover { color: var(--secondary); }
.mobile-nav__cta { margin-top: auto; padding-top: 2rem; }
.mobile-nav__contact { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }
.mobile-nav__contact a { display: flex; align-items: center; gap: 0.5rem; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); backdrop-filter: blur(3px); }
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ─── Animations & Reveal ─── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Team Photo ─── */
.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 4px solid rgba(126,189,38,0.2); /* secondary color with opacity */
    box-shadow: var(--shadow-md);
    background-color: var(--light);
}
