:root {
    --primary-color: #0a7c6e;   /* Emerald Teal - من الشعار */
    --primary-dark: #065a4f;    /* Dark Teal */
    --primary-light: #0d9e8d;   /* Light Teal */
    --secondary-color: #b8962e; /* Gold - من الشعار */
    --secondary-light: #d4b04a;
    --accent-black: #1a1a1a;    /* Deep Black - من الشعار */
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --bg-light: #f4f8f7;
    --bg-white: #ffffff;
    --font-family: 'Tajawal', sans-serif;
    --shadow-sm: 0 4px 12px rgba(10,124,110,0.1);
    --shadow-md: 0 8px 25px rgba(10,124,110,0.15);
    --shadow-lg: 0 15px 40px rgba(10,124,110,0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    direction: rtl;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

p { margin-bottom: 15px; }

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover { color: var(--secondary-color); }

/* ===== UTILITIES ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background-color: var(--secondary-color);
}

.btn-gold:hover {
    background-color: #9a7b22;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, #065a4f 0%, #0a7c6e 50%, #065a4f 100%);
    color: #e0f0ee;
    font-size: 0.85rem;
    padding: 7px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    color: #e0f0ee;
    display: flex;
    align-items: center;
    transition: var(--transition);
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    justify-content: center;
}

.top-bar-social a:hover {
    color: var(--secondary-color);
    background: rgba(255,255,255,0.2);
}

/* ===== HEADER ===== */
header {
    background-color: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(10,124,110,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 6px 30px rgba(10,124,110,0.18);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 100px;
    max-width: 120px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    border-right: 4px solid var(--secondary-color);
    padding-right: 16px;
    margin-right: 8px;
    height: 70px;
}

.logo-name {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.2px;
    white-space: nowrap;
    max-width: 200px;
}

.mobile-menu-btn {
    display: none;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
}

nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transition: width 0.3s ease;
}

nav a:not(.btn):hover {
    color: var(--primary-color);
}

nav a:not(.btn):hover::after {
    width: 100%;
}

nav a.btn {
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(10,124,110,0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('../hero.webp') center/cover no-repeat;
    z-index: 0;
    animation: heroZoom 20s infinite alternate ease-in-out;
    filter: blur(2px) brightness(0.9);
    transform: scale(1.08);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(6,90,79,0.85) 0%,
            rgba(184,150,46,0.65) 100%);
    z-index: 1;
}

.hero-overlay-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 30% 60%, rgba(184,150,46,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 40%, rgba(10,124,110,0.12) 0%, transparent 55%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    max-width: 950px;
}

@keyframes heroZoom {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-8px, -8px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,150,46,0.2);
    border: 1px solid rgba(184,150,46,0.5);
    color: var(--secondary-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out forwards;
}

.hero h1 {
    font-size: 3.4rem;
    margin-bottom: 22px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
    animation: fadeInUp 0.9s ease-out 0.1s forwards;
    opacity: 0;
    line-height: 1.25;
}

.hero h1 span {
    color: #f0c84a;
    text-shadow: 0 2px 14px rgba(240,200,74,0.55);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 38px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.35);
    animation: fadeInUp 0.9s ease-out 0.3s forwards;
    opacity: 0;
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-buttons .btn {
    font-size: 1.1rem;
    padding: 14px 38px;
    border-radius: 50px;
}

.hero-buttons .btn-gold {
    box-shadow: 0 6px 20px rgba(184,150,46,0.45);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: linear-gradient(90deg, #065a4f 0%, #0a7c6e 50%, #065a4f 100%);
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.02) 20px,
        rgba(255,255,255,0.02) 40px
    );
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    position: relative;
}

.stat-item {
    padding: 18px;
    border-right: 1px solid rgba(184,150,46,0.3);
    transition: var(--transition);
}

.stat-item:first-child {
    border-right: none;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-light);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(184,150,46,0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 90px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--secondary-color);
}

.about-content p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.about-points {
    list-style: none;
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.about-points li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-image-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(6,90,79,0.4);
}

.about-image-badge .badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-light);
    display: block;
}

.about-image-badge .badge-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 90px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.feature-card {
    padding: 38px 28px;
    border-radius: 16px;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--secondary-color);
}

.feature-card:hover::before {
    width: 100%;
}

.feature-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(10,124,110,0.1), rgba(184,150,46,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.feature-card:hover .feature-icon-wrap svg {
    stroke: white;
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 90px 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,90,79,0.8) 0%, transparent 50%);
    transition: opacity 0.3s ease;
}

.service-card:hover .service-img::after {
    opacity: 0.9;
}

.service-content {
    padding: 28px;
    border-top: 3px solid var(--primary-color);
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: -3px;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.4s ease;
}

.service-card:hover .service-content::before {
    width: 100%;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== SUPPLIES SECTION ===== */
.supplies {
    padding: 90px 0;
    background: var(--bg-light);
}

.supplies-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1.05rem;
}

.supplies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.supply-card {
    background: var(--bg-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.supply-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.supply-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.supply-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,90,79,0.75) 0%, transparent 55%);
    transition: opacity 0.3s ease;
}

.supply-card:hover .supply-img::after {
    background: linear-gradient(to top, rgba(6,90,79,0.90) 0%, rgba(10,124,110,0.2) 60%, transparent 100%);
}

.supply-card-body {
    padding: 20px 22px;
    border-top: 3px solid var(--primary-color);
    transition: var(--transition);
}

.supply-card:hover .supply-card-body {
    border-top-color: var(--secondary-color);
}

.supply-tag {
    display: inline-block;
    background: rgba(10,124,110,0.1);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.supply-card h3 {
    color: var(--primary-dark);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.supply-card p {
    color: #666;
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.55;
}

/* ===== PROJECTS / CLIENTS ===== */
/* ===== PROJECTS GALLERY ===== */
.projects {
    padding: 90px 0;
    background: var(--bg-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.project-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.project-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.project-img {
    height: 230px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.project-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,45,38,0.85) 0%, transparent 55%);
}

.project-img-overlay {
    position: absolute;
    bottom: 14px;
    right: 16px;
    z-index: 2;
}

.project-category {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

.project-content {
    padding: 22px 24px;
    border-top: 3px solid var(--primary-color);
}

.project-content:hover {
    border-top-color: var(--secondary-color);
}

.project-content h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.project-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.project-meta {
    display: flex;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: #888;
    font-weight: 600;
}

.project-meta span svg {
    flex-shrink: 0;
}

/* ===== CLIENTS SECTION ===== */
.clients {
    padding: 80px 0;
    background: linear-gradient(135deg, #065a4f 0%, #0a7c6e 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.clients .section-title h2 {
    color: white;
}

.clients .section-title h2::after {
    background: linear-gradient(90deg, var(--secondary-color), rgba(255,255,255,0.5));
}

.clients .section-title p {
    color: rgba(255,255,255,0.8);
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.client-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.client-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    border-color: var(--secondary-color);
}

.client-item .client-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.client-item span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, #b8962e 0%, #9a7b22 40%, #065a4f 120%);
    color: var(--text-light);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -5%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(10,124,110,0.15);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -5%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 38px;
    opacity: 0.92;
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta .btn {
    font-size: 1.05rem;
    padding: 14px 36px;
    border-radius: 50px;
}

.cta .btn-primary-cta {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(6,90,79,0.4);
}

.cta .btn-primary-cta:hover {
    background: var(--accent-black);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(180deg, #052e28 0%, #041f1b 100%);
    color: #ccc;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 55px;
}

.footer-col-brand .footer-logo {
    height: 80px;
    margin-bottom: 18px;
    display: block;
}

.footer-col-brand p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.7;
}

.footer-col h3 {
    color: var(--text-light);
    margin-bottom: 22px;
    font-size: 1.1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '←';
    color: var(--primary-light);
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-right: 4px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #aaa;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.contact-info li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 28px;
    font-size: 0.88rem;
    color: #777;
}

.copyright a {
    color: var(--secondary-color);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 64px;
    height: 64px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 18px rgba(37,211,102,0.45);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2.5s infinite;
}

.floating-wa:hover {
    transform: scale(1.12);
    color: #fff;
    animation: none;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
    70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(1) { border-right: none; }
    .stat-item:nth-child(3) { border-right: none; }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image { display: none; }
}

@media (max-width: 768px) {
    .location-hide { display: none !important; }
    .email-hide    { display: none !important; }

    .top-bar-info { gap: 10px; font-size: 0.78rem; }

    header .container {
        flex-wrap: wrap;
        position: relative;
    }

    .logo-img { height: 55px; }
    .logo-name { font-size: 1.15rem; }
    .logo-sub  { font-size: 0.62rem; }

    .mobile-menu-btn { display: block; }

    nav {
        display: none;
        width: 100%;
        background: var(--bg-white);
        padding: 20px 0;
        border-top: 1px solid #eee;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav.active { display: block; }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero { min-height: 100vh; }

    .hero h1 { font-size: 2.2rem; }
    .hero p  { font-size: 1.05rem; }

    .hero-buttons .btn { padding: 12px 28px; font-size: 1rem; }

    .section-title h2 { font-size: 2rem; }

    .cta h2 { font-size: 1.9rem; }

    .about-points { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(184,150,46,0.2); }
    .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
    .hero h1  { font-size: 1.8rem; }
    .stat-number { font-size: 2.2rem; }
    .cta-buttons, .hero-buttons { flex-direction: column; align-items: center; }
}

/* ===== CLIENTS & SUCCESS PARTNERS ===== */
.clients {
    padding: 90px 0;
    background: var(--bg-white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.client-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--secondary-color);
    background: white;
}

.client-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.client-card h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-card p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}
