
/* ============ HERO SECTION ============ */
.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 50%, #1a3a6b 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5;
}
/* Decorative circles */
.hero-circle-1 {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
}
.hero-circle-2 {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,90,191,.2) 0%, transparent 70%);
    bottom: -50px; left: 10%;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}
.hero-text .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,.15);
    border: 1px solid rgba(245,166,35,.3);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--accent), #ffd080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text p {
    font-size: 18px;
    color: rgba(255,255,255,.75);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 480px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-item .stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.hero-stat-item .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    margin-top: 4px;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-wrap .hero-img-bg {
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1; 
    animation: float 6s ease-in-out infinite; 
}

.hero-slider img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    
    opacity: 0;
    transform: translateX(60px);
    
    transition: transform 0.8s ease, opacity 0.8s ease;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.4));
}

.hero-slider img.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.hero-slider img.exit {
    opacity: 0;
    transform: translateX(-60px);
}

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

/* Floating badge on hero image */
.hero-floating-badge {
    position: absolute;
    bottom: 40px; left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: slideInLeft 1s ease .5s both;
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
.hero-floating-badge .badge-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 20px;
}
.hero-floating-badge .badge-text strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
}
.hero-floating-badge .badge-text span {
    font-size: 11px;
    color: var(--text-mid);
}

/* ============ SERVICES SECTION ============ */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.service-card .card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.service-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.service-card:hover .card-img img { transform: scale(1.08); }
.service-card .card-img .card-num {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--accent);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.service-card .card-body {
    padding: 24px;
}
.service-card .card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(10,61,143,.1), rgba(26,90,191,.05));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition);
}
.service-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}
.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}
.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-top: 16px;
    transition: var(--transition);
}
.service-card .card-link i { transition: transform .3s; }
.service-card:hover .card-link i { transform: translateX(4px); }

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 100px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
}
.about-img-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 480px;
}
.about-img-badge {
    position: absolute;
    bottom: -24px; right: -24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-img-badge .badge-num {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}
.about-img-badge .badge-label {
    font-size: 13px;
    opacity: .85;
    margin-top: 4px;
}
.about-text .section-title { text-align: left; margin-bottom: 24px; }
.about-text > p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.about-feature-item .feat-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(10,61,143,.1), rgba(26,90,191,.05));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 18px;
}
.about-feature-item .feat-text h4 {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.about-feature-item .feat-text p {
    font-size: 13px;
    color: var(--text-mid);
}

/* ============ STATS SECTION ============ */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,.1);
    transition: var(--transition);
}
.stat-card:hover {
    background: rgba(255,255,255,.14);
    transform: translateY(-4px);
}
.stat-card .stat-icon {
    font-size: 36px;
    margin-bottom: 16px;
}
.stat-card .stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.stat-card .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    margin-top: 8px;
    font-weight: 500;
}

/* ============ BRANCHES SECTION ============ */
.branches-section {
    padding: 100px 0;
    background: var(--bg-light);
}
.branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.branch-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.branch-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: var(--primary);
}
.branch-card .branch-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--white);
}
.branch-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.branch-card .branch-phones {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.branch-card .branch-phones span {
    font-size: 13px;
    color: var(--text-mid);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.branch-card .branch-phones i { color: var(--accent); font-size: 11px; }

/* ============ WHY US SECTION ============ */
.whyus-section {
    padding: 100px 0;
    background: var(--white);
}
.whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.whyus-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.whyus-item {
    padding: 28px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.whyus-item:hover {
    border-color: var(--primary);
    background: rgba(10,61,143,.03);
}
.whyus-item .item-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 16px;
}
.whyus-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.whyus-item p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
}
.whyus-image {
    position: relative;
}
.whyus-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    height: 500px;
    object-fit: cover;
}
.whyus-accent-box {
    position: absolute;
    top: -20px; left: -20px;
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: .6;
}

/* ============ CONTACT STRIP ============ */
.contact-strip {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}
.contact-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}
.contact-strip h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--white);
}
.contact-strip p {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    margin-top: 8px;
}
.contact-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--accent-dark);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    white-space: nowrap;
}
.contact-strip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,.75);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img {
    width: 52px; height: 52px;
    border-radius: 10px;
    margin-bottom: 16px;
}
.footer-brand .brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.6);
    margin-bottom: 24px;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-col h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.footer-col ul li a i { font-size: 11px; color: var(--accent); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-contact-item .contact-icon {
    width: 36px; height: 36px;
    min-width: 36px;
    background: rgba(245,166,35,.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 14px;
}
.footer-contact-item .contact-info .label {
    font-size: 11px;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.footer-contact-item .contact-info .value {
    font-size: 14px;
    color: rgba(255,255,255,.75);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.4);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ============ SCROLL TO TOP ============ */
.scroll-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    border: none;
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-4px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-wrap { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-wrap { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .branches-grid { grid-template-columns: repeat(3, 1fr); }
    .whyus-grid { grid-template-columns: 1fr; }
    .whyus-image { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .nav-links { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 4px; box-shadow: var(--shadow-md); z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-links a { width: 100%; }
    .menu-toggle { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .branches-grid { grid-template-columns: repeat(2, 1fr); }
    .whyus-features { grid-template-columns: 1fr; }
    .contact-strip-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .branches-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}
.modal-xlg{
    max-width:1500px
}