@charset "utf-8";
/* CSS Document */

/* Import DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');


:root {
  /* Colors */
--primary: #2655a6;
    --secondary: #113f8d;
    --dark: #1a1e21;
    --light: #e3ebf3;
    --gray: #6c7a88;
  
  /* Typography */
   --heading-font: 'Industry', sans-serif;
    --body-font: 'DM Sans', sans-serif;
  
  /* Spacing */
  --section-padding: 5rem;
  --section-padding-sm: 3rem;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.4s ease;
}

/* Base Styles */
body {
  font-family: var(--body-font);
  line-height: 1.5;
  color: var(--dark);
  overflow-x: hidden;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
}

.display-1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.display-2 {
  font-size: 3rem;
  font-weight: 600;
}

.display-3 {
  font-size: 2.5rem;
}

.section-title {
  font-family: var(--heading-font);
    font-weight: 600;
    font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Buttons */
.btn {
  font-family: var(--body-font);
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: white;
  color: white;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary);
}

/* Sections */
section {
  padding: var(--section-padding) 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-text {
  font-size: 1.5rem;
  margin: 2rem 0;
}

/* Services Section */
.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.service-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-medium);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  padding: 1.5rem;
}

/* Manufacturers Section */
.manufacturers-section {
  background: #f8f9fa;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.logo-item img {
  max-width: 120px;
  height: auto;
  filter: grayscale(100%);
  transition: filter var(--transition-fast);
}

.logo-item:hover img {
  filter: grayscale(0%);
}

/* Contact Form */
.contact-form .form-control {
	font-family: var(--body-font);
  height: 54px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.contact-form textarea.form-control {
  height: auto;
  min-height: 150px;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--light);
  padding: 2rem 0;
}

.site-footer a {
  color: var(--light);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --section-padding: 4rem;
  }
  
  .display-1 {
    font-size: 3.5rem;
  }
  
  .display-2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 3rem;
  }
  
  .hero-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 2.5rem;
  }
  
  .display-1 {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: 500px;
  }
}

@media (max-width: 576px) {
  .display-1 {
    font-size: 2.5rem;
  }
  
  .hero-text {
    font-size: 1.5rem;
  }
  
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Form Styles */
.contact-form {
    position: relative;
}

.form-messages {
    margin: 1rem 0;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Honeypot field - using multiple techniques to hide */
.d-none {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}


/* Add this to your CSS file (style.css) */
@media (max-width: 991.98px) {
  /* Always show dropdown menu in mobile view */
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    display: block !important; /* Always display */
    padding-left: 15px; /* Indent the submenu items */
  }
  
  /* Hide dropdown toggles on mobile since we always show the menu */
  .navbar-nav .dropdown-toggle::after {
    display: none;
  }
  
  /* Optionally style the dropdown items differently for mobile */
  .navbar-nav .dropdown-item {
    padding: 0.5rem 1rem;
    color: rgba(0, 0, 0, 0.8);
  }
  
  /* If you want to visually show that it's a submenu, add some styling */
  .navbar-nav .dropdown-menu:before {
    content: "";
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 5px 0;
  }
}

/* Special handling for ultra-narrow screens like Z Fold front display */
@media (max-width: 300px) {
  .navbar-collapse {
    width: 85%; /* Slightly narrower menu */
  }
  
  /* Adjust any other elements that might be problematic */
}


/* Extended form checkbox styling */
.checkbox-group-extended {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.checkbox-group-extended .form-check {
    display: flex;
    align-items: center;
}

.checkbox-group-extended .form-check-input {
    margin-right: 8px;
}

.checkbox-group-extended .form-check-label {
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
}

/* Special styling for the FREE inspection option */
.free-inspection-label {
    color: var(--primary) !important;
    font-weight: 700 !important;
    font-size: 1.05em;
}

.free-inspection-label strong {
    font-weight: 800;
}

/* If you want to make it even more prominent, you can add these optional styles */
/*
.free-inspection-label {
    background: linear-gradient(135deg, var(--primary), #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
*/

.free-inspection-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.free-inspection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.inspection-content {
    position: relative;
    z-index: 1;
}

.free-inspection-section .section-title {
    color: var(--primary);
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-align: left;
}

.free-inspection-section .section-subtitle {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.inspection-intro {
    margin-bottom: 2.5rem;
}

.inspection-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
}

.inspection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.inspection-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.inspection-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.inspection-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.inspection-text strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.inspection-text p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.inspection-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.inspection-cta .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    margin-bottom: 1rem;
}

.cta-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.inspection-image-wrapper {
    position: relative;
    text-align: center;
}

.inspection-image-wrapper img {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    height: auto;
}

.inspection-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
}

.badge-subtext {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .free-inspection-section .section-title {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .inspection-grid {
        grid-template-columns: 1fr;
    }
    
    .inspection-image-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .free-inspection-section .section-title {
        font-size: 2.25rem;
    }
    
    .inspection-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .inspection-icon {
        align-self: center;
    }
    
    .inspection-badge {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .free-inspection-section .section-title {
        font-size: 2rem;
    }
    
    .inspection-cta {
        padding: 1.5rem;
    }
    
    .inspection-cta .btn {
        width: 100%;
        padding: 1rem;
    }
}

/* Summer Offers Section Styles */
.summer-offers-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #e3f2fd 100%);
    position: relative;
}

.summer-offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="summer-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%232655a6" opacity="0.05"/><circle cx="10" cy="10" r="1" fill="%23113f8d" opacity="0.03"/><circle cx="50" cy="50" r="1" fill="%23113f8d" opacity="0.03"/></pattern></defs><rect width="60" height="60" fill="url(%23summer-pattern)"/></svg>') repeat;
    pointer-events: none;
}

.summer-offers-section .section-title {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.summer-offers-section .section-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offers-grid {
    margin-bottom: 3rem;
}

.offer-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
    height: 100%;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.offer-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

/* Badge Styles */
.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: white;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    animation: pulse-offer 2s ease-in-out infinite;
    z-index: 2;
}

.windows-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.siding-badge {
    background: linear-gradient(135deg, #fd7e14, #e83e8c);
}

.gutters-badge {
    background: linear-gradient(135deg, #6f42c1, #6610f2);
}

.badge-text {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

.badge-subtext {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    font-weight: 600;
}

@keyframes pulse-offer {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Content Styles */
.offer-content {
    padding: 1.5rem;
}

.offer-content h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.offer-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.offer-highlight i {
    font-size: 1.1rem;
}

.offer-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.offer-benefits i {
    color: var(--primary);
    font-size: 0.9rem;
    width: 16px;
}

/* CTA Section */
.offers-cta {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.offers-cta h3 {
    color: var(--dark);
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.offers-cta .btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(38, 85, 166, 0.3);
}

.urgency-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e83e8c;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(232, 62, 140, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(232, 62, 140, 0.2);
}

.urgency-note i {
    animation: tick 1s ease-in-out infinite;
}

@keyframes tick {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .summer-offers-section .section-title {
        font-size: 2.5rem;
    }
    
    .offer-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .summer-offers-section .section-title {
        font-size: 2.25rem;
    }
    
    .offer-badge {
        top: 10px;
        right: 10px;
        padding: 0.5rem 1rem;
    }
    
    .badge-text {
        font-size: 1rem;
    }
    
    .badge-subtext {
        font-size: 0.7rem;
    }
    
    .offer-image {
        height: 180px;
    }
    
    .offers-cta {
        padding: 2rem 1rem;
    }
    
    .offers-cta h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .offers-cta .btn {
        width: 100%;
        font-size: 1rem;
    }
    
    .urgency-note {
        font-size: 0.85rem;
        text-align: center;
    }
}

/* Special hover effects for different offer types */
.windows-offer:hover {
    box-shadow: 0 16px 48px rgba(40, 167, 69, 0.2);
}

.siding-offer:hover {
    box-shadow: 0 16px 48px rgba(253, 126, 20, 0.2);
}

.gutters-offer:hover {
    box-shadow: 0 16px 48px rgba(111, 66, 193, 0.2);
}
