/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1C1C1C; font-weight: 400; line-height: 1.6; background: #fff; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  --blue: #1F6AE1;
  --yellow: #FFCC28;
  --dark: #1C1C1C;
  --gray: #5C5C5E;
  --navy: #0F2A44;
  --white: #FFFFFF;
  --offwhite: #F8FAFC;
  --blue-tint: rgba(31,106,225,0.08);
  --blue-tint-light: rgba(31,106,225,0.06);
  --radius: 8px;
  --max-w: 1200px;
}

/* ===== UTILITY ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue); margin-bottom: 12px; }
.label-orange { color: #FF8C42; }
.section-heading { font-size: 40px; font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.section-subtext { font-size: 17px; color: var(--gray); max-width: 560px; line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; cursor: pointer; border: none; transition: all 0.2s ease; gap: 8px; }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: #e6b800; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #1759c4; }
.btn-outline-blue { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: #fff; }

/* ===== NAV ===== */
.nav { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid #eee; }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 700; color: var(--dark); }
.nav-logo svg { width: 28px; height: 28px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-size: 15px; font-weight: 600; color: var(--dark); }
.nav-phone:hover { color: var(--blue); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 24px; border-bottom: 1px solid #eee; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.mobile-menu.active { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; color: var(--dark); border-bottom: 1px solid #f0f0f0; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; width: 100%; text-align: center; }

/* ===== HERO ===== */
.hero { background: var(--navy); padding: 80px 0; overflow: hidden; }
.hero .container { display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; }
.hero-label { display: inline-block; background: rgba(255,140,66,0.15); color: #FF8C42; font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; letter-spacing: 0.5px; }
.hero h1 { font-size: 88px; font-weight: 800; color: #fff; line-height: 0.95; margin-bottom: 20px; text-transform: uppercase; letter-spacing: -2px; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 32px; max-width: 480px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image { flex-shrink: 0; }
.hero-image img { width: 500px; height: 420px; object-fit: cover; border-radius: var(--radius); }

/* ===== SERVICE CARDS ===== */
.services-strip { padding: 80px 0; }
.services-strip .section-header { text-align: center; margin-bottom: 48px; }
.services-strip .section-subtext { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid #eee; transition: box-shadow 0.3s, transform 0.2s; }
.service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 24px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 15px; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }
.service-card .card-link { color: var(--blue); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }
.service-card .card-link:hover { gap: 8px; }

/* Services page full grid */
.services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-full-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid #eee; transition: box-shadow 0.3s; }
.service-full-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.service-full-card img { width: 100%; height: 220px; object-fit: cover; }
.service-full-card-body { padding: 28px; }
.service-full-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.service-full-card > .service-full-card-body > p:first-of-type { font-size: 15px; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }
.service-full-card ul { margin-bottom: 20px; }
.service-full-card ul li { font-size: 14px; color: var(--gray); padding: 4px 0; padding-left: 20px; position: relative; }
.service-full-card ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }

/* ===== PROBLEM / SOLUTION ===== */
.problem-solution { padding: 80px 0; background: var(--offwhite); }
.problem-solution .container { display: flex; gap: 60px; align-items: flex-start; }
.ps-col { flex: 1; }
.ps-col h2 { font-size: 44px; font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.ps-col.solution h2 { color: var(--blue); }
.ps-col p { font-size: 16px; color: var(--gray); line-height: 1.7; }

/* ===== FOUR PILLARS ===== */
.pillars { padding: 80px 0; background: var(--blue-tint-light); }
.pillars .section-header { text-align: center; margin-bottom: 48px; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar-card { background: #fff; padding: 32px 24px; border-radius: var(--radius); text-align: center; border: 1px solid rgba(31,106,225,0.1); }
.pillar-icon { width: 56px; height: 56px; background: var(--blue-tint); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.pillar-icon svg { width: 28px; height: 28px; color: var(--blue); }
.pillar-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pillar-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== PROCESS ===== */
.process { padding: 80px 0; background: var(--blue); }
.process .section-header { text-align: center; margin-bottom: 48px; }
.process .section-heading { color: #fff; }
.process .section-subtext { color: rgba(255,255,255,0.7); margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-step { text-align: center; position: relative; }
.process-num { font-size: 56px; font-weight: 800; color: var(--yellow); line-height: 1; margin-bottom: 12px; }
.process-step h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.process-arrow { display: none; }

/* ===== ABOUT STRIP ===== */
.about-strip { padding: 80px 0; }
.about-strip .container { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.about-text h2 { font-size: 40px; font-weight: 700; margin-bottom: 16px; line-height: 1.15; }
.about-text p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.about-text .card-link { color: var(--blue); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.about-text .card-link:hover { gap: 10px; }
.about-image { flex-shrink: 0; }
.about-image img { width: 480px; height: 360px; object-fit: cover; border-radius: var(--radius); }

/* ===== STATS ===== */
.stats { padding: 80px 0; background: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
.stat-item .stat-num { font-size: 56px; font-weight: 800; color: var(--yellow); line-height: 1.1; margin-bottom: 8px; }
.stat-item .stat-label { font-size: 16px; color: rgba(255,255,255,0.8); font-weight: 500; }

/* ===== TESTIMONIAL ===== */
.testimonial { padding: 80px 0; background: var(--offwhite); }
.testimonial-card { max-width: 720px; margin: 0 auto; background: #fff; padding: 48px; border-radius: var(--radius); text-align: center; box-shadow: 0 2px 20px rgba(0,0,0,0.04); }
.testimonial-quote { font-size: 48px; color: var(--blue); line-height: 1; margin-bottom: 8px; font-family: Georgia, serif; }
.testimonial-card blockquote { font-size: 18px; color: var(--dark); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testimonial-name { font-size: 16px; font-weight: 700; color: var(--dark); }
.testimonial-role { font-size: 14px; color: var(--gray); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .nav-logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 280px; }
.footer h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-item { font-size: 14px; color: rgba(255,255,255,0.6); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--blue); padding: 60px 0; text-align: center; }
.page-hero h1 { font-size: 48px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.page-hero .breadcrumb { font-size: 14px; color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.page-hero .breadcrumb a:hover { color: #fff; }

/* ===== ABOUT PAGE ===== */
.owner-story { padding: 80px 0; }
.owner-story .container { display: flex; align-items: center; gap: 60px; }
.owner-story-text { flex: 1; }
.owner-story-text h2 { font-size: 40px; font-weight: 700; margin-bottom: 16px; line-height: 1.15; }
.owner-story-text p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.owner-story-image { flex-shrink: 0; }
.owner-story-image img { width: 460px; height: 380px; object-fit: cover; border-radius: var(--radius); }

.team-section { padding: 80px 0; background: var(--offwhite); }
.team-section .section-header { text-align: center; margin-bottom: 48px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: #fff; border-radius: var(--radius); overflow: hidden; text-align: center; border: 1px solid #eee; }
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-card-body { padding: 24px; }
.team-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.team-card p { font-size: 14px; color: var(--gray); }

.why-choose { padding: 80px 0; }
.why-choose .section-header { text-align: center; margin-bottom: 48px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: #fff; padding: 32px 24px; border-radius: var(--radius); text-align: center; border: 1px solid #eee; }
.why-card .pillar-icon { margin: 0 auto 16px; }
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== CONTACT PAGE ===== */
.contact-split { padding: 80px 0; }
.contact-split .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start; }
.contact-info h2 { font-size: 32px; font-weight: 700; margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.contact-info-icon { width: 40px; height: 40px; background: var(--blue-tint); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; color: var(--blue); }
.contact-info-item strong { font-size: 14px; font-weight: 600; display: block; margin-bottom: 2px; }
.contact-info-item span { font-size: 14px; color: var(--gray); }
.contact-form { background: var(--offwhite); padding: 40px; border-radius: var(--radius); }
.contact-form h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.contact-form > p { font-size: 15px; color: var(--gray); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: var(--radius); font-size: 15px; background: #fff; color: var(--dark); transition: border-color 0.2s; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== SERVICE AREAS ===== */
.service-areas { padding: 80px 0; background: var(--offwhite); }
.service-areas .section-header { text-align: center; margin-bottom: 32px; }
.areas-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.areas-list span { background: #fff; padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 500; color: var(--dark); border: 1px solid #eee; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; }
.faq .section-header { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; background: none; border: none; cursor: pointer; font-size: 17px; font-weight: 600; color: var(--dark); text-align: left; }
.faq-question svg { width: 20px; height: 20px; color: var(--gray); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 0 20px; font-size: 15px; color: var(--gray); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ===== CHAT WIDGET ===== */
.chat-btn { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: #fff; border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(31,106,225,0.4); z-index: 999; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.chat-btn:hover { transform: scale(1.05); }
.chat-btn svg { width: 26px; height: 26px; }
.chat-panel { position: fixed; bottom: 92px; right: 24px; width: 360px; background: #fff; border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,0.15); z-index: 999; display: none; flex-direction: column; overflow: hidden; }
.chat-panel.active { display: flex; }
.chat-header { background: var(--blue); color: #fff; padding: 16px 20px; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; }
.chat-close { background: none; border: none; color: #fff; cursor: pointer; font-size: 20px; line-height: 1; }
.chat-body { padding: 16px; height: 280px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { padding: 10px 14px; border-radius: 12px; font-size: 14px; max-width: 85%; line-height: 1.5; }
.chat-msg.bot { background: var(--blue-tint); color: var(--dark); align-self: flex-start; }
.chat-msg.user { background: var(--blue); color: #fff; align-self: flex-end; }
.chat-chips { padding: 8px 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.chat-chip { background: var(--blue-tint); color: var(--blue); border: 1px solid rgba(31,106,225,0.2); border-radius: 16px; padding: 6px 14px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.chat-chip:hover { background: var(--blue); color: #fff; }
.chat-input-wrap { display: flex; border-top: 1px solid #eee; }
.chat-input { flex: 1; padding: 12px 16px; border: none; font-size: 14px; outline: none; }
.chat-send { background: var(--blue); color: #fff; border: none; padding: 0 16px; cursor: pointer; font-weight: 600; font-size: 14px; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; background: var(--offwhite); text-align: center; }
.cta-section h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.cta-section p { font-size: 17px; color: var(--gray); margin-bottom: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-right .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn { display: none; }

  .hero .container { flex-direction: column; gap: 32px; }
  .hero h1 { font-size: 48px; }
  .hero-image img { width: 100%; height: 280px; }

  .services-grid, .services-full-grid { grid-template-columns: 1fr; }

  .problem-solution .container { flex-direction: column; gap: 32px; }
  .ps-col h2 { font-size: 32px; }

  .pillars-grid, .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

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

  .about-strip .container { flex-direction: column; gap: 32px; }
  .about-image img { width: 100%; height: 280px; }

  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-item .stat-num { font-size: 42px; }

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

  .section-heading { font-size: 32px; }

  .owner-story .container { flex-direction: column; }
  .owner-story-image img { width: 100%; height: 260px; }

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

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

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

  .page-hero h1 { font-size: 36px; }

  .chat-panel { width: calc(100vw - 32px); right: 16px; bottom: 88px; }
}
