/* ============================================
   Autocal Groups - Premium Corporate Website
   ============================================ */

/* ----- CSS Variables ----- */
:root {
    --primary: #035048;
    --primary-light: #04685c;
    --secondary: #02719c;
    --accent: #00B4D8;
    --bg-light: #F8FAFC;
    --text-dark: #222222;
    --text-gray: #555;
    --text-light: #888;
    --white: #ffffff;
    --shadow: 0 5px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --header-height: 70px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(3, 80, 72, 0.08);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-tag.light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.section-header.light p {
    color: rgba(255,255,255,0.85);
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(3, 80, 72, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 80, 72, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    padding: 0;
    background: none;
}

.btn-text:hover {
    gap: 12px;
    color: var(--secondary);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn-phone {
    background: rgba(255,255,255,0.18);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.btn-phone:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   HEADER - Sticky + Glassmorphism
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: var(--primary);
    padding: 8px 0;
    transition: var(--transition);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    gap: 25px;
}

.header-contact a {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-contact a:hover {
    color: var(--white);
}

.header-social {
    display: flex;
    gap: 12px;
}

.header-social a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.header-social a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.header-main {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

/* Header scroll state */
.header.scrolled .header-top {
    transform: translateY(-100%);
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.header.scrolled .header-main {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 22px;
    color: var(--primary);
    line-height: 1.2;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 10px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(3, 80, 72, 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link i {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: rotate(180deg);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.search-toggle:hover {
    background: rgba(3, 80, 72, 0.06);
    color: var(--primary);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(0,0,0,0.08);
    border: none;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mega Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 8px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
    border: 1px solid rgba(0,0,0,0.06);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid rgba(0,0,0,0.06);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    border-radius: 0 3px 3px 0;
    transition: height 0.25s ease;
}

.dropdown-menu li a:hover {
    color: var(--primary);
    background: rgba(3, 80, 72, 0.06);
    padding-left: 28px;
}

.dropdown-menu li a:hover::before {
    height: 60%;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 720px;
    z-index: 100;
    border: 1px solid rgba(0,0,0,0.06);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid rgba(0,0,0,0.06);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mega-col h4 {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(3, 80, 72, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    border-radius: 8px;
    transition: all 0.25s ease;
}

.mega-col a:hover {
    color: var(--primary);
    background: rgba(3, 80, 72, 0.06);
    padding-left: 14px;
}

/* ============================================
   HERO SLIDER — Swiper + GSAP (Fade + Ken Burns)
   ============================================ */
/* Shared hero base — other pages use .hero for page banners */
.hero {
    position: relative;
    padding: 150px 0 100px;
    min-height: 480px;
    overflow: hidden;
    background: var(--primary);
}

/* Inner page hero content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-tag i {
    font-size: 14px;
    color: var(--accent);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Index page only — full-screen slider */
#home.hero {
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 0;
}

/* Swiper overrides */
#home.hero .hero-swiper {
    width: 100%;
    height: 100%;
}

#home.hero .hero-swiper .swiper-wrapper {
    height: 100%;
}

#home.hero .hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Background image — Ken Burns via CSS */
#home.hero .hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

#home.hero .hero-swiper .swiper-slide-active .hero-slide-bg {
    animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.1) translate(-8px, -4px); }
}

/* Dark teal overlay — #035048 at ~65% */
#home.hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3,80,72,0.65);
    z-index: 1;
    pointer-events: none;
}

/* Content */
#home.hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 900px;
    z-index: 3;
    padding: 20px 0;
    pointer-events: auto;
}

#home.hero .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

#home.hero .hero-tag i {
    font-size: 10px;
    color: var(--accent);
}

#home.hero .hero-content .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    line-height: 1.15;
}

#home.hero .hero-content .hero-desc {
    font-size: 1.05rem;
    margin-bottom: 0 0 10px 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 15px rgba(0,0,0,0.2);
}

/* Buttons */
#home.hero .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* --- Progress Bar + Stats --- */
#home.hero .hero-progress-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

#home.hero .hero-progress {
    height: 3px;
    background: rgba(255,255,255,0.10);
}

#home.hero .hero-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transition: width 0.1s linear;
}

#home.hero .hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 14px 20px 18px;
    background: linear-gradient(to top, rgba(3,80,72,0.85), transparent);
}

#home.hero .hero-stat-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px;
}

#home.hero .hero-stat-num {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    min-width: 28px;
    text-align: right;
}

#home.hero .hero-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    #home.hero .hero-stats-row { gap: 16px; padding: 10px 12px 14px; flex-wrap: wrap; justify-content: center; }
    #home.hero .hero-stat-badge { font-size: 11px; }
    #home.hero .hero-stat-num { font-size: 16px; min-width: 20px; }
    #home.hero .hero-stat-label { font-size: 9px; }
}

@media (max-width: 480px) {
    #home.hero .hero-stats-row { gap: 12px; padding: 8px 10px 12px; }
    #home.hero .hero-stat-badge { font-size: 10px; }
    #home.hero .hero-stat-num { font-size: 14px; min-width: 18px; }
    #home.hero .hero-stat-label { font-size: 8px; }
}

/* --- Minimal Arrows (Index only) --- */
#home.hero .hero-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 5;
    pointer-events: none;
}

#home.hero .hero-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(3,80,72,0.4);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

#home.hero .hero-arrow:hover {
    background: var(--primary);
    border-color: var(--white);
    transform: scale(1.08);
}

#home.hero .hero-arrow:active {
    transform: scale(0.92);
}

#home.hero .hero-arrow.swiper-button-prev::after,
#home.hero .hero-arrow.swiper-button-next::after {
    display: none;
}

/* --- Floating Decorative Elements (Index only) --- */
#home.hero .hero-float-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    animation: heroFloat 6s ease-in-out infinite;
}

#home.hero .hero-float-circle-1 {
    width: 180px;
    height: 180px;
    top: 8%;
    right: 10%;
    background: radial-gradient(circle, rgba(0,180,216,0.12), transparent 70%);
    animation-delay: 0s;
}

#home.hero .hero-float-circle-2 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 8%;
    background: radial-gradient(circle, rgba(0,180,216,0.08), transparent 70%);
    animation-delay: 2s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-20px) scale(1.05); }
}

#home.hero .hero-float-icon {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    font-size: 28px;
    color: rgba(255,255,255,0.08);
    animation: heroDrift 8s ease-in-out infinite;
}

#home.hero .hero-float-icon-1 {
    top: 12%;
    left: 6%;
    animation-delay: 0s;
}

#home.hero .hero-float-icon-2 {
    bottom: 25%;
    right: 8%;
    font-size: 36px;
    animation-delay: 3s;
}

#home.hero .hero-float-icon i {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.05));
}

@keyframes heroDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.08; }
    25%      { transform: translate(15px, -15px) rotate(5deg); opacity: 0.12; }
    50%      { transform: translate(-10px, -25px) rotate(-3deg); opacity: 0.06; }
    75%      { transform: translate(10px, -10px) rotate(4deg); opacity: 0.1; }
}

#home.hero .hero-glass-card {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    animation: heroFloat 7s ease-in-out infinite;
}

#home.hero .hero-glass-card i {
    font-size: 14px;
    color: var(--accent);
}

#home.hero .hero-glass-card-1 {
    top: 18%;
    right: 5%;
    animation-delay: 1s;
}

#home.hero .hero-glass-card-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

#home.hero .hero-geo-line {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.06;
}

#home.hero .hero-geo-line-1 {
    top: 30%;
    right: 15%;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: heroPulse 4s ease-in-out infinite;
}

#home.hero .hero-geo-line-2 {
    bottom: 30%;
    left: 12%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: heroPulse 5s ease-in-out infinite reverse;
}

@keyframes heroPulse {
    0%, 100% { transform: scale(1); opacity: 0.06; }
    50%      { transform: scale(1.3); opacity: 0.12; }
}

#home.hero .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.5;
}

/* ============================================
   HERO RESPONSIVE (Index only)
   ============================================ */
@media (max-width: 1024px) {
    #home.hero { min-height: 560px; }
    #home.hero .hero-content .hero-title { font-size: 2.8rem; }
    #home.hero .hero-content .hero-desc { font-size: 1rem; max-width: 550px; }
    #home.hero .hero-arrows { padding: 0 20px; }
    #home.hero .hero-arrow { width: 42px; height: 42px; font-size: 15px; }
}

@media (max-width: 768px) {
    #home.hero { min-height: 100vh; min-height: 100dvh; height: auto; }
    #home.hero .hero-content .hero-title { font-size: 2rem; }
    #home.hero .hero-content .hero-desc { font-size: 0.9rem; max-width: 100%; }
    #home.hero .hero-tag { font-size: 10px; padding: 5px 16px; margin-bottom: 14px; }
    #home.hero .hero-buttons .btn-lg { padding: 10px 20px; font-size: 13px; }
    #home.hero .hero-arrows { display: none; }
    #home.hero .hero-float-icon { display: none !important; }
}

@media (max-width: 480px) {
    #home.hero .hero-content .hero-title { font-size: 1.5rem; }
    #home.hero .hero-content .hero-desc { font-size: 0.85rem; }
    #home.hero .hero-tag { font-size: 9px; padding: 4px 12px; letter-spacing: 1px; }
    #home.hero .hero-buttons .btn-lg { padding: 8px 18px; font-size: 12px; }
    #home.hero .hero-float-circle, #home.hero .hero-glass-card, #home.hero .hero-geo-line, #home.hero .hero-wave { display: none !important; }
}

/* ============================================
   TRUST & STATISTICS — Premium
   ============================================ */
.trust-section {
    padding: 80px 0 60px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    background: var(--bg-light);
    overflow: hidden;
}

/* SVG Background Patterns */
.trust-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.trust-pattern svg {
    width: 100%;
    height: 100%;
}

/* Floating Geometric Shapes */
.trust-floating {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: trustFloat 6s ease-in-out infinite;
}

.trust-float-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(3,80,72,0.05), transparent 70%);
    animation-delay: 0s;
}

.trust-float-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: -40px;
    background: radial-gradient(circle, rgba(2,113,156,0.05), transparent 70%);
    animation-delay: 2s;
}

.trust-float-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 15%;
    background: radial-gradient(circle, rgba(0,180,216,0.04), transparent 70%);
    animation-delay: 4s;
}

@keyframes trustFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-20px) scale(1.05); }
}

/* Container z-index */
.trust-section .container {
    position: relative;
    z-index: 1;
}

/* --- Section Header --- */
.trust-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.trust-tag {
    display: inline-block;
    background: rgba(3,80,72,0.08);
    color: var(--primary);
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.trust-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.trust-header h2 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

/* --- Statistics Grid --- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

/* Premium Glass Card */
.trust-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 32px 20px 28px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(3,80,72,0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    cursor: default;
    border: 1px solid rgba(3,80,72,0.06);
}

/* Gradient border overlay */
.trust-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(3,80,72,0.12), rgba(0,180,216,0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.trust-card:hover::before {
    opacity: 1;
}

/* Subtle bg gradient on card */
.trust-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,80,72,0.02), transparent 60%);
    pointer-events: none;
    border-radius: 20px;
}

/* Card Icon */
.trust-card-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(3,80,72,0.08), rgba(0,180,216,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trust-card:hover .trust-card-icon {
    transform: rotate(-8deg) scale(1.1);
    background: linear-gradient(135deg, rgba(3,80,72,0.12), rgba(0,180,216,0.14));
    color: var(--secondary);
    box-shadow: 0 6px 20px rgba(3,80,72,0.12);
}

/* Card Value */
.trust-card-value {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-count,
.trust-count-pan,
.trust-count-sm {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    transition: font-size 0.4s ease;
}

.trust-card:hover .trust-count {
    font-size: 2.5rem;
}

.trust-plus {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    margin-left: 2px;
    line-height: 1;
}

.trust-count-pan {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.trust-count-sm {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Card Label */
.trust-label {
    position: relative;
    z-index: 1;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Hover Effects */
.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(3,80,72,0.12), 0 0 0 1px rgba(3,80,72,0.06);
}

/* --- Certification Trust Strip --- */
.trust-strip {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 20px 30px;
    margin: 2px 0 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(3,80,72,0.05);
    border: 1px solid rgba(3,80,72,0.05);
    overflow: hidden;
}

/* Shimmer overlay flowing across the strip */
.trust-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3,80,72,0.03), transparent);
    animation: trustShimmer 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes trustShimmer {
    0%   { left: -100%; }
    100% { left: 200%; }
}

/* Progress bar on top of the strip */
.trust-strip-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent), #00b4d8, var(--primary));
    background-size: 200% 100%;
    border-radius: 16px 16px 0 0;
    z-index: 2;
    animation: progressGradient 2s linear infinite;
}

@keyframes progressGradient {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.trust-strip-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: default;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: default;
}

.trust-strip-item i {
    font-size: 14px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.trust-strip-item:hover {
    color: var(--primary);
}

.trust-strip-item:hover i {
    transform: scale(1.2);
    color: var(--accent);
}

.trust-strip-divider {
    width: 1px;
    height: 24px;
    background: rgba(3,80,72,0.1);
}

/* ============================================
   TRUST — RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .trust-section { padding: 50px 0 40px; margin-top: -30px; }
    .trust-header { margin-bottom: 36px; }
    .trust-header h2 { font-size: 1.8rem; }
    .trust-subtitle { font-size: 0.9rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .trust-card { padding: 24px 16px 22px; }
    .trust-card-icon { width: 44px; height: 44px; font-size: 16px; margin-bottom: 12px; }
    .trust-count { font-size: 1.8rem; }
    .trust-card:hover .trust-count { font-size: 2rem; }
    .trust-count-pan { font-size: 1.2rem; }
    .trust-count-sm { font-size: 0.9rem; }
    .trust-label { font-size: 10px; }
    .trust-strip { padding: 20px 18px; gap: 4px; border-radius: 12px; }
    .trust-strip-item { font-size: 10px; padding: 6px 10px; }
    .trust-strip-item i { font-size: 12px; }
    .trust-strip-divider { height: 18px; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .trust-card { padding: 20px 12px 18px; border-radius: 16px; }
    .trust-count { font-size: 1.5rem; }
    .trust-card:hover .trust-count { font-size: 1.7rem; }
    .trust-count-pan { font-size: 1rem; }
    .trust-count-sm { font-size: 0.8rem; }
    .trust-strip { gap: 2px; padding: 20px 10px; }
    .trust-strip-item { font-size: 9px; padding: 4px 6px; gap: 4px; }
    .trust-strip-item i { font-size: 10px; }
}

/* ============================================
   ABOUT SECTION - Premium
   ============================================ */
.about-premium {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left - Image Collage */
.about-media {
    position: relative;
}

.media-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.media-main {
    grid-column: 1 / -1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.media-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(3,80,72,0.3), transparent);
}

.media-main img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.media-main:hover img {
    transform: scale(1.05);
}

.media-sub {
    border-radius: var(--radius);
    overflow: hidden;
}

.media-sub img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.media-sub:hover img {
    transform: scale(1.08);
}

/* Floating Glassmorphism Cards */
.float-card {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.float-card i {
    font-size: 22px;
    color: var(--primary);
    width: 40px;
    height: 40px;
    background: rgba(3,80,72,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-card strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.float-card span {
    font-size: 12px;
    color: var(--text-gray);
}

.float-card-1 { top: 20px; right: -15px; animation-delay: 0s; }
.float-card-2 { bottom: 120px; left: -20px; animation-delay: 0.5s; }
.float-card-3 { top: 50%; right: -20px; animation-delay: 1s; }
.float-card-4 { bottom: 20px; right: 30px; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Right - Content */
.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.35;
}

.about-desc {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.about-desc strong {
    color: var(--primary);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.about-feature i {
    color: var(--primary);
    font-size: 18px;
}

.about-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-outline-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Bottom Counters */
.about-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.04);
}

.counter-item {
    text-align: center;
    position: relative;
}

.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.08);
}

.counter-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}

.counter-plus {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.counter-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 5px;
}

/* ============================================
   OLD ABOUT (kept for inner pages)
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(3, 80, 72, 0.3);
}

.exp-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
}

.exp-text {
    font-size: 13px;
    opacity: 0.9;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.about-feature i {
    color: var(--primary);
    font-size: 18px;
}

/* ============================================
   GROUP COMPANIES
   ============================================ */
.group {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.group-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.group-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}

.group-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.group-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.group-card:hover .group-icon {
    background: var(--white);
    color: var(--primary);
    transform: rotateY(180deg);
}

.group-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.group-card p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: rgba(3, 80, 72, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: var(--radius);
    color: var(--white);
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-5px);
}

.why-icon {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.why-content h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.why-content p {
    font-size: 14px;
    opacity: 0.85;
}

/* ============================================
   NEWS & EVENTS
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries.section {
    position: relative;
}

.industries.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 60%, rgba(3,80,72,0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(2,113,156,0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(3,80,72,0.04) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(3,80,72,0.03) 60px, rgba(3,80,72,0.03) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(3,80,72,0.03) 60px, rgba(3,80,72,0.03) 61px);
    pointer-events: none;
    z-index: 0;
}

.industries.section .container {
    position: relative;
    z-index: 1;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.industry-card:hover i {
    transform: scale(1.2);
    color: var(--accent);
}

.industry-card h4 {
    font-size: 16px;
}

/* ============================================
   PROCESS
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(3, 80, 72, 0.06);
    margin-bottom: -25px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 10px rgba(3, 80, 72, 0.1);
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   CLIENTS CAROUSEL
   ============================================ */
.clients.section {
    position: relative;
}

.clients.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 60% 40%, rgba(3,80,72,0.06) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(2,113,156,0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(3,80,72,0.04) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(3,80,72,0.03) 60px, rgba(3,80,72,0.03) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(3,80,72,0.03) 60px, rgba(3,80,72,0.03) 61px);
    pointer-events: none;
    z-index: 0;
}

.clients.section .container {
    position: relative;
    z-index: 1;
}

.client-carousel {
    overflow: hidden;
    padding: 10px 0 20px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.client-track {
    display: flex;
    gap: 40px;
    animation: scrollClients 30s linear infinite;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
    white-space: nowrap;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-gray);
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.client-logo:hover {
    filter: grayscale(0);
    color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.client-logo i {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.client-logo:hover i {
    transform: scale(1.2);
}

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

/* ============================================
   PREMIUM PHOTO GALLERY CAROUSEL
   ============================================ */
.gallery-section {
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(3,80,72,0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(2,113,156,0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(3,80,72,0.04) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(3,80,72,0.03) 60px, rgba(3,80,72,0.03) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(3,80,72,0.03) 60px, rgba(3,80,72,0.03) 61px);
    pointer-events: none;
    z-index: 0;
}

.gallery-section .container,
.gallery-section .gallery-wrapper {
    position: relative;
    z-index: 1;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: galleryScroll 40s linear infinite;
}

.gallery-section:hover .gallery-track,
.gallery-section:active .gallery-track {
    animation-play-state: paused;
}

.gallery-item {
    flex-shrink: 0;
    width: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    cursor: default;
}

.gallery-item:hover {
    box-shadow: 0 12px 40px rgba(3,80,72,0.15);
    transform: translateY(-6px);
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px 14px;
    background: linear-gradient(to top, rgba(3,80,72,0.85) 0%, transparent 100%);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-item-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-caption i {
    margin-right: 6px;
    font-size: 12px;
    color: var(--accent);
}

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

@media (max-width: 1024px) {
    .gallery-item { width: 280px; }
    .gallery-item img { height: 200px; }
}

@media (max-width: 768px) {
    .gallery-item { width: 240px; }
    .gallery-item img { height: 180px; }
    .gallery-track { gap: 14px; }
    .gallery-item-caption {
        opacity: 1;
        transform: translateY(0);
        padding: 12px 16px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .gallery-item { width: 200px; }
    .gallery-item img { height: 150px; }
    .gallery-track { gap: 10px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.faq-image img {
    border-radius: var(--radius-lg);
    width: 100%;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.accordion-item {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(3, 80, 72, 0.08);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.accordion-header i {
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition);
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    padding: 0 25px 18px;
}

.accordion-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-bottom: 4px solid var(--secondary);
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-card i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 15px;
    transition: var(--transition);
    background: var(--bg-light);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(3, 80, 72, 0.05);
}

/* ============================================
   MAP
   ============================================ */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ============================================
   ABOUT HERO BANNER
   ============================================ */
.about-hero {
    position: relative;
    padding: 200px 0 120px;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.0); }
}

.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(3,80,72,0.88), rgba(2,113,156,0.75));
    z-index: 1;
}

.about-hero-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.15);
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.about-hero-content .breadcrumb {
    justify-content: center;
    margin-bottom: 30px;
}

.about-hero-cta {
    margin-top: 10px;
}

/* ============================================
   ABOUT - WHO WE ARE
   ============================================ */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.who-image {
    position: relative;
}

.who-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.who-image-main::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(3,80,72,0.2), transparent);
}

.who-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.who-image:hover img {
    transform: scale(1.04);
}

.who-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 18px 25px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.who-image-badge i {
    font-size: 28px;
    color: var(--primary);
}

.who-image-badge span {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}

.who-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.35;
}

.who-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.who-content p strong {
    color: var(--primary);
}

.who-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.04);
}

.who-stat {
    text-align: center;
}

.who-stat-num {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.who-stat-plus {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
}

.who-stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 3px;
}

/* ============================================
   ABOUT - TIMELINE
   ============================================ */
.about-journey {
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 850px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent), var(--primary));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-left: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    padding-left: 0;
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 5px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(3,80,72,0.1);
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 12px rgba(3,80,72,0.15);
}

.timeline-content {
    background: var(--white);
    padding: 28px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.timeline-year {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.timeline-content p strong {
    color: var(--primary);
}

/* ============================================
   GROUP COMPANIES - PREMIUM CARDS
   ============================================ */
.group-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.group-card-premium {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: var(--transition);
}

.group-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.group-card-premium:hover::before {
    transform: scaleX(1);
}

.group-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.group-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(3,80,72,0.03), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.group-card-premium:hover .group-card-glow {
    opacity: 1;
}

.group-card-icon {
    width: 65px;
    height: 65px;
    background: rgba(3,80,72,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.group-card-premium:hover .group-card-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.group-card-premium h3 {
    font-size: 17px;
    margin-bottom: 15px;
}

.group-card-list {
    list-style: none;
    margin-bottom: 20px;
}

.group-card-list li {
    font-size: 13px;
    color: var(--text-gray);
    padding: 4px 0;
    position: relative;
    padding-left: 16px;
}

.group-card-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

.group-card-premium .btn {
    padding: 10px 24px;
    font-size: 13px;
}

/* ============================================
   WHY CHOOSE US - PREMIUM
   ============================================ */
.why-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-premium-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-premium-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.why-premium-card:hover::after {
    transform: scaleX(1);
}

.why-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.why-premium-icon {
    width: 60px;
    height: 60px;
    background: rgba(3,80,72,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 18px;
    transition: var(--transition);
}

.why-premium-card:hover .why-premium-icon {
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    transform: rotate(5deg);
}

.why-premium-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
}

.why-premium-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   VMV SECTION
   ============================================ */
.about-vmv {
    padding: 100px 0;
    background-size: cover;
    background-attachment: fixed;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vmv-card {
    color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.vmv-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-8px);
}

.vmv-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.vmv-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.vmv-card p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

.values-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.values-list li {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.values-list li i {
    font-size: 14px;
    color: #25D366;
    margin: 0;
}

/* ============================================
   INDUSTRIES PREMIUM
   ============================================ */
.industries-premium-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ind-premium-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 30px 15px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.ind-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.ind-premium-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.ind-premium-card:hover i {
    transform: scale(1.2);
    color: var(--accent);
}

.ind-premium-card span {
    display: block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

/* ============================================
   ANIMATED GEOMETRIC SHAPES
   ============================================ */
.geo-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.07;
}

.geo-shape-1 {
    width: 320px;
    height: 320px;
    background: var(--primary);
    top: -80px;
    right: -60px;
    animation: geoFloat 8s ease-in-out infinite;
}

.geo-shape-2 {
    width: 220px;
    height: 220px;
    background: var(--secondary);
    bottom: 10%;
    left: -50px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: geoFloat 10s ease-in-out infinite reverse;
}

.geo-shape-3 {
    width: 160px;
    height: 160px;
    border: 3px solid var(--accent);
    background: transparent;
    top: 35%;
    right: 8%;
    animation: geoSpin 18s linear infinite;
}

.geo-shape-4 {
    width: 100px;
    height: 100px;
    background: var(--accent);
    bottom: 20%;
    right: 15%;
    border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
    animation: geoFloat 7s ease-in-out infinite;
    opacity: 0.05;
}

.geo-hex {
    position: absolute;
    width: 80px;
    height: 90px;
    background: rgba(3,80,72,0.06);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    pointer-events: none;
    z-index: 0;
}

.geo-hex-1 { top: 15%; left: 5%; animation: geoFloat 12s ease-in-out infinite; width: 60px; height: 68px; }
.geo-hex-2 { bottom: 25%; right: 5%; animation: geoFloat 9s ease-in-out infinite reverse; width: 50px; height: 57px; }

@keyframes geoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
}

@keyframes geoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hexagon pattern overlay for dark sections */
.hex-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l26 15v30L30 60 4 45V15z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 50px 44px;
    pointer-events: none;
    z-index: 0;
}

/* Dotted grid pattern for light sections */
.dotted-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(3,80,72,0.06) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
    z-index: 0;
}

/* Image reveal effect */
.img-reveal {
    overflow: hidden;
}

.img-reveal img {
    transform: scale(1.12);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-reveal.aos-animate img {
    transform: scale(1);
}

/* Gradient blob */
.gradient-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0,180,216,0.12), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
    animation: blobPulse 6s ease-in-out infinite alternate;
}

.gradient-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(2,113,156,0.1), transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

@keyframes blobPulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    100% { transform: scale(1.2) translate(30px, -20px); opacity: 1; }
}

/* ============================================
   ABOUT CTA
   ============================================ */
.about-cta {
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.about-cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 35px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-left] {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal-left].revealed {
    opacity: 1;
    transform: translateX(0);
}

[data-reveal-right] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal-right].revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   ABOUT PREMIUM SECTION
   ============================================ */
.about-premium-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(3,80,72,0.1), transparent);
}

/* Subtle light pattern overlay */
.about-premium-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(3,80,72,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(2,113,156,0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(3,80,72,0.04) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(3,80,72,0.03) 60px, rgba(3,80,72,0.03) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(3,80,72,0.03) 60px, rgba(3,80,72,0.03) 61px);
    pointer-events: none;
    z-index: 0;
}

/* Ensure content sits above the pattern */
.about-premium-section .container {
    position: relative;
    z-index: 1;
}

.about-premium-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Premium Image Collage */
.about-collage {
    position: relative;
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.collage-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collage-item:hover img {
    transform: scale(1.06);
}

.collage-main {
    grid-column: 1 / -1;
    height: 280px;
    border-radius: 16px;
}

.collage-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(3,80,72,0.4), transparent);
    pointer-events: none;
}

.collage-sub {
    height: 160px;
    border-radius: 12px;
}

/* Collage decoration */
.collage-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.collage-decoration::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid rgba(3,80,72,0.08);
    border-radius: 20px;
    z-index: 0;
}

/* Collage NABL badge */
.collage-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.collage-badge i {
    font-size: 20px;
    color: var(--primary);
}

.collage-badge span {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Floating Glass Cards */
.float-glass {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    animation: floatGlass 3.5s ease-in-out infinite;
    z-index: 4;
    white-space: nowrap;
}

.float-glass i {
    font-size: 20px;
    color: var(--primary);
    width: 36px;
    height: 36px;
    background: rgba(3,80,72,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-glass strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.float-glass span {
    font-size: 11px;
    color: var(--text-gray);
}

.float-glass-1 { top: 15px; right: -10px; animation-delay: 0s; }
.float-glass-2 { bottom: 130px; left: -15px; animation-delay: 0.6s; }
.float-glass-3 { top: 50%; right: -15px; animation-delay: 1.2s; }
.float-glass-4 { bottom: 15px; right: 25px; animation-delay: 1.8s; }

@keyframes floatGlass {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Right Content */
.about-premium-content {
    padding-left: 0;
}

.about-premium-sub {
    display: inline-block;
    background: rgba(3,80,72,0.08);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-premium-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.3;
}

.about-premium-content h2 span {
    color: var(--primary);
}

.about-premium-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-premium-desc strong {
    color: var(--primary);
    font-weight: 600;
}

/* Premium Feature Cards */
.premium-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.premium-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.premium-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(3,80,72,0.1);
    border-color: rgba(3,80,72,0.15);
    background: var(--white);
}

.premium-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(3,80,72,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.premium-feature:hover .premium-feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.premium-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Gradient Border Effect */
.gradient-border {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary), var(--primary));
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: gradientBorderMove 3s ease infinite;
}

.gradient-border:hover::before {
    opacity: 1;
}

@keyframes gradientBorderMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Premium CTA Buttons */
.premium-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.premium-cta .btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
}

/* Premium Counters Section */
.premium-counters-section {
    padding: 0 0 100px;
    background: var(--white);
    position: relative;
}

.premium-counters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1000px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(3,80,72,0.1), transparent);
}

.premium-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.premium-counter-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.premium-counter-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.premium-counter-card:hover::after {
    transform: scaleX(1);
}

.premium-counter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(3,80,72,0.1);
}

.premium-counter-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
    transition: transform 0.4s ease;
}

.premium-counter-card:hover .premium-counter-icon {
    transform: scale(1.15);
}

.premium-counter-number {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}

.premium-counter-plus {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
}

.premium-counter-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 6px;
    font-weight: 500;
}

/* Responsive for premium sections */
@media (max-width: 1024px) {
    .about-premium-inner {
        gap: 40px;
    }

    .about-premium-content h2 {
        font-size: 1.8rem;
    }

    .collage-main {
        height: 220px;
    }

    .collage-sub {
        height: 130px;
    }
}

@media (max-width: 768px) {
    .about-premium-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-premium-content h2 {
        font-size: 1.6rem;
    }

    .premium-features {
        grid-template-columns: 1fr;
    }

    .premium-cta {
        flex-direction: column;
    }

    .premium-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .premium-counters {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .premium-counter-card {
        padding: 25px 15px;
    }

    .premium-counter-number {
        font-size: 2.2rem;
    }

    .collage-main {
        height: 200px;
    }

    .collage-sub {
        height: 120px;
    }

    .float-glass { display: none; }

    .collage-badge {
        bottom: 12px;
        left: 12px;
        padding: 8px 12px;
    }

    .collage-badge span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .premium-counters {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .premium-counter-number {
        font-size: 1.8rem;
    }

    .premium-counter-plus {
        font-size: 1.4rem;
    }

    .collage-main {
        height: 170px;
    }

    .collage-sub {
        height: 100px;
    }
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.15;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3,80,72,0.9), rgba(2,113,156,0.7));
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-banner-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb li::after {
    content: '/';
    color: rgba(255,255,255,0.5);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

/* ============================================
   MISSION / VISION
   ============================================ */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.mv-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.cert-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cert-card i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.cert-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cert-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ============================================
   COMPANY DETAIL
   ============================================ */
.company-detail {
    max-width: 800px;
    margin: 0 auto;
}

.company-header {
    text-align: center;
}

.company-icon {
    width: 90px;
    height: 90px;
    background: rgba(3, 80, 72, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
    margin: 0 auto 25px;
}

.company-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.company-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--secondary), var(--primary-light));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.8fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 28px;
    color: var(--accent);
}

.footer-logo-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    display: block;
}

.footer-logo-sub {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
}

.footer-address {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-address i {
    margin-top: 4px;
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-contact-item:hover {
    opacity: 1;
    transform: translateX(3px);
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.85);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255,255,255,0.06);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,180,216,0.3);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* Quick Links with arrow icons */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links li a {
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
}

.footer-links li a i {
    font-size: 10px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    opacity: 1;
    padding-left: 6px;
}

.footer-links li a:hover i {
    transform: translateX(4px);
}

/* Footer Map */
.footer-map {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    display: block;
    border: none;
}

.footer-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-map-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--accent);
    gap: 12px;
}

.footer-map-btn i {
    color: var(--accent);
    font-size: 14px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(0,0,0,0.3);
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 50vw;
    padding-right: 50vw;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--accent);
    opacity: 1;
    font-weight: 500;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-map iframe { height: 180px; }
}

/* Legacy footer selectors (kept for existing pages) */
.footer-col p { font-size: 14px; opacity: 0.85; line-height: 1.8; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; opacity: 0.8; transition: var(--transition); }
.footer-col ul li a:hover { opacity: 1; padding-left: 5px; }
.newsletter-form { display: flex; gap: 0; margin-top: 15px; }
.newsletter-form input { flex: 1; padding: 12px 15px; border: none; border-radius: 8px 0 0 8px; font-family: var(--font-secondary); font-size: 14px; outline: none; }
.newsletter-form button { padding: 12px 18px; background: var(--accent); color: var(--white); border: none; border-radius: 0 8px 8px 0; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: var(--secondary); }
.footer-col p { font-size: 14px; opacity: 0.85; line-height: 1.8; margin-bottom: 20px; }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulseWhatsApp {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(3, 80, 72, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* Reading progress bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent), #00b4d8);
    z-index: 999999;
    will-change: width;
    pointer-events: none;
}

/* ============================================
   PARALLAX EFFECT
   ============================================ */
.parallax-section {
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* ============================================
   ANIMATIONS
   ============================================ */
/* [data-animate] uses GSAP from() for entrance animation */
/* No CSS opacity:0 — GSAP sets initial state during animation */
/* If GSAP fails, content stays visible by default */

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .group-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .group-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .industries-premium-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-hero-content h1 { font-size: 2.6rem; }

    .timeline-item { padding-left: calc(50% + 30px); }
    .timeline-item:nth-child(even) { padding-right: calc(50% + 30px); }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Header */
    .header-top {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-link {
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        padding: 14px 18px;
        border-radius: 12px;
        margin-bottom: 2px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(3, 80, 72, 0.08);
    }

    .nav-link::after {
        display: none;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 12px;
    }

    /* Mobile Toggle */
    .nav-toggle {
        background: rgba(3, 80, 72, 0.08);
        padding: 10px 12px;
        border-radius: 10px;
    }

    .nav-toggle.active {
        background: rgba(3, 80, 72, 0.15);
    }

    /* Dropdown Mobile */
    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border: none;
        margin-top: 2px;
        min-width: auto;
        padding: 0;
        background: rgba(3, 80, 72, 0.03);
        border-radius: 12px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu li a {
        padding: 12px 20px;
        font-size: 15px;
    }

    .dropdown-menu li a::before {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        animation: dropdownFadeIn 0.3s ease;
    }

    @keyframes dropdownFadeIn {
        from { opacity: 0; transform: translateY(-8px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* Mega Menu Mobile */
    .mega-menu {
        position: static;
        width: 100%;
        padding: 15px;
        box-shadow: none;
        border-radius: 12px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 5px;
        background: rgba(3, 80, 72, 0.03);
        border: none;
    }

    .mega-menu::before {
        display: none;
    }

    .dropdown.active .mega-menu {
        display: block;
        animation: dropdownFadeIn 0.3s ease;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mega-col a {
        padding: 10px 12px;
        border-radius: 8px;
    }

    /* Hero */
    .hero {
        padding: 120px 0 60px;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 5px 16px;
        margin-bottom: 12px;
    }

    .hero-buttons .btn-lg {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-arrows {
        display: none;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stats {
        margin-top: -40px;
    }

    /* About */
    .about-premium {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-experience {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }

    .about-counters {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px;
    }

    .counter-item:not(:last-child)::after { display: none; }

    .counter-number { font-size: 2rem; }

    .float-card { display: none; }

    .media-main img { height: 200px; }
    .media-sub img { height: 120px; }

    .about-cta {
        flex-direction: column;
    }

    .about-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* About Page */
    .about-hero { padding: 150px 0 80px; min-height: 400px; }
    .about-hero-content h1 { font-size: 2rem; }
    .about-hero-content p { font-size: 1rem; }

    .who-grid { grid-template-columns: 1fr; gap: 40px; }
    .who-image-main img { height: 300px; }
    .who-image-badge { position: relative; bottom: 0; right: 0; margin-top: 15px; }
    .who-stats { grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 20px; }
    .who-stat-num { font-size: 1.6rem; }

    .timeline-item {
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left !important;
    }
    .timeline-line { left: 20px; }
    .timeline-dot { left: 20px; width: 40px; height: 40px; font-size: 14px; }
    .timeline-content { padding: 20px; }

    .group-cards { grid-template-columns: 1fr 1fr; }
    .group-card-premium h3 { font-size: 15px; }
    .group-card-list li { font-size: 12px; }

    .why-premium-grid { grid-template-columns: 1fr; }

    .vmv-grid { grid-template-columns: 1fr; gap: 20px; }

    .industries-premium-grid { grid-template-columns: repeat(2, 1fr); }

    .about-cta-content h2 { font-size: 1.8rem; }

    /* Group */
    .group-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mega Menu Mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.06);
        margin-top: 5px;
        min-width: auto;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Why */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Industries */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Process */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }

    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    /* Page Banner */
    .page-banner {
        padding: 120px 0 60px;
    }

    .page-banner-content h1 {
        font-size: 2rem;
    }

    /* Mission / Certs */
    .mv-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-image {
        order: -1;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Stats */
    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 50px;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .hero-tag {
        font-size: 10px;
        padding: 4px 12px;
    }

    .hero-buttons .btn-lg {
        padding: 8px 16px;
        font-size: 12px;
    }

    .group-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-counters {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .counter-number { font-size: 1.6rem; }
    .counter-plus { font-size: 1.4rem; }

    .media-main img { height: 170px; }
    .media-sub img { height: 100px; }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   BLINKING CTA BUTTON
   ============================================ */
.btn-blink {
    animation: blinkPulse 1.5s ease-in-out infinite;
    position: relative;
}

.btn-blink:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,180,216,0.5);
}

@keyframes blinkPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,180,216,0.6); }
    50% { box-shadow: 0 0 0 12px rgba(0,180,216,0); }
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 12px 0;
    color: var(--white);
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.announcement-bar-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcement-bar-title i {
    color: var(--accent);
    font-size: 16px;
}

.announcement-bar-text {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    font-size: 12px;
    opacity: 0.9;
}

.announcement-bar-text span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.announcement-bar-text i {
    color: var(--accent);
    font-size: 10px;
}

.announcement-bar-actions {
    display: flex;
    gap: 10px;
}

.announcement-bar-actions .btn {
    padding: 6px 16px;
    font-size: 12px;
}

.announcement-bar-actions .btn-outline {
    padding: 5px 14px;
    font-size: 11px;
}

@media (max-width: 768px) {
    .announcement-bar .container {
        flex-direction: column;
        text-align: center;
    }
    .announcement-bar-text { justify-content: center; }
    .announcement-bar-title { white-space: normal; }
}

/* ============================================
   NATIONWIDE MAP
   ============================================ */
.map-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.map-container img {
    width: 100%;
    display: block;
}

.map-pin {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: mapPing 2s ease-in-out infinite;
    cursor: pointer;
}

.map-pin::after {
    content: attr(data-label);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    font-family: var(--font-primary);
    opacity: 1;
}

.map-pin-1 { top: 52%; left: 48%; animation-delay: 0s; }
.map-pin-2 { top: 42%; left: 38%; animation-delay: 0.3s; }
.map-pin-3 { top: 68%; left: 55%; animation-delay: 0.6s; }
.map-pin-4 { top: 28%; left: 72%; animation-delay: 0.9s; }
.map-pin-5 { top: 58%; left: 75%; animation-delay: 1.2s; }
.map-pin-6 { top: 75%; left: 72%; animation-delay: 1.5s; }
.map-pin-7 { top: 35%; left: 50%; animation-delay: 1.8s; }

@keyframes mapPing {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

/* ============================================
   CONTACT COMPANY TABS
   ============================================ */
.contact-company-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.contact-company-tab {
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(3,80,72,0.15);
    background: var(--white);
    color: var(--text-gray);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-company-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(3,80,72,0.05);
}

.contact-company-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(3,80,72,0.2);
}

.contact-company-panel {
    display: none;
    animation: fadeSlideUp 0.5s ease;
}

.contact-company-panel.active {
    display: block;
}

@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.contact-company-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-company-card:hover {
    box-shadow: 0 10px 40px rgba(3,80,72,0.1);
    transform: translateY(-4px);
}

.contact-company-card-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 25px 30px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-company-card-header i {
    font-size: 32px;
    color: var(--accent);
}

.contact-company-card-header h3 {
    font-size: 18px;
    margin: 0;
    color: var(--white);
}

.contact-company-card-header span {
    font-size: 13px;
    opacity: 0.85;
    display: block;
}

.contact-company-card-body {
    padding: 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.contact-company-card-body .company-details p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-company-card-body .company-details p i {
    color: var(--primary);
    font-size: 14px;
    margin-top: 4px;
    width: 16px;
}

.contact-company-card-body .company-details a {
    color: var(--text-gray);
    transition: var(--transition);
}

.contact-company-card-body .company-details a:hover {
    color: var(--primary);
}

.company-card-cta {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.company-card-cta .btn {
    padding: 10px 20px;
    font-size: 13px;
}

.company-card-cta .btn-outline-secondary {
    color: var(--white) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

.company-card-cta .btn-outline-secondary:hover {
    background: var(--white) !important;
    color: var(--primary) !important;
    border-color: var(--white) !important;
}

.contact-company-card-body .company-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.contact-company-card-body .company-map iframe {
    width: 100%;
    height: 200px;
    display: block;
    border: none;
}

/* Why Contact Us */
.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-contact-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}

.why-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(3,80,72,0.1);
    border-color: rgba(3,80,72,0.1);
}

.why-contact-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
    transition: transform 0.4s ease;
}

.why-contact-card:hover i {
    transform: scale(1.15);
}

.why-contact-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.why-contact-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .contact-company-card-body { grid-template-columns: 1fr; gap: 20px; }
    .why-contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .contact-company-card-body { grid-template-columns: 1fr; }
    .contact-company-card-header { flex-direction: column; text-align: center; }
    .why-contact-grid { grid-template-columns: 1fr; }
    .contact-company-tabs { gap: 6px; }
    .contact-company-tab { padding: 8px 16px; font-size: 12px; }
}

/* ============================================
   SERVICE DETAIL SHOWCASE
   ============================================ */
.service-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-showcase.reversed {
    direction: rtl;
}

.service-showcase.reversed > * {
    direction: ltr;
}

.service-showcase-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.service-showcase-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.service-showcase-image:hover img {
    transform: scale(1.05);
}

.service-showcase-image .showcase-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-showcase-content h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-showcase-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.service-showcase-content .service-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 18px 0;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.service-benefits li i {
    color: var(--primary);
    font-size: 14px;
}

.showcase-cta {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* Calibration Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    z-index: 0;
    border-radius: 2px;
}

.process-timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-timeline-step .step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto 16px;
    transition: all 0.4s ease;
    position: relative;
}

.process-timeline-step:hover .step-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 10px rgba(3,80,72,0.1);
    transform: scale(1.08);
}

.process-timeline-step .step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
}

.process-timeline-step h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.process-timeline-step p {
    font-size: 13px;
    color: var(--text-gray);
}

/* Certification Cards */
.cert-card-modern {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cert-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.cert-card-modern:hover::before {
    transform: scaleX(1);
}

.cert-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.cert-card-modern i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.cert-card-modern h4 {
    font-size: 17px;
    margin-bottom: 10px;
}

.cert-card-modern p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Testimonial Slider */
.testimonial-glass {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 35px 30px;
    color: var(--white);
    transition: all 0.4s ease;
}

.testimonial-glass:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.testimonial-glass .stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-glass p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-glass .author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-glass .author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.15);
}

.testimonial-glass .author h5 {
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-glass .author span {
    font-size: 13px;
    opacity: 0.7;
}

/* ============================================
   GALLERY FILTER & LIGHTBOX
   ============================================ */

/* Filter Tabs */
.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-tab {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(3,80,72,0.15);
    background: var(--white);
    color: var(--text-gray);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}

.gallery-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(3,80,72,0.05);
}

.gallery-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(3,80,72,0.2);
}

/* Filter Grid */
.gallery-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-filter-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.gallery-filter-item:hover {
    box-shadow: 0 12px 40px rgba(3,80,72,0.15);
    transform: translateY(-4px);
}

.gallery-filter-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-filter-item:hover img {
    transform: scale(1.1);
}

.gallery-filter-item .gallery-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-primary);
    z-index: 2;
}

.gallery-filter-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,80,72,0.85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.gallery-filter-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-filter-item .gallery-overlay .gallery-title {
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-filter-item:hover .gallery-overlay .gallery-title {
    transform: translateY(0);
}

.gallery-filter-item .gallery-overlay .gallery-desc {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.gallery-filter-item:hover .gallery-overlay .gallery-desc {
    opacity: 1;
    transform: translateY(0);
}

.gallery-filter-item .gallery-view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    z-index: 3;
}

.gallery-filter-item:hover .gallery-view-icon {
    transform: translate(-50%,-50%) scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

.lightbox-info {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    padding: 0 10px;
}

.lightbox-info .lightbox-title {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--white);
}

.lightbox-info .lightbox-counter {
    font-size: 13px;
    letter-spacing: 1px;
}

/* Lightbox responsive */
@media (max-width: 1024px) {
    .gallery-filter-grid { grid-template-columns: repeat(3, 1fr); }
    .lightbox-content { max-width: 92vw; }
    .lightbox-nav { width: 44px; height: 44px; }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
}

@media (max-width: 768px) {
    .gallery-filter-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-tabs { gap: 6px; }
    .gallery-tab { padding: 7px 16px; font-size: 12px; }
    .lightbox-content { max-width: 96vw; }
    .lightbox-info { flex-direction: column; gap: 5px; align-items: flex-start; }
}

@media (max-width: 480px) {
    .gallery-filter-grid { grid-template-columns: 1fr; }
    .lightbox-nav { width: 38px; height: 38px; font-size: 14px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

/* Floating hero stat cards */
.hero-stat-float {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    animation: heroStatFloat 3.5s ease-in-out infinite;
    z-index: 5;
    white-space: nowrap;
}

.hero-stat-float i {
    font-size: 20px;
    color: var(--primary);
    width: 36px;
    height: 36px;
    background: rgba(3,80,72,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat-float strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-stat-float span {
    font-size: 11px;
    color: var(--text-gray);
}

.hero-stat-1 { top: 18%; left: 6%; animation-delay: 0s; }
.hero-stat-2 { top: 45%; right: 4%; animation-delay: 0.6s; }
.hero-stat-3 { bottom: 22%; left: 8%; animation-delay: 1.2s; }
.hero-stat-4 { bottom: 10%; right: 12%; animation-delay: 1.8s; }

@keyframes heroStatFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Wave divider */
.wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.wave-divider svg {
    width: 100%;
    height: 60px;
}

/* Dark service category heading */
.service-category-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.service-category-heading .cat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.service-category-heading h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
}

/* Grid for service category tiles */
.cat-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.cat-service-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
}

.cat-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(3,80,72,0.1);
    border-color: rgba(3,80,72,0.15);
}

.cat-service-item i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
    transition: transform 0.4s ease;
}

.cat-service-item:hover i {
    transform: scale(1.2);
}

.cat-service-item span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Responsive for new components */
@media (max-width: 1024px) {
    .service-showcase { gap: 40px; }
    .service-showcase-image img { height: 340px; }
    .cat-service-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-filter-grid { grid-template-columns: repeat(3, 1fr); }
    .process-timeline { grid-template-columns: repeat(3, 1fr); }
    .process-timeline::before { display: none; }
    .hero-stat-float { display: none; }
}

@media (max-width: 768px) {
    .service-showcase { grid-template-columns: 1fr; gap: 30px; }
    .service-showcase.reversed { direction: ltr; }
    .service-showcase-content h3 { font-size: 1.3rem; }
    .service-showcase-image img { height: 260px; }
    .service-showcase-content .service-benefits { grid-template-columns: 1fr; }
    .showcase-cta { flex-direction: column; }
    .cat-service-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-filter-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .cert-card-modern { padding: 25px 18px; }
    .wave-divider svg { height: 30px; }
}

@media (max-width: 480px) {
    .cat-service-grid { grid-template-columns: 1fr; }
    .gallery-filter-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
}
