/* CSS reset and base */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --red-primary: #8B0000;
      --red-mid: #B22222;
      --red-dark: #5C0000;
      --red-shadow: #2C0000;
      --white: #FFFFFF;
      --off-white: #FDF5F5;
      --light-grey: #F4EEEE;
      --text-dark: #1A0000;
      --text-mid: #4A1010;
      --text-muted: #888888;
      --border: rgba(139,0,0,0.20);
      --red-glow: 0 4px 24px rgba(139,0,0,0.18);
      
      --font-heading: 'Cormorant Garamond', serif;
      --font-nav: 'Montserrat', sans-serif;
      --font-body: 'Lato', sans-serif;
    }
    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background-color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      color: var(--red-primary);
    }
    a { text-decoration: none; }
    ul { list-style: none; }
    .btn {
      font-family: var(--font-nav);
      display: inline-block;
      text-align: center;
      cursor: pointer;
      border-radius: 6px;
      transition: all 0.3s ease;
      font-weight: 600;
      padding: 12px 24px;
      font-size: 13px;
    }
    .btn-red-solid {
      background-color: var(--red-primary);
      color: var(--white);
      border: 1px solid var(--red-primary);
    }
    .btn-red-solid:hover {
      background-color: var(--red-mid);
      border-color: var(--red-mid);
    }
    .btn-red-outline {
      background-color: transparent;
      color: var(--red-primary);
      border: 1px solid var(--red-primary);
    }
    .btn-red-outline:hover {
      background-color: var(--red-primary);
      color: var(--white);
    }
    .btn-white-solid {
      background-color: var(--white);
      color: var(--red-primary);
      border: 1px solid var(--white);
    }
    .btn-white-solid:hover {
      box-shadow: var(--red-glow);
      transform: translateY(-2px);
    }
    .btn-white-outline {
      background-color: transparent;
      color: var(--white);
      border: 1px solid var(--white);
    }
    .btn-white-outline:hover {
      background-color: var(--white);
      color: var(--red-primary);
    }

    /* Section 1 - Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: var(--white);
      border-bottom: 2px solid var(--red-primary);
      z-index: 1000;
      transition: box-shadow 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 5%;
    }
    .navbar.scrolled {
      box-shadow: 0 2px 20px rgba(139,0,0,0.10);
    }
    .nav-logo {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-logo img { height: auto; max-height: 120px; display: block; }
    .logo-text-1 {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 700;
      color: var(--red-primary);
      line-height: 1;
    }
    .logo-text-2 {
      font-family: var(--font-nav);
      font-size: 11px;
      color: var(--red-dark);
      letter-spacing: 4px;
    }
    
    /* Navbar Logo Image */
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo-img { width: 256px; height: auto; object-fit: contain; flex-shrink: 0; }
    .nav-logo-text { display: none; }
    @media (max-width: 768px) {
      .nav-logo-img { width: 144px; height: auto; }
    }

    .nav-links {
      display: flex;
      gap: 30px;
    }
    .nav-links a {
      font-family: var(--font-nav);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-dark);
      position: relative;
      font-weight: 500;
      padding-bottom: 5px;
      transition: color 0.3s ease;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--red-primary);
      transition: width 0.3s ease;
    }
    .nav-links a:hover {
      color: var(--red-primary);
    }
    .nav-links a:hover::after, .nav-links a.active::after {
      width: 100%;
    }
    .nav-links a.active {
      color: var(--red-primary);
      font-weight: 700;
    }
    .nav-ctas {
      display: flex;
      gap: 15px;
    }
    .hamburger {
      display: none;
      font-size: 24px;
      color: var(--red-primary);
      cursor: pointer;
    }

    /* Mobile Nav Overlay */
    .mobile-nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: var(--white);
      z-index: 999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transform: translateX(100%);
      transition: transform 0.4s ease;
    }
    .mobile-nav-overlay.open {
      transform: translateX(0);
    }
    .mobile-nav-overlay a {
      font-family: var(--font-nav);
      font-size: 20px;
      color: var(--red-primary);
      margin: 15px 0;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    .mobile-nav-close {
      position: absolute;
      top: 25px;
      right: 5%;
      font-size: 30px;
      color: var(--red-primary);
      cursor: pointer;
    }

    /* Section 2 - Hero */
    .aura-hero {
      position: relative; margin-top: 100px; min-height: 85vh; display: flex; align-items: center;
    }
    .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; background-size: cover; background-position: center; }
    .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%); }
    .hero-container { position: relative; z-index: 3; max-width: 1300px; margin: 0 auto; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 40px; }
    .hero-text-col { flex: 1; color: var(--white); }
    .hero-badge { display: inline-block; background-color: var(--red-primary); color: var(--white); font-family: var(--font-nav); font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 4px; letter-spacing: 1px; margin-bottom: 20px; }
    .hero-text-col h1 { font-size: 64px; color: var(--white); font-weight: 700; line-height: 1.1; margin-bottom: 15px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
    .hero-sub { font-size: 20px; color: rgba(255,255,255,0.9); margin-bottom: 40px; font-weight: 300; }
    .hero-highlights { display: flex; gap: 20px; flex-wrap: wrap; }
    .hl-box { background: rgba(255,255,255,0.1); border-left: 4px solid var(--red-primary); padding: 15px 20px; backdrop-filter: blur(5px); display: flex; flex-direction: column; min-width: 140px; }
    .hl-val { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--white); line-height: 1.2; }
    .hl-lbl { font-family: var(--font-nav); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); }

    .hero-form-col { width: 380px; flex-shrink: 0; }
    .lead-form-box { background-color: var(--white); padding: 40px 30px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-top: 5px solid var(--red-primary); }
    .lead-form-box h3 { font-size: 28px; margin-bottom: 5px; color: var(--text-dark); text-align: center; }
    .lead-form-box p { font-size: 14px; color: var(--text-muted); text-align: center; margin-bottom: 25px; }
    .lead-form-box input { width: 100%; padding: 14px 15px; margin-bottom: 15px; border: 1px solid var(--border); border-radius: 4px; font-family: var(--font-body); font-size: 14px; outline: none; }
    .lead-form-box input:focus { border-color: var(--red-primary); }
    .form-note { font-size: 11px !important; color: var(--text-muted) !important; margin-top: 15px !important; margin-bottom: 0 !important; }

    /* Section 3 - Search Bar */
    .search-bar-container {
      margin-top: -40px;
      position: relative;
      z-index: 10;
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
      background-color: var(--white);
      border-top: 4px solid var(--red-primary);
      box-shadow: var(--red-glow);
      border-radius: 8px;
      padding: 25px 30px;
    }
    .search-label {
      font-family: var(--font-nav);
      font-size: 11px;
      color: var(--red-primary);
      letter-spacing: 4px;
      display: block;
      margin-bottom: 15px;
      font-weight: 600;
    }
    .search-row {
      display: flex;
      gap: 15px;
      align-items: center;
    }
    .search-row select {
      flex: 1;
      padding: 12px 15px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--text-dark);
      border: 1px solid var(--red-primary);
      border-radius: 4px;
      background-color: var(--white);
      outline: none;
      cursor: pointer;
    }
    .search-row .btn-red-solid {
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 4px;
      white-space: nowrap;
    }

    /* Common Section Styles */
    section {
      padding: 80px 5%;
    }
    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-sublabel {
      font-family: var(--font-nav);
      font-size: 12px;
      color: var(--text-muted);
      letter-spacing: 4px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 10px;
    }
    .section-title {
      font-size: 44px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .section-divider {
      width: 60px;
      height: 3px;
      background-color: var(--red-primary);
      margin: 0 auto;
    }

    /* Section 4 - Categories */
    .categories {
      background-color: var(--white);
    }
    .category-grid {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .category-card {
      background-color: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 30px 20px;
      flex: 1;
      min-width: 144px;
      text-align: center;
      position: relative;
      transition: all 0.3s ease;
      overflow: hidden;
      cursor: pointer;
    }
    .category-card:hover {
      border-color: var(--red-primary);
      box-shadow: var(--red-glow);
      transform: translateY(-4px);
    }
    .category-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 8px;
      background-color: var(--red-primary);
    }
    .cat-icon {
      font-size: 40px;
      margin-bottom: 20px;
      display: block;
    }
    .category-card h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .category-card p {
      font-size: 14px;
      color: var(--text-mid);
      margin-bottom: 15px;
      line-height: 1.4;
      height: 40px; /* 2 lines approx */
    }
    .category-card .explore-link {
      font-family: var(--font-nav);
      font-size: 12px;
      color: var(--red-primary);
      font-weight: 700;
      position: relative;
    }
    .category-card .explore-link:hover {
      text-decoration: underline;
    }

    /* Our Story */
    .our-story { background-color: var(--white); }
    .story-container { display: flex; align-items: center; gap: 60px; max-width: 1200px; margin: 0 auto; }
    .story-left { width: 55%; }
    .story-sub { font-family: var(--font-nav); font-size: 11px; color: var(--red-primary); letter-spacing: 5px; display: block; margin-bottom: 15px; font-weight: 600; }
    .story-left h2 { font-size: 40px; color: var(--text-dark); line-height: 1.2; margin-bottom: 20px; }
    .story-divider { width: 60px; height: 3px; background-color: var(--red-primary); margin-bottom: 30px; }
    .story-left p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }
    .story-link { font-family: var(--font-nav); font-size: 13px; color: var(--red-primary); font-weight: 600; display: inline-block; margin-top: 10px; }
    .story-link:hover { text-decoration: underline; }

    .story-right { width: 45%; }
    .story-card { background-color: var(--white); border: 2px solid var(--red-primary); box-shadow: var(--red-glow); border-radius: 8px; padding: 50px 40px; text-align: center; position: relative; }
    .story-card::before { content: ''; position: absolute; top: 10px; left: 10px; right: -10px; bottom: -10px; border: 1px solid var(--border); border-radius: 8px; z-index: -1; }
    .sc-est { font-family: var(--font-nav); font-size: 12px; color: var(--red-primary); letter-spacing: 6px; font-weight: 600; display: block; }
    .sc-year { font-family: var(--font-heading); font-size: 88px; color: var(--red-primary); font-weight: 700; line-height: 1; margin: 10px 0; }
    .sc-divider { width: 40px; height: 1px; background-color: var(--border); margin: 15px auto; }
    .sc-brand { font-family: var(--font-nav); font-size: 13px; color: var(--text-dark); letter-spacing: 4px; font-weight: 600; margin-bottom: 30px; display: block; }
    .sc-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
    .sc-badge { background-color: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 6px 12px; font-family: var(--font-nav); font-size: 11px; color: var(--red-primary); font-weight: 500; }

    /* Section 5 - Featured Projects */
    .projects-section {
      background-color: var(--off-white);
    }
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .p-card {
      background-color: var(--white);
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      border-radius: 6px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, opacity 0.4s ease;
    }
    .p-card.hide {
      display: none;
    }
    .p-card:hover {
      box-shadow: var(--red-glow);
      transform: translateY(-4px);
    }
    
    /* Image Area */
    .p-image {
      height: 200px;
      background-color: var(--light-grey);
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }
    .p-icon {
      width: 0; height: 0;
      border-left: 25px solid transparent;
      border-right: 25px solid transparent;
      border-bottom: 35px solid var(--red-primary);
      opacity: 0.2;
      position: relative;
      z-index: 2;
    }
    .p-watermark {
      position: absolute;
      font-family: var(--font-heading);
      font-size: 40px;
      color: var(--red-primary);
      opacity: 0.10;
      font-weight: 700;
      white-space: nowrap;
      z-index: 1;
      text-transform: uppercase;
    }
    .badge-number {
      position: absolute;
      top: 15px; left: 15px;
      background-color: var(--white);
      color: var(--red-primary);
      font-family: var(--font-nav);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 8px;
      border-radius: 4px;
      z-index: 5;
    }
    .badge-status {
      position: absolute;
      top: 15px; right: 15px;
      color: var(--white);
      font-family: var(--font-nav);
      font-size: 10px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 12px;
      letter-spacing: 1px;
      z-index: 5;
    }
    .status-ongoing { background-color: var(--red-primary); }
    .status-completed { background-color: #4A4A4A; }
    .status-soldout { background-color: var(--text-muted); }

    /* Card Body */
    .p-body {
      padding: 22px;
      flex-grow: 1;
    }
    .p-type {
      font-family: var(--font-nav);
      font-size: 11px;
      color: var(--red-primary);
      letter-spacing: 3px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 8px;
    }
    .p-name {
      font-size: 24px;
      color: var(--text-dark);
      margin-bottom: 5px;
    }
    .p-loc {
      font-family: var(--font-nav);
      font-size: 12px;
      color: var(--red-primary);
    }
    .p-body hr {
      border: none;
      border-top: 1px solid var(--border);
      margin: 15px 0;
    }
    .p-price {
      font-size: 28px;
      color: var(--red-primary);
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1;
    }
    .p-chips {
      display: flex;
      gap: 8px;
      margin-bottom: 15px;
      flex-wrap: wrap;
    }
    .p-chip {
      background-color: var(--light-grey);
      color: var(--text-muted);
      font-family: var(--font-nav);
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 12px;
    }
    .p-desc {
      font-size: 14px;
      color: var(--text-mid);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.6;
    }

    /* Card Footer */
    .p-footer {
      background-color: var(--off-white);
      border-top: 1px solid var(--border);
      padding: 14px 22px;
      display: flex;
      gap: 10px;
    }
    .p-footer .btn {
      flex: 1;
      padding: 10px 0;
      font-size: 12px;
    }
    .view-all-container {
      text-align: center;
    }

    /* Section 6 - Why Choose Us */
    .why-us {
      background-color: var(--red-primary);
      color: var(--white);
    }
    .why-us .section-title {
      color: var(--white);
    }
    .why-us .section-sublabel {
      color: rgba(255,255,255,0.65);
    }
    .why-us .section-divider {
      background-color: var(--white);
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .why-card {
      background-color: var(--white);
      border-radius: 6px;
      padding: 30px;
      box-shadow: var(--red-glow);
      color: var(--text-dark);
    }
    .why-icon {
      font-size: 32px;
      margin-bottom: 15px;
      display: block;
    }
    .why-card h3 {
      font-family: var(--font-nav);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--red-primary);
    }
    .why-card p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.7;
    }

    /* Section 7 - Brochure Download */
    .brochure {
      background-color: var(--white);
    }
    .brochure-container {
      display: flex;
      max-width: 1100px;
      margin: 0 auto;
      gap: 50px;
      align-items: center;
    }
    .brochure-content {
      flex: 1;
    }
    .brochure-sub {
      font-family: var(--font-nav);
      font-size: 12px;
      color: var(--red-primary);
      letter-spacing: 2px;
      font-weight: 600;
      margin-bottom: 15px;
      display: block;
    }
    .brochure-content h2 {
      font-size: 40px;
      color: var(--text-dark);
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .brochure-content p {
      font-size: 15px;
      color: var(--text-mid);
      margin-bottom: 25px;
    }
    .brochure-list li {
      font-size: 15px;
      color: var(--text-dark);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .brochure-list li::before {
      content: '✓';
      color: var(--red-primary);
      font-weight: bold;
    }
    .brochure-form-card {
      flex: 1;
      background-color: var(--white);
      border-top: 4px solid var(--red-primary);
      box-shadow: var(--red-glow);
      padding: 35px;
      border-radius: 6px;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group input, .form-group select {
      width: 100%;
      padding: 12px 15px;
      font-family: var(--font-body);
      font-size: 14px;
      border: 1px solid var(--border);
      border-radius: 4px;
      outline: none;
    }
    .form-group input:focus, .form-group select:focus {
      border-color: var(--red-primary);
    }
    .brochure-form-card .btn {
      width: 100%;
      padding: 15px;
      font-size: 14px;
      margin-bottom: 15px;
    }
    .brochure-note {
      font-size: 12px;
      color: var(--text-muted);
      font-style: italic;
      text-align: center;
    }

    /* Section 8 - Testimonials */
    .testimonials {
      background-color: var(--off-white);
    }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .testi-card {
      background-color: var(--white);
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      border-left: 4px solid var(--red-primary);
      padding: 30px;
      border-radius: 6px;
      position: relative;
    }
    .quote-mark {
      font-family: var(--font-heading);
      font-size: 80px;
      color: var(--red-primary);
      opacity: 0.15;
      position: absolute;
      top: -10px; left: 15px;
      line-height: 1;
    }
    .testi-text {
      font-size: 15px;
      font-style: italic;
      line-height: 1.8;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }
    .testi-stars {
      color: var(--red-mid);
      font-size: 18px;
      margin-bottom: 10px;
    }
    .testi-name {
      font-family: var(--font-nav);
      font-size: 14px;
      color: var(--red-primary);
      font-weight: 700;
      margin-bottom: 5px;
    }
    .testi-prop {
      font-family: var(--font-nav);
      font-size: 11px;
      color: var(--text-muted);
    }

    /* Section 9 - FAQ */
    .faq-section {
      background-color: var(--white);
    }
    .faq-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
      margin-bottom: 10px;
    }
    .faq-question {
      padding: 15px 0;
      font-family: var(--font-nav);
      font-size: 14px;
      color: var(--text-dark);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 500;
    }
    .faq-question .icon {
      color: var(--red-primary);
      font-size: 20px;
      font-weight: 700;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.8;
      background-color: var(--white);
    }
    .faq-item.active {
      background-color: var(--off-white);
      border-left: 4px solid var(--red-primary);
      border-bottom: none;
      border-radius: 4px;
    }
    .faq-item.active .faq-question {
      color: var(--red-primary);
      font-weight: 700;
      padding-left: 15px;
      padding-right: 15px;
    }
    .faq-item.active .faq-answer {
      padding: 0 15px 15px 15px;
      max-height: 200px;
    }

    /* Section 10 - CTA Banner */
    .cta-banner {
      background-color: var(--red-dark);
      padding: 80px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 15px);
    }
    .cta-content {
      position: relative;
      z-index: 2;
    }
    .cta-banner h2 {
      font-size: 44px;
      color: var(--white);
      margin-bottom: 15px;
    }
    .cta-banner p {
      font-size: 16px;
      color: rgba(255,255,255,0.80);
      margin-bottom: 30px;
    }
    .cta-btns {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    /* Section 11 - Footer */
    .footer {
      background-color: var(--red-shadow);
      color: var(--white);
      border-top: 4px solid var(--red-primary);
    }
    .footer-top {
      padding: 60px 5%;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
    }
    .footer-col h4 {
      font-family: var(--font-nav);
      font-size: 12px;
      color: var(--red-mid);
      letter-spacing: 3px;
      margin-bottom: 20px;
    }
    .footer-brand img {
      height: 52px;
      margin-bottom: 15px;
      display: block;
    }
    .footer-brand .logo-text-1 { color: var(--white); }
    .footer-brand .logo-text-2 { color: var(--red-mid); }
    
    .footer-tagline {
      font-family: var(--font-heading);
      font-size: 16px;
      font-style: italic;
      margin-top: 10px;
      margin-bottom: 15px;
    }
    .footer-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .social-links {
      display: flex;
      gap: 15px;
    }
    .social-links a {
      color: var(--white);
      font-size: 13px;
      font-family: var(--font-nav);
      transition: color 0.3s;
    }
    .social-links a:hover {
      color: var(--red-mid);
    }
    .footer-col ul li {
      margin-bottom: 12px;
    }
    .footer-col ul a, .footer-col .contact-info p, .footer-col .contact-info a {
      font-size: 14px;
      color: var(--white);
      transition: color 0.3s;
    }
    .footer-col ul a:hover, .footer-col .contact-info a:hover {
      color: var(--red-mid);
    }
    .contact-info p {
      margin-bottom: 12px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .footer-bottom {
      background-color: var(--text-dark);
      padding: 20px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p {
      font-size: 12px;
      color: var(--text-muted);
    }
    .footer-links a {
      font-size: 12px;
      color: var(--red-mid);
      margin-left: 15px;
    }
    .footer-links a:hover {
      color: var(--white);
    }

    /* Floating Action Buttons */
    .fab-container {
      position: fixed;
      bottom: 30px;
      right: 30px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 1000;
    }
    .fab {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 20px;
      box-shadow: 0 4px 16px rgba(139,0,0,0.40);
      transition: transform 0.3s ease;
      text-decoration: none;
      position: relative;
    }
    .fab:hover {
      transform: scale(1.10);
    }
    .fab-call { background-color: var(--red-primary); }
    .fab-wa { background-color: var(--red-mid); }
    
    .pulse-ring {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 2px solid var(--red-mid);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.8; }
      100% { transform: scale(1.5); opacity: 0; }
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .hero-text-col h1 { font-size: 54px; }
    }
    @media (max-width: 1024px) {
      .hero-container { flex-direction: column; text-align: center; justify-content: center; padding-top: 40px; padding-bottom: 40px; }
      .hero-highlights { justify-content: center; }
      .story-container { flex-direction: column; gap: 40px; }
      .story-left, .story-right { width: 100%; }
    }
    @media (max-width: 992px) {
      .projects-grid { grid-template-columns: repeat(2, 1fr); }
      .testi-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .faq-container { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .brochure-container { flex-direction: column; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-ctas { display: none; }
      .hamburger { display: block; }
      .hero-text-col h1 { font-size: 40px; }
      .hero-form-col { width: 100%; max-width: 400px; margin: 0 auto; }
      .projects-grid { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .cta-btns { flex-direction: column; }
    }
