/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 16px; color: #444; background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #ff6b35;
  --dark: #0d1b2a;
  --navy: #112240;
  --mid: #1e3a5f;
  --light-bg: #f8f9fc;
  --text: #555;
  --heading: #0d1b2a;
  --white: #ffffff;
  --border: #e8ecf0;
  --radius: 8px;
  --shadow: 0 5px 30px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; color: var(--heading); line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { line-height: 1.8; color: var(--text); }
.eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 12px; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header p { margin-top: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #e55a22; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,53,0.35); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--mid); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(13,27,42,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); transition: var(--transition); }
.navbar.scrolled { background: rgba(13,27,42,0.99); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 75px; }
.nav-logo span { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.4rem; color: #fff; }
.nav-logo span em { color: var(--primary); font-style: normal; }
.nav-logo small { display:block; font-size:0.6rem; letter-spacing:2px; color: rgba(255,255,255,0.5); font-weight: 500; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a { color: rgba(255,255,255,0.85); font-size: 0.86rem; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: var(--transition); position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu .dropdown { position: relative; }
.nav-menu .dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--dark); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); min-width: 200px; padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); box-shadow: 0 10px 40px rgba(0,0,0,0.4); }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 20px; color: rgba(255,255,255,0.8) !important; font-size: 0.85rem; border-radius: 0; }
.dropdown-menu a:hover { background: rgba(255,107,53,0.15); color: var(--primary) !important; padding-left: 26px; }
.nav-cta { background: var(--primary); color: #fff !important; padding: 10px 22px !important; border-radius: 50px !important; margin-left: 10px; }
.nav-cta:hover { background: #e55a22 !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 25px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, #1a3a6e 100%); min-height: 95vh; display: flex; align-items: center; padding-top: 75px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(255,107,53,0.12) 0%, transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,107,53,0.15); border: 1px solid rgba(255,107,53,0.3); color: var(--primary); padding: 6px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--primary); }
.hero .sub { color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 600; margin-bottom: 18px; letter-spacing: 0.3px; }
.hero p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 32px; max-width: 500px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img-wrap { position: relative; }
.hero-stats { display: flex; gap: 30px; margin-top: 44px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: 'Poppins', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--primary); }
.hero-stat .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.hero-float-card { position: absolute; background: #fff; border-radius: 12px; padding: 14px 18px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.hero-float-card.top { top: -16px; right: -10px; display: flex; align-items: center; gap: 10px; }
.hero-float-card.bottom { bottom: 24px; left: -20px; }
.hero-float-card .icon { width: 40px; height: 40px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.hero-float-card strong { font-family: 'Poppins', sans-serif; font-size: 0.85rem; color: var(--dark); }
.hero-float-card span { font-size: 0.75rem; color: #888; }

/* ===== MINI SERVICES STRIP ===== */
.mini-services { background: var(--dark); }
.mini-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.mini-card { padding: 32px 24px; border-right: 1px solid rgba(255,255,255,0.08); border-top: 3px solid transparent; transition: var(--transition); }
.mini-card:last-child { border-right: none; }
.mini-card:hover { border-top-color: var(--primary); background: rgba(255,107,53,0.06); }
.mini-card .icon { font-size: 2rem; margin-bottom: 12px; }
.mini-card h4 { color: #fff; margin-bottom: 6px; font-size: 0.95rem; }
.mini-card p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.6; }

/* ===== ABOUT ===== */
.about-section { background: var(--light-bg); }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; color: var(--text); }
.check-list li::before { content: '✓'; color: var(--primary); font-weight: 800; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.about-img { position: relative; }
.exp-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: #fff; padding: 20px 24px; border-radius: 12px; text-align: center; box-shadow: 0 10px 30px rgba(255,107,53,0.4); }
.exp-badge .num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.exp-badge .text { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

/* ===== CHOOSE CARDS ===== */
.choose-card { background: #fff; border-radius: 12px; padding: 30px 24px; box-shadow: var(--shadow); transition: var(--transition); text-align: center; }
.choose-card:hover { transform: translateY(-6px); box-shadow: 0 15px 50px rgba(0,0,0,0.12); }
.choose-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(255,107,53,0.22)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 16px; }
.choose-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.choose-card p { font-size: 0.84rem; }

/* ===== STATS ===== */
.stats-section { background: linear-gradient(135deg, var(--dark), var(--navy)); padding: 70px 0; }
.stat-box { text-align: center; }
.stat-box .number { font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-box .label { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== SERVICE CARDS ===== */
.service-card { background: #fff; border-radius: 12px; padding: 36px 28px; box-shadow: var(--shadow); border-bottom: 3px solid transparent; transition: var(--transition); }
.service-card:hover { border-bottom-color: var(--primary); transform: translateY(-6px); box-shadow: 0 15px 50px rgba(0,0,0,0.12); }
.service-icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,107,53,0.2)); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.88rem; margin-bottom: 14px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags span { background: var(--light-bg); color: var(--text); font-size: 0.72rem; padding: 4px 10px; border-radius: 50px; font-weight: 600; }

/* ===== PORTFOLIO ===== */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.project-card .cover { width: 100%; height: 100%; transition: transform 0.5s ease; }
.project-card:hover .cover { transform: scale(1.08); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, transparent 60%); opacity: 0; transition: var(--transition); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.project-card:hover .project-overlay { opacity: 1; }
.project-cat { font-size: 0.72rem; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.project-overlay h4 { color: #fff; margin-top: 4px; font-size: 0.95rem; }

/* ===== BRANDS ===== */
.brand-pill { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px; text-align: center; font-weight: 700; color: var(--dark); font-family: 'Poppins', sans-serif; font-size: 0.95rem; transition: var(--transition); }
.brand-pill:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--light-bg); }
.testi-card { background: #fff; border-radius: 12px; padding: 32px; box-shadow: var(--shadow); position: relative; }
.testi-card::before { content: '"'; font-family: Georgia, serif; font-size: 5rem; color: var(--primary); opacity: 0.2; position: absolute; top: 8px; left: 22px; line-height: 1; }
.testi-text { font-style: italic; line-height: 1.8; margin-bottom: 22px; font-size: 0.92rem; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--navy)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.05rem; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.92rem; color: var(--dark); }
.testi-role { font-size: 0.78rem; color: #888; }
.stars { color: var(--primary); font-size: 0.85rem; margin-bottom: 6px; }

/* ===== PROCESS ===== */
.process-step { text-align: center; padding: 20px; position: relative; }
.process-num { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; font-weight: 800; margin: 0 auto 18px; font-family: 'Poppins', sans-serif; }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: 10px; padding: 18px 24px; margin-bottom: 12px; background: #fff; }
.faq-item summary { font-weight: 600; cursor: pointer; color: var(--dark); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--primary); font-size: 1.2rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 12px; font-size: 0.9rem; }

/* ===== BLOG ===== */
.blog-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 15px 50px rgba(0,0,0,0.12); }
.blog-body { padding: 26px; }
.blog-meta { font-size: 0.76rem; color: #999; margin-bottom: 10px; display: flex; gap: 12px; }
.blog-cat { background: rgba(255,107,53,0.1); color: var(--primary); padding: 3px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; display: inline-block; margin-bottom: 10px; }
.blog-card h3 { margin-bottom: 10px; font-size: 1rem; line-height: 1.5; }
.blog-card p { font-size: 0.86rem; }
.read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 0.84rem; margin-top: 14px; }

/* ===== CONTACT ===== */
.contact-form-wrap { background: #fff; border-radius: 16px; padding: 46px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
input, textarea, select { width: 100%; padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius); font-family: 'Open Sans', sans-serif; font-size: 0.9rem; color: var(--dark); transition: var(--transition); outline: none; background: var(--light-bg); }
input:focus, textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(255,107,53,0.1); }
textarea { resize: vertical; min-height: 130px; }
.contact-info-card { background: linear-gradient(135deg, var(--dark), var(--navy)); border-radius: 16px; padding: 46px 38px; color: rgba(255,255,255,0.8); height: 100%; }
.contact-info-card h3 { color: #fff; margin-bottom: 8px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-item .ci-icon { width: 44px; height: 44px; background: rgba(255,107,53,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.contact-item strong { display: block; color: #fff; font-size: 0.88rem; margin-bottom: 4px; }
.contact-item span { font-size: 0.84rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 999; transition: var(--transition); color: #fff; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, #e55a22 100%); padding: 75px 0; text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-section .btn { background: #fff; color: var(--primary); }
.cta-section .btn:hover { background: var(--dark); color: #fff; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--dark), var(--navy)); padding: 130px 0 70px; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.7rem; }
.breadcrumb .current { color: var(--primary); font-size: 0.85rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; padding-bottom: 50px; }
.footer-brand .logo { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 16px; display: block; }
.footer-brand .logo em { color: var(--primary); font-style: normal; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.86rem; line-height: 1.8; margin-bottom: 22px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.6); font-size: 0.84rem; margin-bottom: 12px; }
.footer-contact-item .icon { color: var(--primary); }
.footer h5 { color: #fff; font-size: 1rem; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); display: inline-block; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.86rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-links a::before { content: '›'; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .mini-services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4, .grid-6 { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav-menu { display: none; position: absolute; top: 75px; left: 0; right: 0; background: var(--dark); flex-direction: column; align-items: flex-start; padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.08); gap: 4px; max-height: 80vh; overflow-y:auto; }
  .nav-menu.open { display: flex; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.05); margin-top: 4px; border: none; }
  .hamburger { display: flex; }
}
.hero-grid{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content{
    flex: 1;
}

.hero-img-wrap{
    flex: 1;
}

.hero-img-wrap img{
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px){

    .hero-grid{
        flex-direction: column;
        text-align: center;
    }

    .hero-content{
        order: 1;
    }

    .hero-img-wrap{
        order: 2;
        width: 100%;
        margin-top: 20px;
    }

    .hero-img-wrap img{
        width: 100%;
        height: auto;
    }

    .hero-stats{
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-btns{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns .btn{
        width: 100%;
    }

    .hero-float-card{
        display: none;
    }
}