/*
Template Name: Exterior
Author: Partha

*/

:root {
    --teal: #007A6E;
    --teal-dark: #005C52;
    --teal-light: #E1F5EE;
    --teal-mid: #009B8C;
    --orange: #E85D04;
    --orange-light: #FFF3EC;
    --white: #ffffff;
    --off-white: #F7F9F8;
    --text: #1A2421;
    --text-muted: #4A5C58;
    --border: #D4E5E2;
    --radius: 8px;
    --radius-lg: 16px;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    background: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .nav-logo-text {
    font-family: var(--font-head);
    font-size: 22px;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.1;
  }
  .nav-logo-sub {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    width:35%;
  }
  .nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: var(--radius);
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #c94f02 !important; }

  /* HERO */
  .hero {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #009B8C 100%);
    padding: 70px 5% 80px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }
  .hero::after {
    content: '';
    position: absolute;
    left: -60px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
  }
   .hero-badge::before {
    content: '★';
    color: #FFD700;
  }
  .hero h1 {
    font-family: var(--font-head);
    font-size: 68px;
    line-height: 0.95;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
    text-transform: uppercase;
  }
  .hero h1 span { color: #FFD700; }
  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 34px;
    max-width: 480px;
    font-weight: 400;
  }
  .hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
  }
  .hero-stat {
    text-align: left;
  }
  .hero-stat-num {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin-top: 3px;
  }
  .hero-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover { background: #c94f02; transform: translateY(-1px); }
  .btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: background 0.2s;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.25); }

  /* FORM CARD */
  .hero-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
  }
  .form-header {
    background: var(--teal);
    margin: -32px -28px 24px;
    padding: 20px 28px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .form-header h3 {
    font-family: var(--font-head);
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .form-header p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
  }
  .form-group {
    margin-bottom: 14px;
  }
  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
  }
  .form-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus { border-color: var(--teal); }
  .form-group input::placeholder { color: #aab5b3; }
  .form-submit {
    width: 100%;
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 6px;
  }
  .form-submit:hover { background: #c94f02; transform: translateY(-1px); }
  .form-guarantee {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .form-guarantee::before { content: '🔒'; font-size: 13px; }

  /* TRUST BAR */
  .trust-bar {
    background: var(--text);
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
  }
  .trust-icon {
    width: 32px;
    height: 32px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
  }

  /* SECTION BASE */
  section { padding: 80px 5%; }
  .section-tag {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .section-title {
    font-family: var(--font-head);
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: -0.3px;
  }
  .section-title span { color: var(--teal); }
  .section-sub {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 520px;
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .service-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    background: var(--white);
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,122,110,0.12); }
  .service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }
  .service-img-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
  }
  .service-body {
    padding: 20px;
  }
  .service-icon {
    width: 44px;
    height: 44px;
    background: var(--teal-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
  }
  .service-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text);
  }
  .service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 14px;
  }
  .service-link::after { content: '→'; }

  /* WHY CHOOSE US */
  .why-section { background: var(--off-white); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
  }
  .why-img-wrap {
    position: relative;
  }
  .why-img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    height: 460px;
    object-fit: cover;
  }
  .why-badge-float {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--orange);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    text-align: center;
  }
  .why-badge-num {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
  }
  .why-badge-label {
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.9;
  }
  .why-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    transition: border-color 0.2s;
  }
  .why-point:hover { border-color: var(--teal); }
  .why-point-icon {
    width: 46px;
    height: 46px;
    background: var(--teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    color: var(--white);
  }
  .why-point-title {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .why-point-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* PROJECTS */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  .project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #e0eeec;
  }
  .project-card:first-child {
    grid-row: span 2;
  }
  .project-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
  }
  .project-card:first-child .project-img { height: 100%; min-height: 400px; }
  .project-card:hover .project-img { transform: scale(1.04); }
  .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,40,35,0.85));
    padding: 40px 18px 18px;
    color: var(--white);
  }
  .project-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFD700;
    margin-bottom: 4px;
  }
  .project-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .projects-cta {
    text-align: center;
    margin-top: 40px;
  }

  /* REVIEWS */
  .reviews-section { background: var(--teal-dark); }
  .reviews-section .section-title { color: var(--white); }
  .reviews-section .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
  .reviews-section .section-sub { color: rgba(255,255,255,0.7); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .review-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
  }
  .review-stars {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }
  .review-text {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    line-height: 1.65;
    margin-bottom: 18px;
    font-style: italic;
  }
  .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
  }
  .review-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
  }
  .review-location {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
  }
  .review-google {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
  }

  /* FREE INSPECTION STRIP */
  .inspection-strip {
    background: var(--orange);
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
  }
  .inspection-strip h2 {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
  }
  .inspection-strip p {
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    margin-top: 10px;
  }
  .btn-white {
    background: var(--white);
    color: var(--orange);
    padding: 16px 36px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: transform 0.15s;
    white-space: nowrap;
  }
  .btn-white:hover { transform: translateY(-2px); }

  /* FINANCING */
  .financing-section {
    background: var(--off-white);
    text-align: center;
  }
  .financing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .financing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1.5px solid var(--border);
    text-align: left;
  }
  .financing-card-icon {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .financing-card-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--teal-dark);
  }
  .financing-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* CONTACT SECTION */
  .contact-section {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 480px;
  }
  .contact-left {
    background: var(--teal-dark);
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-left h2 {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
  }
  .contact-left p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    margin-bottom: 36px;
  }
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
  }
  .contact-info-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .contact-info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    margin-bottom: 3px;
  }
  .contact-info-value {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
  }
  .contact-right {
    padding: 60px 50px;
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-right h3 {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .contact-right p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
  }

  /* FOOTER */
  footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 40px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .footer-brand {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }
  .footer-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 240px;
  }
  .footer-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
  }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 8px; }
  footer ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  footer ul a:hover { color: var(--white); }
  .footer-bottom {
    background: #0f1918;
    text-align: center;
    padding: 16px 5%;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
  }

  /* PHONE FLOAT */
  .phone-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--teal);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 40px;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,122,110,0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .phone-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,122,110,0.5);
  }
  .phone-float-icon { font-size: 20px; }

  /* GAF CERT BADGE */
  .gaf-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    border: 2px solid #FFD700;
    border-radius: var(--radius);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #856404;
    letter-spacing: 0.3px;
    margin-bottom: 28px;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content { animation: fadeUp 0.6s ease forwards; }
  .hero-form { animation: fadeUp 0.6s ease 0.15s forwards; opacity: 0; }

  /* RESPONSIVE — simple */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero h1 { font-size: 48px; }
    .hero-form { max-width: 500px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .why-img-wrap { display: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid .project-card:first-child { grid-row: auto; }
    .contact-section { grid-template-columns: 1fr; }
    .inspection-strip { grid-template-columns: 1fr; text-align: center; }
    footer { grid-template-columns: 1fr; }
    .financing-cards { grid-template-columns: 1fr; }
    nav ul { display: none; }
  }
  
  @media (max-width: 767px) {
      .hero {
        display: flex;
        flex-direction: column-reverse;
      }
    }