/* ==========================================================================
   COASTAL LIVING CONSTRUCTION — BOLD & COASTAL THEME
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Source+Serif+4:wght@400;600;700&display=swap');

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #0B2545;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: all 0.3s; }

/* --- VARIABLES --- */
:root {
  --deep-ocean: #0B2545;
  --ocean: #13588C;
  --sky: #38A3D5;
  --seafoam: #6DD3CE;
  --seafoam-dark: #4BBFB8;
  --sand: #F5EFE7;
  --warm-sand: #E8DED1;
  --white: #FFFFFF;
  --gray-100: #F0F2F4;
  --gray-300: #C5CCD4;
  --gray-600: #5A6872;
  --gray-800: #2A3444;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --shadow: 0 4px 24px rgba(11,37,69,0.08);
  --shadow-lg: 0 12px 48px rgba(11,37,69,0.12);
}

/* --- CONTAINER --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- SECTION --- */
.section { padding: 100px 0; }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--sky), var(--seafoam));
  color: white; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 6px 18px; border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Source Serif 4', serif;
  font-size: 42px; color: var(--deep-ocean);
  margin-bottom: 48px; line-height: 1.15;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block; padding: 14px 36px;
  border-radius: var(--radius-pill); font-weight: 700;
  font-size: 15px; text-transform: uppercase;
  letter-spacing: 1px; cursor: pointer;
  border: none; transition: all 0.3s;
}
.btn-lg { padding: 18px 48px; font-size: 16px; }
.btn-seafoam {
  background: var(--seafoam); color: var(--deep-ocean);
}
.btn-seafoam:hover { background: #5AE0D9; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(109,211,206,0.4); }
.btn-ocean {
  background: var(--ocean); color: white;
}
.btn-ocean:hover { background: #1668A5; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(19,88,140,0.3); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5); color: white;
  background: transparent;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-outline-ocean {
  border: 2px solid var(--ocean); color: var(--ocean);
  background: transparent;
}
.btn-outline-ocean:hover { background: var(--ocean); color: white; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(11,37,69,0.06);
  transition: all 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(11,37,69,0.12); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; padding: 16px 24px;
}
.nav-logo img { height: 48px; }
.nav-links {
  list-style: none; display: flex;
  gap: 32px; align-items: center;
}
.nav-links a {
  color: var(--deep-ocean); font-weight: 600;
  font-size: 14px; text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-links a:hover, .nav-links a.active { color: var(--sky); }
.nav-cta {
  background: linear-gradient(135deg, var(--sky), var(--ocean)) !important;
  color: white !important; padding: 12px 28px !important;
  border-radius: var(--radius-pill) !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 28px; height: 3px;
  background: var(--deep-ocean); margin: 5px 0;
  border-radius: 2px; transition: all 0.3s;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean) 50%, var(--sky) 100%);
  display: flex; align-items: center;
  padding: 140px 24px 100px; overflow: hidden;
}
.hero-bg-photo {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('images/hero-home.jpg');
  background-size: cover; background-position: center;
  opacity: 0.2;
}
.hero-waves {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.08;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 300 Q240 200 480 300 Q720 400 960 300 Q1200 200 1440 300' fill='none' stroke='white' stroke-width='3'/%3E%3Cpath d='M0 360 Q240 260 480 360 Q720 460 960 360 Q1200 260 1440 360' fill='none' stroke='white' stroke-width='2'/%3E%3Cpath d='M0 420 Q240 320 480 420 Q720 520 960 420 Q1200 320 1440 420' fill='none' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 60 Q360 0 720 60 Q1080 120 1440 60 V120 H0Z' fill='%23F5EFE7'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: 100% 120px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto 0 calc((100vw - 1200px) / 2 + 24px);
}
@media (max-width: 1248px) { .hero-content { margin-left: 24px; } }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; padding: 8px 20px;
  border-radius: var(--radius-pill); margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Source Serif 4', serif;
  font-size: 60px; color: white; line-height: 1.08;
  margin-bottom: 24px;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--seafoam), #8BE8E3);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px; color: rgba(255,255,255,0.85);
  line-height: 1.8; margin-bottom: 40px; max-width: 560px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   LICENSES STRIP
   ========================================================================== */
.licenses-strip {
  background: var(--sand); padding: 28px 0;
  border-bottom: 1px solid var(--warm-sand);
}
.licenses-inner {
  display: flex; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.lic {
  display: flex; align-items: center; gap: 10px;
}
.lic-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--seafoam));
  flex-shrink: 0;
}
.lic span {
  font-weight: 700; font-size: 13px;
  color: var(--deep-ocean);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ==========================================================================
   SERVICES PREVIEW (HOME)
   ========================================================================== */
.services-preview { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; color: white;
  padding: 48px 32px 36px; min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.4s, box-shadow 0.4s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-card-1 {
  background: linear-gradient(180deg, rgba(11,37,69,0.75) 0%, rgba(19,88,140,0.85) 100%),
              url('images/construction-framing.jpg') center/cover;
}
.svc-card-2 {
  background: linear-gradient(180deg, rgba(19,88,140,0.75) 0%, rgba(13,107,153,0.85) 100%),
              url('images/roofing-detail.jpg') center/cover;
}
.svc-card-3 {
  background: linear-gradient(180deg, rgba(56,163,213,0.75) 0%, rgba(19,88,140,0.85) 100%),
              url('images/pool-photo.jpg') center/cover;
}
.svc-number {
  position: absolute; top: 20px; right: 24px;
  font-size: 72px; font-weight: 800; opacity: 0.1;
}
.svc-icon { margin-bottom: 20px; position: relative; z-index: 2; }
.svc-icon svg { width: 48px; height: 48px; }
.svc-card h3 {
  font-size: 24px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px; position: relative; z-index: 2;
}
.svc-card p {
  font-size: 15px; line-height: 1.7; opacity: 0.85;
  position: relative; z-index: 2;
}
.svc-link {
  display: inline-block; margin-top: 16px;
  font-size: 13px; color: var(--seafoam);
  text-transform: uppercase; letter-spacing: 2px;
  font-weight: 700; position: relative; z-index: 2;
}
.svc-link:hover { color: white; }
.services-more { text-align: center; margin-top: 48px; }

/* ==========================================================================
   ABOUT PREVIEW (HOME)
   ========================================================================== */
.about-preview { background: var(--sand); }
.about-inner {
  display: flex; gap: 60px; align-items: center;
}
.about-image {
  flex: 0 0 440px; position: relative;
}
.about-image-placeholder {
  width: 100%; height: 400px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--warm-sand), #d4c9b8);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: var(--gray-600); font-size: 14px;
  overflow: hidden;
}
.about-image-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-image-placeholder svg { width: 80px; }
.about-image-accent {
  position: absolute; bottom: -12px; left: -12px;
  right: 60px; height: 8px;
  background: linear-gradient(90deg, var(--sky), var(--seafoam));
  border-radius: 4px;
}
.about-text { flex: 1; }
.about-text p {
  font-size: 16px; color: var(--gray-600);
  line-height: 1.85; margin-bottom: 16px;
}
.stat-row { display: flex; gap: 40px; margin-top: 24px; }
.stat h4 {
  font-size: 40px; font-weight: 800; color: var(--ocean);
  line-height: 1;
}
.stat span {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 1px; font-weight: 700; color: var(--gray-600);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-us {
  background: linear-gradient(135deg, var(--deep-ocean), var(--ocean));
}
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 36px 24px;
  text-align: center; transition: all 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--seafoam);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(109,211,206,0.12);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
}
.why-icon svg { width: 32px; height: 32px; }
.why-card h3 {
  color: white; font-size: 17px; font-weight: 700;
  margin-bottom: 10px; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.why-card p {
  color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  padding: 80px 0; text-align: center;
  background: var(--sand);
  border-top: 1px solid var(--warm-sand);
  border-bottom: 1px solid var(--warm-sand);
}
.cta-inner h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 42px; color: var(--deep-ocean);
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 18px; color: var(--gray-600);
  margin-bottom: 36px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--deep-ocean); color: rgba(255,255,255,0.7); padding-top: 60px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 200px; margin-bottom: 24px; filter: brightness(1.3); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer h4 {
  color: white; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a {
  color: rgba(255,255,255,0.6); font-size: 14px;
}
.footer ul a:hover { color: var(--seafoam); }
.footer-contact p { font-size: 14px; line-height: 1.7; margin-bottom: 8px; }
.footer-contact a { color: var(--seafoam); }
.footer-contact a:hover { color: white; }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-licenses { font-size: 12px !important; opacity: 0.5; letter-spacing: 0.5px; }

/* ==========================================================================
   PAGE HEADERS (inner pages)
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, var(--deep-ocean), var(--ocean));
  padding: 160px 24px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover; background-position: center;
  opacity: 0.15;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 40 Q360 0 720 40 Q1080 80 1440 40 V80 H0Z' fill='white'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: 100% 80px;
}
.page-header h1 {
  font-family: 'Source Serif 4', serif;
  font-size: 48px; color: white; margin-bottom: 12px;
  position: relative; z-index: 2;
}
.page-header p {
  font-size: 18px; color: rgba(255,255,255,0.8);
  position: relative; z-index: 2;
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */
.service-detail {
  padding: 80px 0;
}
.service-detail:nth-child(even) { background: var(--sand); }
.service-detail-inner {
  display: flex; gap: 60px; align-items: center;
}
.service-detail:nth-child(even) .service-detail-inner {
  flex-direction: row-reverse;
}
.service-detail-img {
  flex: 0 0 480px; height: 360px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gray-100), var(--gray-300));
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); font-size: 14px;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-detail-text { flex: 1; }
.service-detail-text h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 36px; color: var(--deep-ocean); margin-bottom: 16px;
}
.service-detail-text p {
  font-size: 16px; color: var(--gray-600); line-height: 1.85; margin-bottom: 16px;
}
.service-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 24px;
}
.feature-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--deep-ocean);
}
.feature-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--seafoam));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-check svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 3; }

/* ==========================================================================
   PROJECTS PAGE
   ========================================================================== */
.projects-intro {
  padding: 60px 0; text-align: center;
}
.projects-intro p {
  font-size: 18px; color: var(--gray-600); max-width: 640px; margin: 0 auto;
}
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding: 0 0 100px;
}
.project-card {
  border-radius: var(--radius); overflow: hidden;
  background: white; box-shadow: var(--shadow);
  transition: all 0.4s;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-thumb {
  height: 240px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-300));
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); font-size: 14px;
  overflow: hidden;
}
.project-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.project-card:hover .project-thumb img { transform: scale(1.05); }
.project-info { padding: 24px; }
.project-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--deep-ocean); }
.project-info p { font-size: 14px; color: var(--gray-600); }
.project-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--ocean); background: rgba(19,88,140,0.08);
  padding: 4px 12px; border-radius: var(--radius-pill);
  margin-top: 12px;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-full { padding: 80px 0; }
.about-full-inner { display: flex; gap: 60px; align-items: flex-start; }
.about-full-img {
  flex: 0 0 400px; height: 480px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gray-100), var(--gray-300));
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); font-size: 14px; position: sticky; top: 100px;
  overflow: hidden;
}
.about-full-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-full-text { flex: 1; }
.about-full-text h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 36px; color: var(--deep-ocean); margin-bottom: 20px;
}
.about-full-text p {
  font-size: 16px; color: var(--gray-600); line-height: 1.85; margin-bottom: 20px;
}

.licenses-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 32px;
}
.license-card {
  background: var(--sand); border-radius: var(--radius-sm);
  padding: 20px; display: flex; align-items: center; gap: 14px;
}
.license-badge {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--seafoam));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.license-badge svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 2; }
.license-card strong { display: block; font-size: 14px; color: var(--deep-ocean); }
.license-card span { font-size: 12px; color: var(--gray-600); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-section { padding: 80px 0 100px; }
.contact-inner { display: flex; gap: 60px; }
.contact-form-wrap { flex: 1; }
.contact-form-wrap h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 32px; color: var(--deep-ocean); margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: 16px; color: var(--gray-600); margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--deep-ocean); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; color: var(--deep-ocean);
  transition: border-color 0.3s;
  background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--sky);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-info-side {
  flex: 0 0 360px;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--deep-ocean), var(--ocean));
  border-radius: var(--radius); padding: 40px;
  color: white;
}
.contact-info-card h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 28px;
}
.contact-info-item {
  display: flex; gap: 14px; margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--seafoam); fill: none; stroke-width: 2; }
.contact-info-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-info-item p, .contact-info-item a {
  font-size: 14px; color: rgba(255,255,255,0.7);
}
.contact-info-item a:hover { color: var(--seafoam); }
.contact-hours {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.contact-hours h4 {
  font-size: 14px; font-weight: 700; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 1px;
}
.contact-hours p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .section-heading { font-size: 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { flex-direction: column; }
  .about-image { flex: none; width: 100%; }
  .about-image-placeholder { height: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { flex-direction: column !important; }
  .service-detail-img { flex: none; width: 100%; }
  .contact-inner { flex-direction: column; }
  .contact-info-side { flex: none; width: 100%; }
  .about-full-inner { flex-direction: column; }
  .about-full-img { flex: none; width: 100%; height: 300px; position: static; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .licenses-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute;
    top: 100%; left: 0; right: 0;
    background: white; flex-direction: column;
    padding: 24px; gap: 16px;
    box-shadow: 0 8px 30px rgba(11,37,69,0.1);
  }
  .nav-links.open { display: flex; }
  .hero { min-height: auto; padding: 120px 24px 80px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .section { padding: 60px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .stat-row { flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .page-header { padding: 120px 24px 60px; }
  .page-header h1 { font-size: 36px; }
}