/* ===================================
   CSS Variables
   =================================== */
:root {
    --primary-yellow: #F59E0B;
    --dark-black: #000000;
    --dark-gray: #666666;
    --dark-blue: #1E3A5F;
    --white: #ffffff;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --border-color: #E5E7EB;
    --bg-light: #F9FAFB;
}

/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ===================================
   Utility Classes
   =================================== */
.header-section {
    z-index: 10;
}

.logo-header {
    max-width: 150px;
}

.icon-inline {
    vertical-align: middle;
    margin-right: 8px;
}

.icon-phone {
    vertical-align: middle;
    margin-right: 10px;
}

.call-label {
    font-size: 0.75rem;
}

.fw-semi-bold {
    font-weight: 600;
}


/* ===================================
   Button Classes
   =================================== */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: #D97706;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-dark {
    background: linear-gradient(90deg, var(--dark-black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    box-shadow: 0 20px 25px -5px rgba(199, 199, 199, 0.30), 0 8px 10px -6px rgba(123, 123, 123, 0.30);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 30px -5px rgba(199, 199, 199, 0.40), 0 10px 15px -6px rgba(123, 123, 123, 0.40);
    color: var(--white);
}

.btn-call {
    padding: 10px 20px;
    text-align: left;
}

.btn-call small {
    opacity: 0.9;
    font-weight: 400;
}

.btn-phone {
    font-size: 1.25rem;
    padding: 15px 30px;
}

.btn-submit {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 105vh;
    overflow: hidden;
    background: url('../images/banner-bg.png') center center/cover no-repeat;
}


.badge-rated {
    display: inline-flex;
    align-items: center;
    border: 3px solid var(--primary-yellow);
    background-color: #fff;
    color: var(--dark-black);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* ===================================
   Quote Form Card
   =================================== */
.quote-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-control::placeholder {
    color: #9CA3AF;
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    position: relative;
    margin-top: -100px;
    z-index: 5;
}

.stats-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.stats-section .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stats-section .stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}


.winter-badge{
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}


/* ===================================
   About Section
   =================================== */
.about-section {
    background-image: url('../images/about-bg.png');
    background-position: right center;
    background-repeat: no-repeat;
}

.about-section .about-certifications {
    max-width: 300px;
}


.about-section .about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.about-section .about-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-section .about-highlight-box {
    background: var(--white);
    border: 2px solid var(--primary-yellow);
    border-radius: 12px;
    padding: 24px;
}

.about-section .about-highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.about-section .about-feature {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.about-section .about-feature:hover {
    border-color: var(--primary-yellow);
    padding: 24px;
}

.about-section .about-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.about-section .about-image-wrapper {
    position: relative;
}

.about-section .about-cta-btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-cta {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-specialist {
    padding: 14px 28px;
    font-size: 1rem;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background-image: url('../images/services-bg.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;

}

.services-section .services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.services-section .services-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-section .service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    min-height: 550px;
}

.services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.services-section .service-card-image {
    width: 100%;
}

.services-section .service-card-image img {
    width: 100%;
}

.services-section .service-card-overlay-top {
    position: absolute;
    top: 0;
    padding: 25px 15px;
    text-align: center;
    color: var(--white);
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.services-section .service-card-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--dark-black) 0%, var(--dark-gray) 100%);
    padding: 30px 25px;
    color: var(--white);
    text-align: center;
}

.services-section .service-card-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    font-size: 22px;
    font-weight: 600;
}

.services-section .service-card .service-card-subtitle-hover {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
}
.services-section .service-card:hover .service-card-subtitle-hover {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
}

.services-section .service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--white);
}

.services-section .services-info-box {
    background: var(--white);
    border: 2px solid var(--primary-yellow);
    border-radius: 12px;
    padding: 40px;
}

.services-section .services-info-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.services-section .services-info-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.services-section .services-info-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Winter Emergencies Section
   =================================== */
.winter-section {
    background: url('../images/winter-roof-emergency.png');
    color: var(--white);
}


.winter-section .winter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.winter-section .winter-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.winter-section .winter-tab-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border: none;
    border-radius: 12px;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.winter-section .winter-tab-btn::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--text-dark);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    opacity: 0.5;
}

.winter-section .winter-tab-btn:hover,
.winter-section .winter-tab-btn.active {
    background: linear-gradient(to right, #000, #666666);
    color: var(--white);
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

.winter-section .winter-tab-btn.active::after {
    border-left-color: var(--white);
    opacity: 1;
}

.winter-section .winter-tab-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.winter-section .winter-content-card {
    background: var(--white);
    border-radius: 16px;
    padding: 15px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.winter-section .winter-content {
    display: none;
}

.winter-section .winter-content.active {
    display: block;
}

.winter-section .winter-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.winter-section .winter-content-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.winter-section .winter-content-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.winter-section .winter-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.winter-section .winter-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.winter-section .winter-check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: var(--primary-yellow);
}

.btn-book {
    padding: 0;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}
.btn-book:hover{
    color: #000;
}
.btn-estimate {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ===================================
   Emergency Winter Roof Section
   =================================== */
.emergency-section {
    background: var(--bg-light);
}

.emergency-section .emergency-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-yellow);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.emergency-section .emergency-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.emergency-section .emergency-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}


.emergency-section .emergency-check-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-yellow);
    margin-top: 2px;
}

.emergency-section .emergency-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.emergency-section .emergency-feature-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.emergency-section .emergency-images-wrapper {
    position: relative;
}

.emergency-section .emergency-google-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    max-width: 140px;
}

.emergency-section .emergency-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.emergency-section .emergency-image-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.emergency-section .emergency-image-left {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.emergency-section .emergency-image-center {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.emergency-section .emergency-image-right {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}


/* ===================================
   Metal Roofing Materials Section
   =================================== */
.materials-section {
    background: url('../images/metal-roofing-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.materials-section .materials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.materials-section .materials-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.materials-section .material-card {
    background: var(--white);
    border: 1px solid #000;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    box-shadow: 0 4px 4px  rgba(0, 0, 0, 0.25);
}

.materials-section .material-card:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.materials-section .material-card-content {
    padding: 30px 25px;
    flex: 1;
}

.materials-section .material-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.materials-section .material-card-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}


.materials-section .material-card-image{
    padding: 15px;
}
.materials-section .material-card-image img {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}




/* ========================================
   WORKING PROCESS SECTION
======================================== */
.working-process-section{
    background: url('../images/process-bg.png');
}
.working-process-section .process-steps {
    position: relative;
}

.working-process-section .process-card {
    position: relative;
    padding: 0px 10px;
    transition: all 0.3s ease;
}

.working-process-section .process-icon {
    position: relative;
}

.working-process-section .process-card .process-icon .icon-black{
    display: none;
    margin: 0 auto;
}
.working-process-section .process-card:hover .process-icon .icon-black{
    display: block;
}
.working-process-section .process-card:hover .process-icon .icon-white  {
    display: none;
}


.working-process-section .step-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 2px solid #E1E1E1;
    border-radius: 50px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
}

.working-process-section .process-card:hover .step-badge {
    background: #000;
    border-color: #000;
    color: #fff;
}

.working-process-section .process-card:hover .text-muted {
    color: var(--text-color) !important;
    transition: 0.3s ease-in-out;
}

.working-process-section .process-steps .row > [class*="col-"] {
    position: relative;
}

.working-process-section .process-arrow {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    z-index: 10;
}


/* Testimonials Section */
.testimonials-section {
    background: var(--white);
}

.testimonials-section .testimonials-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-black);
}

.testimonials-section .testimonial-card {
    background: linear-gradient(90deg, #000 0%, #666 100%);
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(199, 199, 199, 0.30), 0 8px 10px -6px rgba(123, 123, 123, 0.30);
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 3px solid #fff;
}

.testimonials-section .testimonial-stars {
    display: flex;
    gap: 5px;
}

.testimonials-section .star-icon {
    color: var(--primary-yellow);
}

.testimonials-section .quote-icon {
    color: var(--primary-yellow);
}

.testimonials-section .testimonial-text {
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonials-section .testimonial-author {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.testimonials-section .testimonial-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.testimonials-section .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-section .dot.active {
    background: var(--primary-yellow);
    width: 30px;
    border-radius: 5px;
}

/* FAQs Section */
.faqs-section {
    background: var(--white);
}

.faqs-section .faqs-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-black);
}

.faqs-section .faqs-list {
    max-width: 100%;
}

.faqs-section .faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 30px 0;
}

.faqs-section .faq-item:last-child {
    border-bottom: none;
}

.faqs-section .faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faqs-section .faq-question {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-black);
    margin: 0;
    flex: 1;
}

.faqs-section .faq-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-black);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faqs-section .faq-toggle-btn svg {
    color: var(--white);
    transition: transform 0.3s ease;
}

.faqs-section .faq-toggle-btn.collapsed svg {
    transform: rotate(0deg);
}

.faqs-section .faq-toggle-btn:not(.collapsed) svg {
    transform: rotate(180deg);
}

.faqs-section .faq-toggle-btn:hover {
    background: var(--dark-gray);
}

.faqs-section .faq-answer {
    padding-top: 20px;
}

.faqs-section .faq-answer p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
    padding-right: 70px;
}

/* CTA Section */
.cta-section {
    background: url('../images/cta-bg.png');
    background-size: cover;
    padding: 50px 0 180px;
}

.cta-section .cta-image {
    height: 100%;
    min-height: 500px;
}

.cta-section .cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.cta-section .cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.cta-section .cta-description {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
}

.cta-section .btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
}

.gallery-section .gallery-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-black);
}

.gallery-section .gallery-subtitle {
    font-size: 16px;
    color: var(--text-dark);
}

.gallery-section .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(199, 199, 199, 0.30), 0 8px 10px -6px rgba(123, 123, 123, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-section .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 30px -5px rgba(199, 199, 199, 0.40), 0 10px 15px -6px rgba(123, 123, 123, 0.40);
}

.gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer CTA Section */
.footer-cta-section .footer-bg {
    background: url('../images/form-bg.png');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    padding: 50px 150px;
    max-width: 80%;
    margin: 0 auto;
}

.footer-cta-section .footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-yellow);
    color: var(--dark-black);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.footer-cta-section .footer-badge-icon {
    width: 16px;
    height: 16px;
}

.footer-cta-section .footer-cta-title {
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-cta-section .footer-cta-description {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
}
.footer-cta-section .footer-info-text, .footer-cta-section a.footer-info-text{
    color: #000;
}

.footer-cta-section .btn-footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
}

.footer-cta-section .footer-quote-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 25px -5px rgba(199, 199, 199, 0.30), 0 8px 10px -6px rgba(123, 123, 123, 0.30);
}

/* Footer Info Section */

.footer-info-section .footer-info-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-black);
}

.footer-info-section .footer-info-link {
    font-size: 16px;
    color: var(--dark-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info-section .footer-info-link:hover {
    color: var(--primary-yellow);
}

.footer-info-section .footer-info-text {
    font-size: 16px;
    color: var(--text-dark);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--dark-black);
}

.footer-bottom .footer-copyright {
    font-size: 14px;
    color: var(--white);
}

.footer-bottom .footer-link {
    color: var(--white);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-bottom .footer-link:hover {
    color: var(--primary-yellow);
}

.footer-bottom .footer-powered img {
    max-width: 150px;
}
