    /* =====================================================
       Glick's Construction Inc. - Landing Page Styles
       Built with HTML, CSS, and Bootstrap 5
       Edit colors and fonts below to match your brand.
       ===================================================== */

    :root {
      /* EDITABLE: Brand Colors */
      --accent-color: #d97706;        /* Deep construction orange / amber */
      --accent-dark: #b45309;         /* Darker hover shade of accent */
      --accent-light: #f59e0b;        /* Lighter gold/tan accent for highlights */
      --charcoal: #1f2937;            /* Dark charcoal text/headings */
      --dark-bg: #111827;             /* Footer and dark section backgrounds */
      --light-bg: #f8fafc;            /* Light gray section background */
      --white: #ffffff;
      --muted-text: #64748b;          /* Muted body text */
      --border-color: #e2e8f0;

      /* EDITABLE: Fonts */
      --font-heading: 'Montserrat', sans-serif;
      --font-body: 'Open Sans', sans-serif;
    }

    body {
      font-family: var(--font-body);
      color: var(--charcoal);
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 700;
    }

    a {
      text-decoration: none;
    }

    /* Buttons */
    .btn-accent {
      background-color: var(--accent-color);
      border: 2px solid var(--accent-color);
      color: var(--white);
      font-weight: 700;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      transition: all 0.25s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .btn-accent:hover,
    .btn-accent:focus {
      background-color: var(--accent-dark);
      border-color: var(--accent-dark);
      color: var(--white);
    }

    .btn-outline-accent {
      border: 2px solid var(--accent-color);
      color: var(--accent-color);
      font-weight: 700;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      transition: all 0.25s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .btn-outline-accent:hover,
    .btn-outline-accent:focus {
      background-color: var(--accent-color);
      color: var(--white);
    }

    .btn-dark {
      background-color: var(--dark-bg);
      border: 2px solid var(--dark-bg);
      color: var(--white);
      font-weight: 700;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      transition: all 0.25s ease;
    }

    .btn-dark:hover,
    .btn-dark:focus {
      background-color: var(--charcoal);
      border-color: var(--charcoal);
      color: var(--white);
    }

    /* Navbar */
    .navbar {
      background-color: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
      padding-top: 1rem;
      padding-bottom: 1rem;
    }

    .navbar-brand {
      font-family: var(--font-heading);
      font-weight: 800;
      color: var(--charcoal);
      font-size: 1.4rem;
      display: inline-flex;
      align-items: center;
      padding: 0;
    }

    .navbar-brand img {
      /* EDITABLE: Logo height in the navigation bar */
      height: 40px;
      width: auto;
      max-width: 300px;
      display: block;
    }


    @media (max-width: 1197px) {
      .navbar-brand img {
        /* Smaller logo on mobile */
        height: 42px;
      }
    }

    .navbar-brand span {
      color: var(--accent-color);
    }

    .navbar-nav .nav-link {
      font-weight: 600;
      color: var(--charcoal);
      margin-left: 0.5rem;
      margin-right: 0.5rem;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--accent-color);
    }

        .nav-phone {
          font-weight: 700;
          color: var(--accent-color) !important;
          white-space: nowrap;
        }

    /* Mobile Call Bar (visible only on small screens) */
    .mobile-call-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1030;
      background-color: var(--dark-bg);
      padding: 0.75rem 1rem;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    }

    .mobile-call-bar a {
      color: var(--white);
      font-weight: 700;
    }

    @media (max-width: 767px) {
      .mobile-call-bar {
        display: flex;
      }
      body {
        padding-bottom: 4rem;
      }
    }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      padding: 6rem 1rem;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('Images/glick_house_back.jpg') center/cover no-repeat;
      /* EDITABLE: Replace the URL above with your own hero image file or URL. */
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(17, 24, 39, 0.5) 0%, rgba(17, 24, 39, 0.6) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .hero-tagline {
      color: var(--accent-light);
      font-family: var(--font-heading);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }

    .hero h1 {
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.25rem;
    }

    .hero p.lead {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      opacity: 0.95;
    }

    .hero .btn {
      margin: 0.35rem;
    }

    @media (max-width: 767px) {
      .hero h1 {
        font-size: 2.1rem;
      }
      .hero p.lead {
        font-size: 1.05rem;
      }
    }

    /* Section styling */
    section {
      padding: 5rem 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-size: 2.25rem;
      margin-bottom: 0.75rem;
      color: var(--charcoal);
    }

    .section-title .accent-line {
      width: 60px;
      height: 4px;
      background-color: var(--accent-color);
      margin: 0 auto 1rem;
      border-radius: 2px;
    }

    .section-title p {
      color: var(--muted-text);
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
    }

    .bg-light-section {
      background-color: var(--light-bg);
    }

    .bg-dark-section {
      background-color: var(--dark-bg);
      color: var(--white);
    }

    .bg-dark-section .section-title h2,
    .bg-dark-section h2,
    .bg-dark-section h3 {
      color: var(--white);
    }

    .bg-dark-section .section-title p {
      color: #cbd5e1;
    }

    /* Service Cards */
    .service-card {
      background: var(--white);
      border-radius: 0.75rem;
      padding: 2rem 1.5rem;
      text-align: center;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      height: 100%;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background-color: rgba(217, 119, 6, 0.1);
      color: var(--accent-color);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      margin-bottom: 1.25rem;
    }

    .service-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }

    .service-card p {
      color: var(--muted-text);
      margin-bottom: 0;
    }

    /* Why Choose Us */
    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .feature-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: var(--accent-color);
      color: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
    }

    .feature-item h4 {
      font-size: 1.15rem;
      margin-bottom: 0.25rem;
    }

    .feature-item p {
      color: var(--muted-text);
      margin-bottom: 0;
    }

    /* Gallery */
    .gallery-item {
      position: relative;
      border-radius: 0.75rem;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
      color: var(--white);
      padding: 1.5rem 1rem 1rem;
      font-weight: 700;
    }

    .placeholder-img {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted-text);
      font-size: 3rem;
    }

    /* Testimonials */
    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--border-color);
      border-radius: 0.75rem;
      padding: 2rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
      height: 100%;
    }

    .testimonial-card .stars {
      color: var(--accent-light);
      margin-bottom: 1rem;
    }

    .testimonial-card p {
      font-size: 1.05rem;
      font-style: italic;
      color: var(--charcoal);
      margin-bottom: 1.25rem;
    }

    .testimonial-author {
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 0.25rem;
    }

    .testimonial-location {
      color: var(--muted-text);
      font-size: 0.9rem;
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--white);
      border: 1px solid var(--border-color);
      border-radius: 0.5rem;
      padding: 0.75rem 1.25rem;
      font-weight: 700;
      color: var(--charcoal);
      margin: 0.35rem;
    }

    .trust-badge i {
      color: var(--accent-color);
      font-size: 1.25rem;
    }

    /* Contact Section */
    .contact-form {
      background: var(--white);
      padding: 2.5rem;
      border-radius: 0.75rem;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .contact-info-icon {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: rgba(217, 119, 6, 0.1);
      color: var(--accent-color);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
    }

    .contact-info-item h5 {
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
    }

    .contact-info-item p {
      color: var(--muted-text);
      margin-bottom: 0;
    }

    .contact-info-item a {
      color: var(--accent-color);
      font-weight: 600;
    }

    .map-placeholder {
      width: 100%;
      height: 320px;
      background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted-text);
      flex-direction: column;
      border: 1px solid var(--border-color);
    }

    .form-label {
      font-weight: 600;
    }

    .form-control:focus {
      border-color: var(--accent-color);
      box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.25);
    }

    /* Footer */
    footer {
      background-color: var(--dark-bg);
      color: #cbd5e1;
      padding: 4rem 0 1.5rem;
    }

    footer h4 {
      color: var(--white);
      font-size: 1.25rem;
      margin-bottom: 1.25rem;
    }

    footer a {
      color: #cbd5e1;
      transition: color 0.2s ease;
    }

    footer a:hover {
      color: var(--accent-color);
    }

    footer ul {
      list-style: none;
      padding: 0;
    }

    footer ul li {
      margin-bottom: 0.5rem;
    }

    footer .footer-brand {
      font-family: var(--font-heading);
      font-weight: 800;
      color: var(--white);
      font-size: 1.5rem;
    }

    footer .footer-brand span {
      color: var(--accent-color);
    }

    footer .footer-phone {
      color: var(--accent-color);
      font-weight: 700;
      font-size: 1.25rem;
    }

    footer .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--white);
      margin-right: 0.5rem;
      transition: background-color 0.2s ease;
    }

    footer .social-icons a:hover {
      background-color: var(--accent-color);
      color: var(--white);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 3rem;
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.9rem;
    }

    /* Utilities */
    .text-accent {
      color: var(--accent-color) !important;
    }

    .fw-800 {
      font-weight: 800 !important;
    }
