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

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

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

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

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

.hero-section .hero-text {
    margin: 2rem 0;
   font-family: var(--heading-font);
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1.2;
}

/* Guarantee Section */
.guarantee-section {
    background: #1a1e21;
    color: #ffffff;
    padding: 5rem 0;
}

.guarantee-section .section-title {
    color: #d48a06;
}

.guarantee-section .section-text {
    color: #e3ebf3;
    margin: 2rem 0;
}

.guarantee-section .guarantee-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.guarantee-section .guarantee-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.guarantee-section .guarantee-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d48a06;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--dark);
	 background-image: url("../images/asphalt.jpeg");  /* Add your texture image */
    background-blend-mode: overlay;  /* This helps blend the texture with the background color */
    background-size: repeat;          /* or 'repeat' if you want the texture to tile */
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);  /* Adjust opacity as needed */
}

.service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 400px;
}

.service-image {
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.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 0.3s ease;
    padding: 2rem;
}

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

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

.service-content {
	font-family: var(--heading-font);
    font-weight: 600;
    color: white;
    text-align: center;
}

.service-content h3 {
    margin-bottom: 1rem;
}

/* Quote CTA Section */
.quote-cta-section {
    background: #f1f1f1;
    padding: 4rem 0;
}

/* Testimonials Section */
.testimonials-section {
    background: #4b5158;
    padding: 5rem 0;
}

.testimonials-section .section-title {
    color: #ffffff;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.testimonial-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-content h4 {
    margin-bottom: 0.5rem;
	 font-family: var(--heading-font);
    font-weight: 600;
}

.testimonial-content .location {
    color: #6c7a88;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-content .quote {
    font-style: italic;
	font-family: var(--body-font);
    font-weight: 400;
}

/* Manufacturers Section */
.manufacturers-section {
    padding: 4rem 0;
    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 0.3s ease;
}

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

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #ffffff;
}

.contact-section .section-title {
    margin-bottom: 3rem;
}

.contact-form .form-control {
    height: 54px;
    padding: 0.75rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
}

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

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

/* Footer */
.site-footer {
    background: #2e3237;
    color: #e3ebf3;
    padding: 2rem 0;
}

.site-footer a {
    color: #e3ebf3;
    text-decoration: none;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-section .hero-content {
        max-width: 700px;
    }
	.hero-section .hero-text {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-section .hero-text {
        font-size: 1.25rem;
    }
    
    .service-card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-section .hero-text {
        font-size: 1.8rem;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        height: 300px;
    }
    
    .testimonial-card img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .service-card {
        height: 250px;
    }
}

/* Contact Map Section Styles */
.contact-map-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    color: white;
    font-size: 1.2rem;
}

.info-content h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.info-content p,
.info-content a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.info-content a:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .contact-info {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 350px;
    }
    
    .contact-item {
        gap: 1rem;
    }
}

/* About Page Specific Styles */
.about-hero {
    min-height: 60vh;
}

.about-section {
	padding: 5rem 0;
    background-color: var(--dark);
	 background-image: url("../images/asphalt.jpeg");  /* Add your texture image */
    background-blend-mode: overlay;  /* This helps blend the texture with the background color */
    background-size: repeat;          /* or 'repeat' if you want the texture to tile */
    position: relative;
}

.about-section .section-title {
	
	color: var(--light);
}

.about-section,
.about-owner-section,
.mission-section {
    padding: var(--section-padding) 0;
}

/* About Section Styles */
.about-content,
.owner-content,
.mission-content {
    padding: 2rem;
}

.about-text{
	font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light);
	
}

.owner-text,
.mission-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark);
}

.about-image,
.owner-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.about-image:hover img,
.owner-image:hover img {
    transform: scale(1.05);
}

/* Mission Section Styles */
.mission-section {
    background-color: var(--light);
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    margin: 2rem 0;
    padding: 1rem 0;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
}

.quote-author {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.service-content {
    padding: 2rem;
	color: var(--dark);
}

.service-content h3 {
    color: var(--primary);
    margin: 1.5rem 0 1rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-content,
    .owner-content,
    .mission-content,
    .service-content {
        padding: 1rem 0;
    }

    .about-image,
    .owner-image {
        margin: 2rem 0;
    }

    .quote {
        font-size: 1.25rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
    }

    .about-text,
    .owner-text,
    .mission-text {
        font-size: 1rem;
    }
}

/* Commercial Roofing Page Styles */

/* Intro Section */
.commercial-intro-section {
    padding: var(--section-padding) 0;
    background-color: var(--dark);
    color: white;
}

.commercial-intro-section .content-wrapper {
    padding: 2rem 0;
}

.commercial-intro-section .section-title {
    color: white;
    margin-bottom: 2rem;
}

.commercial-intro-section .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.commercial-intro-section .image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.commercial-intro-section .image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

.commercial-intro-section .image-wrapper:hover img {
    transform: scale(1.05);
}

/* Features Section */
.commercial-features-section {
    padding: var(--section-padding) 0;
    background-color: var(--light);
}

.commercial-features-section .section-title {
    margin-bottom: 1rem;
}

.commercial-features-section .section-subtitle {
    color: var(--primary);
    margin-bottom: 3rem;
    font-size: 1.5rem;
}

.features-row {
    margin-top: 2rem;
}

.feature-item {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: var(--primary);
    color: white;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: white;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .commercial-intro-section .content-wrapper {
        padding: 1rem 0;
        text-align: center;
    }
    
    .commercial-intro-section .image-wrapper {
        margin-top: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .commercial-intro-section .lead {
        font-size: 1.1rem;
    }
    
    .cta-section h3 {
        font-size: 1.75rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
}

/* Residential Roofing Page Styles */

/* Intro Section */
.residential-intro-section {
    padding: var(--section-padding) 0;
    background-color: var(--dark);
    color: white;
}

.residential-intro-section .content-wrapper {
    padding: 2rem 0;
}

.residential-intro-section .section-title {
    color: white;
    margin-bottom: 1rem;
}

.residential-intro-section .section-subtitle {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.residential-intro-section .section-tagline {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.residential-intro-section .intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.residential-intro-section .image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.residential-intro-section .image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

.residential-intro-section .image-wrapper:hover img {
    transform: scale(1.05);
}

/* Testimonial Section */
.testimonial-highlight-section {
    padding: 4rem 0;
    background-color: var(--light);
}

.testimonial-quote {
    font-size: 1.75rem;
    font-style: italic;
    color: var(--primary);
    margin: 0;
    padding: 0;
}

.testimonial-author {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* Services Section */
.residential-services-section {
    padding: var(--section-padding) 0;
    background-color: var(--dark);
    color: white;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.section-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.services-heading {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.res-service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-fast);
}

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

.res-service-card .service-image {
    position: relative;
    overflow: hidden;
}

.res-service-card .service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.res-service-content {
    padding: 1.5rem;
    background: white;
    color: var(--dark);
}

.res-service-content h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.res-service-content p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .residential-intro-section .content-wrapper {
        padding: 1rem 0;
        text-align: center;
    }
    
    .residential-intro-section .image-wrapper {
        margin-top: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .residential-intro-section .section-subtitle {
        font-size: 1.5rem;
    }
    
    .residential-intro-section .section-tagline {
        font-size: 1.25rem;
    }
    
    .residential-intro-section .intro-text {
        font-size: 1rem;
    }
    
    .testimonial-quote {
        font-size: 1.25rem;
    }
    
    .service-image img {
        height: 200px;
    }

    .res-service-content {
        padding: 1.25rem;
    }
    
    .res-service-content h4 {
        font-size: 1.1rem;
    }
    
    .res-service-content p {
        font-size: 0.95rem;
    }
	
	    .res-service-card {
        margin-bottom: 1.5rem;
    }
    
    .res-service-card .service-image img {
        height: 200px;
    }
}

/* Siding Page Specific Styles */

/* Intro Section */
.siding-intro-section {
    padding: var(--section-padding) 0;
    background-color: var(--dark);
    color: white;
}

.siding-intro-section .content-wrapper {
    padding: 2rem 0;
}

.siding-intro-section .section-title {
    color: white;
    margin-bottom: 1rem;
}

.siding-intro-section .section-subtitle {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.siding-intro-section .intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Siding Types Section */
.siding-types-section {
    padding: var(--section-padding) 0;
    background-color: var(--dark);
    color: white;
}

.siding-types-section .section-header {
    margin-bottom: 3rem;
}

.siding-types-section .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.siding-types-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.siding-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-fast);
    height: 100%;
}

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

.siding-image {
    position: relative;
    overflow: hidden;
}

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

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

.siding-content {
    padding: 1.5rem;
    background: white;
    color: var(--dark);
}

.siding-content h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.siding-content p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .siding-intro-section .content-wrapper {
        padding: 1rem 0;
        text-align: center;
    }
    
    .siding-intro-section .image-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .siding-intro-section .section-subtitle {
        font-size: 1.5rem;
    }
    
    .siding-intro-section .intro-text {
        font-size: 1rem;
    }
    
    .siding-image img {
        height: 200px;
    }
    
    .siding-content {
        padding: 1.25rem;
    }
    
    .siding-content h4 {
        font-size: 1.1rem;
    }
    
    .siding-content p {
        font-size: 0.95rem;
    }
}

.testimonials-gallery-section {
    padding: var(--section-padding) 0;
    background-color: var(--dark);
}

.testimonials-gallery-section .section-title {
    color: white;
    margin-bottom: 3rem;
}

.testimonial-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-fast);
}

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

.testimonial-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.testimonial-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .testimonial-card img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .testimonial-card img {
        height: 300px;
    }
}

.testimonial-card {
    position: relative;
    cursor: pointer;
}

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

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

.zoom-icon {
    color: white;
    font-size: 2rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #ccc;
}

/* Windows Page Styles */
.window-intro-section {
    padding: var(--section-padding) 0;
    background-color: var(--dark);
    color: white;
}

.window-intro-section .section-title {
    color: white;
    margin-bottom: 1rem;
}

.window-intro-section .section-subtitle {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.window-intro-section .intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.window-info-section {
    padding: var(--section-padding) 0;
    background-color: var(--light);
}

.window-info-section .section-title {
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.info-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.warning-signs {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.warning-signs li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.warning-signs li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 991px) {
    .window-intro-section .content-wrapper {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .info-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .window-intro-section .section-subtitle {
        font-size: 1.5rem;
    }
    
    .window-intro-section .intro-text {
        font-size: 1rem;
    }
}

/* Loyalty Program Specific Styles */
.loyalty-hero-section {
    padding: var(--section-padding) 0;
    background-color: var(--dark);
    color: white;
    text-align: center;
}

.main-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.benefits-title {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-item ul {
    margin: 1rem 0 0;
    padding-left: 1.5rem;
}

.benefit-item li {
    margin-bottom: 0.5rem;
}

.loyalty-cta-section {
    padding: 4rem 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.loyalty-form {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.referral-title {
    color: var(--primary);
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .loyalty-form {
        padding: 1.5rem;
    }
}


.application-form {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.progress-wrapper {
    position: relative;
}

.progress {
    height: 8px;
    margin-bottom: 30px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 15px;
}

.progress-labels span {
    font-size: 0.875rem;
    color: var(--gray);
}

.progress-labels span.active {
    color: var(--primary);
    font-weight: 500;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.position-options,
.work-hours {
    border: 1px solid #dee2e6;
    padding: 1rem;
    border-radius: 4px;
}

.day-input {
    margin-bottom: 1rem;
}

.day-input label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .application-form {
        padding: 1rem;
    }
    
    .progress-labels span {
        font-size: 0.75rem;
    }
}

.google-reviews-section {
    padding: 2rem 0;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.reviews-header {
    text-align: center;
    margin-bottom: 2rem;
}

.rating-summary h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffd700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.google-logo {
    height: 24px;
    margin-top: 0.5rem;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.reviews-track {
    display: flex;
    gap: 1rem;
    animation: scroll 30s linear infinite;
}

.review-card {
    flex: 0 0 auto;
    width: 300px;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: white;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.reviewer-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.review-date {
    font-size: 0.875rem;
    color: #666;
}

.google-icon {
    width: 20px;
    height: 20px;
}

.review-stars {
    color: #ffd700;
    margin-bottom: 0.75rem;
}

.review-text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #444;
}

.read-more {
    background: none;
    border: none;
    color: #1a73e8;
    font-size: 0.875rem;
    padding: 0;
    cursor: pointer;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 5)); /* Adjust based on number of reviews */
    }
}

/* Pause animation on hover */
.reviews-track:hover {
    animation-play-state: paused;
}

/* Add smooth transition when animation resumes */
.reviews-track {
    transition: all 0.75s;
}
