/*
Theme Name: Pure Concrete
Description: Professional concrete delivery company theme
Version: 1.0
Author: Your Name
*/

/* Local font definition */
@font-face {
    font-family: 'Paralucent-Medium';
    src: url('fonts/Paralucent-Medium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paralucent-Medium';
    src: url('fonts/Paralucent-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paralucent-Medium';
    src: url('fonts/Paralucent-Medium.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paralucent-Medium';
    src: url('fonts/Paralucent-Medium.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Feedback Modal Styles */
.quote-btn:focus, .quote-btn:active, .quote-btn:hover,
.nav-link-header:focus, .nav-link-header:active,
.header-btn:focus, .header-btn:active {
    outline: none !important;
    box-shadow: none !important;
}
.feedback-modal-content {
    border-radius: 24px;
    background: linear-gradient(135deg, #191D19 0%, #1a1e1a 50%, #1f231f 100%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    font-family: 'Paralucent-Medium', sans-serif;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.feedback-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #CCDBCC, #CCDBCC);
    z-index: 1;
}

.feedback-modal-content .modal-header {
    position: relative;
    background: transparent;
    border: none;
    padding: 2rem 2rem 1rem 2rem;
}

.feedback-modal-content .modal-title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 0;
    text-align: center;
    width: 100%;
}

.feedback-modal-content .modal-body {
    padding: 0 2rem 2rem 2rem;
}

.feedback-modal-content .form-label {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.feedback-modal-content .form-control {
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.1);
    font-size: 1.05rem;
    padding: 1rem 1.25rem;
    background: rgba(35,39,35,0.8);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.feedback-modal-content .form-control:focus {
    border-color: rgba(0,123,255,0.5);
    background: rgba(40,44,40,0.9);
    box-shadow: 0 4px 20px rgba(0,123,255,0.2), 0 0 0 0.15rem rgba(0,123,255,0.1);
    transform: translateY(-1px);
    outline: none;
}

.feedback-modal-content .form-control::placeholder {
    color: #999;
    font-weight: 300;
}

.feedback-submit-btn {
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 50%, #28a745 100%);
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0,123,255,0.3);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.feedback-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.feedback-submit-btn:hover::before {
    left: 100%;
}

.feedback-submit-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, var(--primary-color) 50%, #1e7e34 100%);
    box-shadow: 0 8px 30px rgba(0,123,255,0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.modal-header .btn-close {
    filter: none;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    opacity: 0.7;
    transition: all 0.3s ease;
    margin: 0;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header .btn-close::before {
    content: '✕';
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1;
}

.modal-header .btn-close:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    opacity: 1;
    transform: rotate(90deg);
}

.feedback-modal-content .alert-success {
    border-radius: 16px;
    background: linear-gradient(135deg, #155724 0%, #1e7e34 100%);
    border: 1px solid rgba(40,167,69,0.4);
    color: #d4edda;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

/* Section container constraints */
.section-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Section max-height constraints */
.hero-section .section-container {
    max-height: 900px;
}
.experience-section .section-container {
    max-height: 670px;
}
#discover-advantages .section-container {
    max-height: 1354px;
}
.services-dark-section .section-container {
    max-height: 905px;
}
#stats .section-container {
    max-height: 864px;
}
#testimonials .section-container, .testimonials-section .section-container {
    max-height: 864px;
}
#faq .section-container {
    max-height: 1040px;
}

/* Custom CSS for Pure Concrete Website */
:root {
    --primary-color: #CCDBCC;
    --secondary-color: #28a745;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Body padding to account for fixed header */

html, body {
    font-family: 'Paralucent-Medium', sans-serif !important;
    padding-top: 0;
}

/* Adjust padding for larger screens */
@media (min-width: 992px) {
    body {
        padding-top: 0;
    }
}
/* Experience Section Height & Centering */
.experience-section {
    background: #d3e2d3;
    min-height: 670px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .experience-section {
        min-height: 420px;
        padding-top: 2rem;
        padding-bottom: 2rem;
        align-items: flex-start;
    }
}

.services-title-left {
    text-align: left;
    font-size: 52px;
    padding-left: 24px;
    font-family: 'Paralucent-Medium', sans-serif;
}

.custom-header {
    background: #000400 !important;
    box-shadow: none;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-top: 16px;
    padding-bottom: 16px;
}

.header-logo {
    display: flex;
    align-items: center;
}
.header-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.header-nav {
    gap: 2rem;
}
.nav-link-header {
    color: #fff !important;
    font-weight: 500;
    font-size: 1.08rem;
    text-decoration: none !important;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.nav-link-header:hover {
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
}

.header-btn {
    background: #fff !important;
    color: #111 !important;
    border-radius: 25px !important;
    font-weight: 500;
    padding: 8px 22px;
    font-size: 1rem;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-left: 0.5rem;
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none !important;
}
.header-btn:hover {
    background: #eee !important;
    color: #111 !important;
}

.header-btn.phone-btn {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid #fff !important;
}
.header-btn.phone-btn:hover {
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
    border-color: #fff !important;
}

@media (max-width: 991px) {
    .custom-header .navbar-brand {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .custom-header .navbar-toggler {
        position: absolute;
        right: 16px;
        top: 16px;
        z-index: 101;
    }
    .custom-header .navbar-collapse {
        background: #111;
        padding: 0 !important;
        border-radius: 0 0 18px 18px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    }
    .custom-header .navbar-nav {
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: flex-start !important;
        padding: 0.5rem 0 !important;
    }
    .custom-header .nav-link-header {
        width: 100%;
        text-align: left;
        padding-left: 1rem;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }
    .custom-header .header-btn {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 0.3rem;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }
    .custom-header .d-flex.flex-column.align-items-center {
        width: 100%;
        align-items: flex-start !important;
        padding-left: 1rem;
    }
}

/* Phone and quote button styles with white outline */
.phone-btn, .quote-btn {
    border: 1px solid white !important;
    border-radius: 25px !important;
    padding: 8px 20px;
    transition: all 0.3s ease;
    color: #333 !important;
    background-color: white !important;
}

.phone-btn:hover, .quote-btn:hover {
    background-color: rgba(255,255,255,0.1) !important;
    color: white !important;
    border-color: white !important;
}


.hero-section {
    height: calc(100vh - 85px);
    min-height: calc(100vh - 85px);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 85px;
    background: none;
    overflow: hidden;
}

@media (max-width: 767px) {
    .hero-section {
        height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
        padding-top: 60px;
    }
}


/* Hero section container styles */
.hero-section > .section-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: visible;
    z-index: 2;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%), rgba(211,211,211,0.2);
    z-index: 1;
    pointer-events: none;
    min-width: 100%;
    min-height: 100%;
}

@media (max-width: 991px) {
    .hero-section {
        margin-top: -85px;
        padding-top: 85px;
        height: 100vh;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    /* font-family: 'Paralucent'; */
    font-size: var(--Text-Sizes-Heading-1, 72px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.72px;
    color: #fff;
}

.hero-desc {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
    max-width: 600px;
    font-family: 'Paralucent-Medium', sans-serif;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-desc {
        font-size: 1.08rem;
    }
}

/* Experience section with green background and 40% opacity */
/* Experience Section Height & Centering */
.experience-section {
    background: #CCDBCC;
}

.experience-title {
    color: #111;
    font-size: 44px;
}

.experience-desc {
    color: #222;
    font-size: 1rem;
    opacity: 0.95;
    font-family: 'Paralucent-Medium', sans-serif;
}

.experience-icon {
    color: #111 !important;
}

.experience-feature-title {
    color: #111;
}

.experience-feature-desc {
    color: #222;
    font-size: 0.98rem;
    opacity: 0.85;
    font-family: 'Paralucent-Medium', sans-serif;
}

.experience-img {
    width: 100%;
    max-width: 1000px;
    display: block;
    margin: 0 auto;
}

.discover-img {
    max-width: 1280px;
    max-height: 738px;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Services section cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.service-icon {
    transition: transform 0.3s ease;
}

.card:hover .service-icon {
    transform: scale(1.1);
}

/* Services dark section */
.services-dark-section {
    background-color: #191D19;
    color: white;
}

.service-item {
    padding: 2rem 1.5rem;
}

.service-item .service-icon {
    margin-bottom: 1.5rem;
}

.service-item h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Paralucent-Medium', sans-serif;
}

/* Performance & Satisfaction Section */
#stats {
    background: #fafafa;
}
#stats h2 {
    font-family: 'Paralucent-Medium', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    font-size: 44px;
}

.stats-title {
    font-size: 2.2rem;
}

.stats-desc {
    font-size: 1.15rem;
}

.stats-percent {
    font-size: 2.5rem;
}

.stats-caption {
    font-size: 1rem;
}

.stats-img {
    max-width: 600px;
    max-height: 640px;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

#stats .fw-bold {
    letter-spacing: -2px;
}
#stats img {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border-radius: 18px;
}
#stats .text-muted {
    color: #333 !important;
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #4C4F4C;
    color: white;
}

.testimonial-image img {
    border-radius: 15px;
    max-width: 600px;
    max-height: 640px;
    width: 100%;
    height: auto;
}

.testimonial-content {
    padding: 2rem 0;
}

.stars i {
    font-size: 1.2rem;
    margin-right: 0.25rem;
}

.testimonial-quote {
    font-style: italic;
    position: relative;
}

.testimonial-quote p {
    line-height: 1.6;
    font-weight: 300;
}

.testimonial-author h6 {
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 0.95rem;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .testimonial-content {
        padding: 2rem 0 0 0;
        text-align: center;
    }
    
    .testimonials-section .col-lg-6:first-child {
        margin-bottom: 2rem;
    }
}

/* FAQ section */
.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* FAQ Section Styles */
.faq-content {
    padding-left: 2rem;
}

.faq-item h5 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.faq-item .bi-chevron-up {
    font-size: 1.2rem;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item:hover .bi-chevron-up {
    transform: rotate(180deg);
}

.faq-item hr {
    border-color: #e0e0e0;
    opacity: 0.5;
}

.faq-item:last-child hr {
    display: none;
}

@media (max-width: 768px) {
    .faq-content {
        padding-left: 0;
        margin-top: 2rem;
    }
}

/* Quote section */
#quote {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

/* Footer styles */
.custom-footer {
    background-color: #000400 !important;
    color: #fff;
    font-family: 'Paralucent-Medium', sans-serif;
    border-top: none;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .header-logo {
        justify-content: flex-start !important;
    }
    .footer-logo-img {
        margin-left: 0 !important;
        margin-right: auto !important;
        display: block;
    }
    .col-12.text-center.text-md-start {
        text-align: left !important;
    }
}

/* Center footer logo on all screens */
.footer-logo-img {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
}

.footer-nav {
    gap: 2.5rem !important;
    font-size: 1.08rem;
    font-weight: 500;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #b6c2b6;
    text-decoration: underline;
}

.footer-divider {
    border: none;
    border-top: 3px solid #e6e6e6;
    margin: 0 auto 1.5rem auto;
    width: 90%;
}

.footer-copyright {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0;
    font-family: 'Paralucent-Medium', sans-serif;
}

.footer-policy-nav {
    gap: 2rem !important;
    font-size: 1rem;
}
.footer-policy-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-policy-link:hover {
    color: #b6c2b6;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-nav, .footer-policy-nav {
        gap: 1rem !important;
        font-size: 0.98rem;
    }
    .footer-logo {
        font-size: 2rem;
    }
    .footer-copyright {
        font-size: 0.95rem;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    body {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h3 {
        font-size: 1.5rem;
    }
    
    .phone-btn, .quote-btn {
        padding: 6px 15px;
        font-size: 0.875rem;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }
}

/* Enhanced scroll animation - longer and smoother */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Special animation for hero titles with staggered effect */
.hero-title.animate-on-scroll {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: opacity 1.5s cubic-bezier(0.23, 1, 0.32, 1), transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.2s;
}

.hero-title.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced animation for section titles */
.experience-title.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
}

.experience-title.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Custom button styles */
.btn-primary {
    background: #CCDBCC !important;
    color: #111 !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: none !important;
    background: linear-gradient(45deg, #CCDBCC, var(--primary-color));
    border: none !important;
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Paralucent-Medium', sans-serif;
}

/* Ensure all elements use the correct font */
* {
    font-family: 'Paralucent-Medium', sans-serif;
}

.display-4 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Navigation active link */
.navbar-nav .nav-link:hover {
    color: rgba(255,255,255,0.8) !important;
    transition: color 0.3s ease;
}

/* Stats counters styling */
.experience-section h3 {
    font-size: 3rem;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.phone-hours-text,
.quote-time-text {
    font-size: 0.75rem !important;
}

/* Page content styles for Privacy Policy and Terms of Service */
.page-content {
    min-height: calc(100vh - 200px);
    background-color: #f8f9fa;
}

.page-header {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.page-content-wrapper {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-content-wrapper h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.page-content-wrapper p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.page-content-wrapper ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-content-wrapper li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .page-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-content-wrapper h2 {
        font-size: 1.3rem;
    }
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
    display: none !important;
}

