/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 20px;
}

/* Background */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-bg) center/cover no-repeat;
    z-index: -2;
}

/* Overlay */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.85)
    );
    z-index: -1;
}

/* =========================================
   CONTAINER
========================================= */

.hero-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-col {
    margin-bottom: 0;
}

/* =========================================
   HEADING
========================================= */

.hero-heading {
    margin-bottom: 5px;
    padding-top: 5px;
    font-family: 'Bebas Neue', Impact, sans-serif;
    line-height: 0.9;
    letter-spacing: 3px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 2.5rem;
}

.hero-heading span {
    font-size: 2.5rem;
}

/* =========================================
   SUBTITLE
========================================= */

.hero-subtitle {
    background-color: rgba(0, 0, 0, 0.9);
    font-family: Arial, sans-serif;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    display: inline-block;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* =========================================
   IMAGE
========================================= */

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1600px;
    padding: 20px;
}

.hero-image {
    width: 100%;
    max-width: 250px;
    border-radius: 20px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    box-shadow:
        0 0 15px rgba(206,15,44,0.5),
        0 0 30px rgba(206,15,44,0.4);

    animation: floatRotate4D 6s ease-in-out infinite;
}

/* Animation */
@keyframes floatRotate4D {
    0% {
        transform: rotateX(0) rotateY(0) translateY(0);
    }
    50% {
        transform: rotateX(5deg) rotateY(-5deg) translateY(-10px);
    }
    100% {
        transform: rotateX(0) rotateY(0) translateY(0);
    }
}

/* =========================================
   CTA BUTTON
========================================= */

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #CE0F2C;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    letter-spacing: .5px;
    cursor: pointer;
    z-index: 1;

    /* animation */
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.7s ease-out forwards;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-20deg);
    transition: .5s;
}

.cta-button:hover::before {
    left: 120%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 28px rgba(206,15,44,0.4);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   PHONE LINK
========================================= */

.call-text {
    color: #CE0F2C;
    text-decoration: none;
}

.call-text:hover {
    color: darkred;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (min-width: 768px) {

    .hero-heading {
        font-size: 4rem;
    }

    .hero-heading span {
        font-size: 3rem;
    }

    .hero-image {
        max-width: 220px;
    }
}

@media (min-width: 1024px) {

    .hero-heading {
        font-size: 6rem;
    }

    .hero-heading span {
        font-size: 5rem;
    }

    .hero-container {
        max-width: 1000px;
    }
}

@media (max-width: 768px) {

    .hero-section {
        align-items: flex-start;
        padding-top: 120px;
    }
}

@media (max-width: 480px) {

    .hero-section {
        min-height: auto;
        padding: 100px 15px 80px;
    }

    .hero-container {
        padding: 0 10px;
    }

    .hero-heading {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-heading span {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .hero-image {
        max-width: 150px;
        border-radius: 10px;
    }

    .cta-button {
        width: 100%;
        font-size: 16px;
    }
}


/* =========================================
   PAVING SECTION STYLE
========================================= */

.paving-section{
    position:relative;
    padding:clamp(10px,8vw,15px) 20px;
    overflow:hidden;
}

/* Background Layer */
.paving-section::before{
    content:"";
    position:absolute;
    inset:0;
    background: var(--paving-bg) center/cover no-repeat;
    filter: blur(2px);
    transform: scale(1.05); /* blur edge fix */
    z-index:-2;
}

/* Overlay (optional but recommended) */
.paving-section::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(255,255,255,0.85); /* light overlay */
    z-index:-1;
}

.paving-container{
    position:relative;
    z-index:2;
    max-width:1250px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.4fr .6fr;
    gap:clamp(40px,6vw,80px);
    align-items:center;
}

/* =========================================
   LEFT CONTENT
========================================= */

.paving-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.paving-content h2{
    color:#CE0F2C;
    font-size:clamp(30px,4vw,48px);
    font-weight:700;
    margin-bottom:25px;
    border-left:6px solid #CE0F2C;
    padding-left:18px;
    line-height:1.15;
}

.paving-content p{
    color:rgba(17,17,17,0.92);
    font-size:1.05rem;
    font-weight:500;
    line-height:1.75;
    margin-bottom:18px;
}

/* =========================================
   FORM BOX
========================================= */

.paving-form-box{
    background:#ffffff;
    width:100%;
    max-width:460px;
    margin-left:auto;
    padding:30px;
    border-radius:16px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:100%;
    transition:.3s ease;
}

.paving-form-box:hover{
    transform:translateY(-4px);
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.paving-form-title{
    background:#000;
    border:5px solid #CE0F2C;
    color:#fff;
    padding:14px;
    font-size:1.2rem;
    font-weight:600;
    text-align:center;
    margin-bottom:22px;
    border-radius:8px;
}

/* =========================================
   CTA BUTTON
========================================= */

.paving-cta-wrapper{
    margin-top:28px;
}

.cta-button{
    display:inline-block;
    background:#000;
    border:2px solid #CE0F2C;
    padding:14px 34px;
    border-radius:50px;
    text-decoration:none;
    transition:.35s ease;
}

.cta-button span{
    color:#fff;
    font-weight:700;
    font-size:15px;
    letter-spacing:.5px;
}

.cta-button:hover{
    background:#CE0F2C;
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.25);
}

/* =========================================
   CONTACT FORM 7 FIX
========================================= */

.wpcf7-form p{
    margin:0;
    padding:0;
}

.wpcf7-form br{
    display:none;
}

/* Form layout */

.quote-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

/* Label */

.quote-form label{
    display:block;
    padding-bottom: 5px;
    width:100%;
}

/* Inputs */

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:.95rem;
    transition:.3s ease;
    background:#fff;
}

/* Focus */

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
    border-color:#CE0F2C;
    box-shadow:0 0 0 3px rgba(206,15,44,.15);
    outline:none;
}

/* Textarea */

.quote-form textarea{
    height:110px;
    resize:none;
}

/* Submit */

.quote-form input[type="submit"]{
    background:#CE0F2C;
    color:#fff;
    border:none;
    padding:13px;
    font-size:.98rem;
    font-weight:600;
    border-radius:50px;
    cursor:pointer;
    transition:.3s ease;
}

.quote-form input[type="submit"]:hover{
    background:#000;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:1024px){

    .paving-container{
        grid-template-columns:1fr;
    }

    .paving-form-box{
        max-width:600px;
        margin:0 auto;
        height:auto;
    }

    .paving-content{
        text-align:center;
        align-items:center;
    }

}

@media (max-width:576px){

    .paving-section{
        padding:60px 15px;
    }

    .paving-content h2{
        font-size:1.9rem;
    }

    .paving-form-box{
        padding:24px;
        border-radius:14px;
    }

    .paving-form-title{
        font-size:1.05rem;
        padding:12px;
    }

}


/* ==============================
 PAVING CARD SECTION
================================= */

.why-choose-paving {
    padding: 30px 20px;
    background:linear-gradient(180deg,#ce0f2c 0%,#000 100%);
}

.paving-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
}

/* IMAGE CARD */
.paving-bg-box {
    flex: 1.1;
    min-height: 420px;
    border-radius: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* CONTENT CARD */
.paving-info {
    flex: 1;
    background: #121212;
    padding: 60px;
    border-radius: 40px;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.paving-info h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.paving-info h2::before {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #CE0F2C;
    margin-bottom: 15px;
}

.paving-info p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #CE0F2C;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #b10d26;
    transform: translateY(-3px);
}

/* ==============================
   LARGE DESKTOP (1200px+)
================================= */
@media (min-width: 1200px) {
    .paving-wrapper {
        flex-direction: row;
        gap: 60px;
    }
}

/* ==============================
   DESKTOP & LAPTOP (992px - 1199px)
================================= */
@media (min-width: 992px) and (max-width: 1199px) {
    .paving-wrapper {
        flex-direction: row;
        gap: 40px;
    }

    .paving-info {
        padding: 50px;
    }

    .paving-info h2 {
        font-size: 32px;
    }
}

/* ==============================
   TABLET (768px - 991px)
================================= */
@media (max-width: 991px) {
    .paving-wrapper {
        flex-direction: column;
    }

    .paving-info {
        padding: 40px;
    }

    .paving-info h2 {
        font-size: 28px;
    }

    .paving-bg-box {
        min-height: 350px;
    }
}

/* ==============================
   MOBILE (Below 768px)
================================= */
@media (max-width: 767px) {

    .why-choose-paving {
        padding: 60px 15px;
    }

    .paving-info {
        padding: 30px 25px;
        border-radius: 25px;
    }

    .paving-bg-box {
        min-height: 250px;
        border-radius: 25px;
    }

    .paving-info h2 {
        font-size: 24px;
    }

    .paving-info p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}


/* ===============================
   ROOT VARIABLES (UPGRADED)
================================= */
:root {
    --primary-color: #CE0F2C;
    --primary-dark: #a50c23;
    --primary-soft: #fce7ea;

    --text-dark: #1f2937;
    --text-light: #6b7280;

    --bg-light: #ffffff;
    --border-radius-lg: 1rem;

    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* ===============================
   SERVICES SECTION
================================= */
.services-section {
    position: relative;
    padding: 10px 0;
    overflow: hidden;
    background-color: #f3f4f6;
    background-image: url("../images/map-bg.png");
    background-size: cover;
    background-position: center;
}

/* OVERLAY */
.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

/* CONTENT FIX */
.services-section .service-container,
.services-section .section-header {
    position: relative;
    z-index: 2;
}

/* ===============================
   CONTAINER
================================= */
.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===============================
   HEADER (IMPROVED TYPOGRAPHY)
================================= */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    margin-bottom: 5px;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 6px;
}

/* ===============================
   SERVICE CATEGORY (REFINED)
================================= */
.service-category {
    background:linear-gradient(180deg,#ce0f2c 0%,#000 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-6px);
}

/* TITLE */
.service-category h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 5px solid #fff;
}

/* IMAGE */
.service-category img {
    width: 100%;
    border-radius: 0.75rem;
    margin-bottom: 1.2rem;
    object-fit: cover;
    max-height: 280px;
}

/* TEXT */
.intro-text,
.closing-text {
    font-size: 1.12rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* ===============================
   GRID (RESPONSIVE PERFECT)
================================= */
.service-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ===============================
   SERVICE BOX (PREMIUM POLISH)
================================= */
.service-box {
    background-color: #D9697B;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #eee;

    transition: all 0.3s ease;
    animation: float4D 6s ease-in-out infinite alternate;
}

/* SOFT FLOAT (LESS DISTRACTING) */
@keyframes float4D {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* HOVER */
.service-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* ICON */
.service-box i {
    font-size: 2.2rem;
    color: whitesmoke;
    margin-bottom: 0.8rem;
    transition: 0.3s ease;
}

/* ICON HOVER */
.service-box:hover i {
    transform: scale(1.15);
    color: #000000;
}

/* TITLE */
.service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #f5f5f5;
}

/* TEXT */
.service-box p {
    flex-grow: 1;
    font-size: 1.12rem;
    margin-bottom: 1.2rem;
    color: #f5f5f5;
}

/* ===============================
   BUTTON (PREMIUM CTA)
================================= */
.btn-learn {
    padding: 0.55rem 1.4rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 999px;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: #000000;
    transform: translateY(-2px);
}

/* ===============================
   MOBILE OPTIMIZATION
================================= */
@media (max-width: 768px) {

    .services-section {
        padding: 40px 0;
    }

    .service-category {
        padding: 1.5rem;
    }

    .service-category h3 {
        font-size: 1.4rem;
    }

    .intro-text,
    .closing-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-box {
        padding: 1.2rem;
    }
}



/* ====================================
   ASPHALT VIDEO SECTION (MODERN GRID)
==================================== */

.asphalt-services-section{
    padding:clamp(2rem,7vw,3rem) 1.2rem;
    background:linear-gradient(180deg,#ce0f2c 0%,#000 100%);
}

/* container */

.asphalt-services-section .container{
    max-width:1200px;
    margin:auto;
}

/* GRID LAYOUT */

.asphalt-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:60px;
    align-items:center;
}

/* TEXT CONTENT */

.asphalt-content{
    max-width:560px;
}

/* TITLE */

.video-section-title{
    font-size:clamp(2rem,2.8vw,2.6rem);
    font-weight:700;
    line-height:1.3;
    letter-spacing:-0.02em;
    margin-bottom:18px;
    color:#000;
}

/* PARAGRAPH */

.video-section-description{
    font-size:clamp(.95rem,1.05vw,1.05rem);
    line-height:1.8;
    color:#fff;
}

/* VIDEO CARD */

.asphalt-video{
    width:100%;
}

.asphalt-video iframe{

    width:100%;
    aspect-ratio:16/9;
    border:none;
    border-radius:16px;

    box-shadow:
        0 25px 50px rgba(0,0,0,0.15),
        0 10px 20px rgba(0,0,0,0.08);

    transition:all .35s ease;

}

.asphalt-video iframe:hover{
    transform:translateY(-6px);
}

/* ====================================
   TABLET
==================================== */

@media (max-width:992px){

.asphalt-grid{
    grid-template-columns:1fr;
    gap:32px;
}

.asphalt-content{
    max-width:100%;
}

}

/* ====================================
   MOBILE
==================================== */

@media (max-width:600px){

.asphalt-services-section{
    padding:3.5rem 1rem;
}

.video-section-title{
    font-size:1.7rem;
}

.video-section-description{
    font-size:.95rem;
}

}



/* ===============================
   NEED SECTION (Modern Animated)
================================= */
.need-section {
    position: relative;
    padding: clamp(20px, 8vw, 20px) 20px; /* adaptive padding for all screens */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #000;
    font-family: 'Inter', sans-serif;    
}

/* Blur overlay */
.need-section-overlay {
    position: absolute;
    inset: 0;       
    backdrop-filter: blur(5px); /* slightly stronger blur for small screens */
    z-index: 1;   
}

/* Container */
.need-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px; /* side padding for very small screens */
}

/* Title */
.need-section-title {
    font-size: clamp(24px, 4vw, 34px);
    margin-bottom: 20px;
    font-weight: 800;
    color: #ce0f2c;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

/* Description */
.section-desc {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 40px;
    color: #000000;
}

/* ===============================
   FEATURE GRID
================================= */
.need-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(5px, 2vw, 10px);
    margin-bottom: 34px;
}

/* Feature cards */
.feature-card {
    background: linear-gradient(180deg, rgba(241, 15, 15, 0.1), rgba(255,255,255,0.15));
    padding: clamp(5px, 2vw, 10px);
    border-radius: 1.5rem;
    transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.3s ease, opacity 0.6s ease;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-card.show {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.2));
}

.feature-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 14px;
    font-weight: 800;
    color: #CE0F2C;
}

.feature-card p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.7;
    color: #000000;
}

/* ===============================
   CTA BOX
================================= */
.cta-box {
    margin-top: 35px;
}

/* ===============================
   CTA BUTTON (Modern Responsive)
================================= */
.need-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: clamp(12px, 1.5vw, 18px) clamp(25px, 3vw, 36px);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    border-radius: 50px;

    background: #ce0f2c;
    color: #fff;
    text-decoration: none;

    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;

    box-shadow: 0 8px 25px rgba(206, 15, 44, 0.4);
}

.need-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transform: skewX(-25deg);
}

.need-cta-btn:hover::before {
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.need-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(206, 15, 44, 0.6);
}

.need-cta-btn:active {
    transform: scale(0.97);
}

/* ===============================
   RESPONSIVE GRID
================================= */

/* Large tablets and laptops (1024px and below) */
@media(max-width: 1024px){
    .need-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile devices (768px and below) */
@media(max-width: 768px){
    .need-feature-grid {
        grid-template-columns: 1fr;
    }

    .need-section { padding: 30px 15px; }
    .need-section-title { font-size: 2rem; }
    .section-desc { font-size: 1rem; }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-card h3 { font-size: 1.2rem; }
    .feature-card p { font-size: 0.95rem; }

    .need-cta-btn {
        font-size: 0.95rem;
        padding: 12px 28px;
    }
}

/* Extra small devices (480px and below) */
@media(max-width: 480px){
    .need-section { padding: 20px 10px; }
    .need-section-title { font-size: 1.8rem; }
    .section-desc { font-size: 0.9rem; }

    .feature-card h3 { font-size: 1.1rem; }
    .feature-card p { font-size: 0.85rem; }

    .need-cta-btn {
        font-size: 0.9rem;
        padding: 10px 24px;
    }
}



/* ===============================
   CONCRETE EXPERTS SECTION
================================= */
.concrete-experts-section {
    padding: clamp(10px, 8vw, 20px) 20px;
    background: linear-gradient(180deg,#ce0f2c 0%,#000 100%);
    color: #fff;
    font-family: "Inter", sans-serif;
    overflow: hidden;
    position: relative;
}

/* CONTAINER */
.concrete-container {
    max-width: 1200px;
    margin: auto;
}

/* FLEX LAYOUT */
.concrete-content {
    display: flex;
    align-items: center;
    gap: clamp(30px,5vw,60px);
    flex-wrap: wrap;
}

/* ===============================
   TEXT AREA
================================= */
.concrete-text {
    flex: 1 1 500px;
}

/* Heading */
.concrete-text h2 {
    font-size: clamp(24px,4vw,42px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

/* Underline */
.concrete-text h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fa6060, #f10000);
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 10px;
}

/* Paragraph */
.concrete-text p {
    font-size: clamp(14px,1.5vw,18px);
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* FEATURES */
.concrete-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.concrete-features li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
}

.concrete-features i {
    color: #CE0F2C;
}

/* ===============================
   BUTTON
================================= */
.concrete-cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;

    background: #ce0f2c;
    color: #fff;
    text-decoration: none;

    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(206,15,44,0.4);
}

/* Shine */
.concrete-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,transparent,rgba(255,255,255,0.5),transparent);
    transform: skewX(-25deg);
}

.concrete-cta-btn:hover::before {
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    100% { left: 125%; }
}

.concrete-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(206,15,44,0.6);
}

.concrete-cta-btn:active {
    transform: scale(0.97);
}

/* ===============================
   IMAGE AREA
================================= */
.concrete-image {
    flex: 1 1 450px;
    position: relative;
}

.concrete-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

.concrete-image:hover img {
    transform: scale(1.05);
}

/* Glow */
.concrete-image::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(34,197,94,0.25), transparent);
    z-index: -1;
    filter: blur(40px);
}

/* ===============================
   SCROLL ANIMATION BASE
================================= */
.concrete-text,
.concrete-image,
.concrete-features li {
    opacity: 1;
    transform: none;
}

/* Animation only when JS runs */
.js-enabled .concrete-text,
.js-enabled .concrete-image,
.js-enabled .concrete-features li {
    opacity: 0;
    transform: translateY(40px);
}

/* Active */
.js-enabled .active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.js-enabled .concrete-features li {
    transform: translateX(-20px);
}

.js-enabled .concrete-features li.active {
    transform: translateX(0);
}

/* ===============================
   RESPONSIVE
================================= */

/* Large screens */
@media (min-width: 1400px) {
    .concrete-container {
        max-width: 1300px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .concrete-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .concrete-features li {
        justify-content: center;
    }

    .concrete-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .concrete-cta-btn {
        width: 100%;
    }
}

/* Extra small */
@media (max-width: 360px) {
    .concrete-text h2 {
        font-size: 20px;
    }

    .concrete-text p {
        font-size: 13px;
    }
}



/* =====================================================
   Concrete Excellence Section Style
===================================================== */

.apc-excellence-section {
    position: relative;
    padding: clamp(60px, 8vw, 120px) clamp(15px, 4vw, 40px);
    background: none;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

/* Overlay */
.apc-excellence-section .apc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Container */
.apc-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.apc-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

/* Divider */
.apc-divider {
    width: clamp(120px, 40%, 380px);
    height: 4px;
    background: #ce0f2c;
    margin: 0 auto 30px;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 1s ease, transform 1s ease;
}

/* Paragraph */
.apc-text {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

/* Button Row */
.apc-btn-row {
    margin-top: clamp(25px, 5vw, 40px);
    display: flex;
    justify-content: center;
    gap: clamp(12px, 3vw, 20px);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

/* Base Button */
.apc-btn {
    position: relative;
    padding: clamp(10px, 2vw, 14px) clamp(22px, 4vw, 34px);
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    min-width: 160px;
    text-align: center;
}

/* Outline Button */
.apc-btn-outline {
    border: 2px solid #ce0f2c;
    color: #fff;
    background: transparent;
}

.apc-btn-outline:hover {
    background: linear-gradient(135deg, #ce0f2c, #ff3b5c);
    border-color: transparent;
    transform: translateY(-4px);
}

/* Fill Button */
.apc-btn-fill {
    background: linear-gradient(135deg, #ce0f2c, #ff3b5c);
    border: none;
    color: #fff;
    box-shadow: 0 8px 25px rgba(206, 15, 44, 0.4);
}

.apc-btn-fill:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(206, 15, 44, 0.6);
}

/* Animation Trigger */
.apc-animate {
    opacity: 1 !important;
    transform: translateY(0) scaleX(1) !important;
}

/* ==============================
   Mobile Optimization
============================== */
@media (max-width: 768px) {

    .apc-container {
        max-width: 100%;
    }

    .apc-btn-row {
        flex-direction: column;
        align-items: center;
    }

    .apc-btn {
        width: 100%;
        max-width: 320px;
    }
}

/* Extra Small Devices */
@media (max-width: 380px) {

    .apc-title {
        line-height: 1.2;
    }

    .apc-text {
        line-height: 1.6;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {

    .apc-container {
        max-width: 1000px;
    }
}


/* =====================================================
   Concrete Solutions Section
===================================================== */
.concrete-solutions{
width:100%;
position:relative;
padding:30px 0;
font-family:Arial, sans-serif;
overflow:hidden;

/* Background Image */

background-image:url("../images/concrete-bg.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;

/* Parallax effect */

background-attachment:fixed;
}

/* Background Overlay */

.concrete-bg-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
z-index:0;
}

/* Animated background shapes */

.concrete-solutions::before,
.concrete-solutions::after{
content:"";
position:absolute;
width:350px;
height:350px;
background:linear-gradient(135deg,#ff3a4f,#d10a21);
opacity:.07;
border-radius:50%;
z-index:0;
animation:floatShape 12s ease-in-out infinite;
}

.concrete-solutions::before{
top:-120px;
left:-120px;
}

.concrete-solutions::after{
bottom:-120px;
right:-120px;
animation-delay:6s;
}

@keyframes floatShape{
0%{transform:translateY(0px)}
50%{transform:translateY(-40px)}
100%{transform:translateY(0px)}
}

/* Keep content above shapes */

.concrete-solutions > *{
position:relative;
z-index:2;
}

.concrete-solutions .container{
max-width:1300px;
margin:auto;
padding:0 20px;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

/* =====================================================
SECTION SPACING
===================================================== */

.header-section,
.mid-section,
.bottom-section{
padding:60px 0;
transition:transform .4s ease;
}

/* 3D hover */
.header-section:hover,
.mid-section:hover,
.bottom-section:hover{
transform:translateY(-5px);
}

/* Auto layout switching */

.mid-section .mid-image{
order:1;
}


/* =====================================================
PREMIUM RED ANIMATED DIVIDER
===================================================== */

.section-divider{
width:100%;
height:3px;
margin:50px 0;
position:relative;
background:linear-gradient(
90deg,
transparent,
#d10a21,
#ff3b4d,
#d10a21,
transparent
);
background-size:300% 100%;
animation:dividerFlow 6s linear infinite;
border-radius:50px;
}

/* glow effect */

.section-divider::after{
content:"";
position:absolute;
top:-2px;
left:0;
width:100%;
height:7px;
background:linear-gradient(
90deg,
transparent,
rgba(209,10,33,.6),
transparent
);
filter:blur(6px);
opacity:.7;
}

/* animation */

@keyframes dividerFlow{

0%{
background-position:0% 50%;
}

100%{
background-position:300% 50%;
}

}

/* =====================================================
IMAGE DESIGN + PARALLAX
===================================================== */

.header-image img,
.mid-image img,
.bottom-image img{
width:100%;
height:auto;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
transition:all .4s ease;
transform:perspective(1000px) translateZ(0);
}

.header-image img:hover,
.mid-image img:hover,
.bottom-image img:hover{
transform:perspective(1000px) scale(1.05) rotateX(2deg) rotateY(-2deg);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* =====================================================
GLASS MORPHISM CONTENT CARDS
===================================================== */

.header-content,
.mid-content,
.bottom-content{

background:rgba(255,255,255,0.7);
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);

border-radius:16px;
padding:40px;

box-shadow:0 10px 40px rgba(0,0,0,0.08);
border:1px solid rgba(255,255,255,0.4);

transition:all .4s ease;

}

.header-content:hover,
.mid-content:hover,
.bottom-content:hover{
transform:translateY(-6px);
box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

/* =====================================================
CONTENT TYPOGRAPHY
===================================================== */

.header-content h1,
.bottom-content h1{
font-size:42px;
font-weight:700;
line-height:1.2;
margin-bottom:20px;
color:#CE0F2C;
}

.mid-content h2{
font-size:42px;
font-weight:700;
margin-bottom:20px;
color:#CE0F2C;
}

.header-content p,
.mid-content p,
.bottom-content p{
font-size:18px;
line-height:1.8;
color:#000000;
margin-bottom:15px;
}

/* =====================================================
CTA BUTTON
===================================================== */

.cta-button{
display:inline-block;
padding:14px 32px;
margin-top:15px;
background:#d10a21;
color:#fff;
font-size:15px;
font-weight:600;
border-radius:50px;
text-decoration:none;
position:relative;
overflow:hidden;
transition:all .3s ease;
}

.cta-button:hover{
background:#b3081c;
transform:translateY(-2px);
box-shadow:0 8px 25px rgba(209,10,33,.3);
}

.cta-button span{
position:relative;
z-index:2;
}

/* =====================================================
ANIMATION
===================================================== */

.fade-in{
opacity:0;
transform:translateY(30px);
animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{
to{
opacity:1;
transform:translateY(0);
}
}

/* =====================================================
TABLET RESPONSIVE
===================================================== */

@media (max-width:1024px){

.concrete-solutions .container{
grid-template-columns:1fr;
gap:40px;
}

.mid-section .mid-content{
order:1;
}

.mid-section .mid-image{
order:2;
}

.header-content h1,
.bottom-content h1{
font-size:34px;
}

.mid-content h2{
font-size:28px;
}

}

/* =====================================================
MOBILE RESPONSIVE
===================================================== */

@media (max-width:768px){

.concrete-solutions{
padding:60px 0;
}

.header-content h1,
.bottom-content h1{
font-size:28px;
}

.mid-content h2{
font-size:24px;
}

.header-content p,
.mid-content p,
.bottom-content p{
font-size:15px;
}

.cta-button{
padding:12px 24px;
font-size:14px;
}

.section-divider{
margin:30px 0;
}

}

/* =====================================================
SMALL MOBILE
===================================================== */

@media (max-width:480px){

.concrete-solutions .container{
padding:0 15px;
gap:30px;
}

.header-content h1,
.bottom-content h1{
font-size:24px;
}

.mid-content h2{
font-size:20px;
}

}



/* ===============================
   TESTIMONIAL / FEATURE SECTION
================================= */

.testimonial-features-section {
    background: linear-gradient(190deg, #000000, #CE0F2C);
    padding: clamp(20px, 6vw, 20px) 20px;
}

.testimonial-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* ===============================
   HEADER
================================= */

.header .main-title {
    font-size: clamp(26px, 4vw, 50px);
    font-weight: 900;
    color: #ffffff;
}

.accent-line {
    width: 70px;
    height: 4px;
    margin: 12px auto 25px;
    background: #ffffff;
}

.description-paragraph {
    max-width: 900px;
    margin: auto;
    color: #ffffff;
    font-size: clamp(15px, 2.5vw, 18px);
    line-height: 1.7;
}

/* ===============================
   FEATURE GRID
================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 3vw, 28px);
    margin-top: 30px;
}

.feature-box {
    background: #171717;
    border: 1px solid #262626;
    border-radius: 16px;
    padding: clamp(18px, 3vw, 28px);
    text-align: left;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-box.show {
    opacity: 1;
    transform: translateY(0);
}

.feature-box:hover {
    border-color: #ff3658;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 50, 70, 0.2);
}

.feature-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CE0F2C;
}

.feature-title {
    color: #ffffff;
    font-size: 18px;
}

.feature-description {
    color: #ffffff;
    font-size: 16px;
}

/* ===============================
   ULTRA MODERN SLIDER
================================= */

.feature-image {
    margin-top: clamp(40px, 6vw, 70px);
}

/* Container */
.slide-container {
    position: relative;
    max-width: 950px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;

    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.6),
        0 0 40px rgba(255,50,70,0.15);

    transition: 0.4s ease;
}

.slide-container:hover {
    transform: translateY(-6px);
}

/* Slides */
.mySlides {
    display: none;
    position: relative;
}

.mySlides img {
    width: 100%;
    height: clamp(250px, 50vw, 520px);
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Zoom */
.slide-container:hover img {
    transform: scale(1.05);
}

/* Overlay */
.mySlides::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* Navigation */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #fff;
    cursor: pointer;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);

    transition: 0.3s;
}

.prev:hover, .next:hover {
    background: #ff3658;
    transform: translateY(-50%) scale(1.1);
}

.prev { left: 15px; }
.next { right: 15px; }

/* Caption */
.caption-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* Thumbnails */
.row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
}

.column {
    flex: 0 0 auto;
    width: 80px;
}

.demo {
    width: 100%;
    border-radius: 8px;
    opacity: 0.6;
    cursor: pointer;
    transition: 0.3s;
}

.demo:hover {
    opacity: 1;
}

.active-thumb {
    opacity: 1;
    border: 2px solid #ff3658;
}

/* ===============================
   MOBILE
================================= */

@media (max-width: 768px) {

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .column {
        width: 60px;
    }

    .prev, .next {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .mySlides img {
        height: 220px;
    }
}




/* =====================================================
VISION / PROPERTY SECTION
===================================================== */

.container3{
    position:relative;
    background:none;
    padding:30px 20px;
    overflow:hidden;
}

/* floating gradient glow */

.container3::before,
.container3::after{
content:"";
position:absolute;
width:500px;
height:500px;
border-radius:50%;
filter:blur(120px);
opacity:.25;
z-index:0;
}



/* =====================================================
SECTION CARD (GLASSMORPHISM)
===================================================== */

.vision-section,
.property-section{
position:relative;
z-index:2;
max-width:1200px;
margin:auto;
margin-bottom:20px;
padding:20px;
border-radius:20px;
background:
linear-gradient(
145deg,
rgba(255,255,255,.85),
rgba(255,255,255,.65)
);
backdrop-filter:blur(12px);
box-shadow:
0 40px 90px rgba(0,0,0,0.45),
inset 0 1px 0 rgba(255,255,255,0.7);
overflow:hidden;
transition:transform .45s ease,
box-shadow .45s ease;
}

/* floating hover effect */

.vision-section:hover,
.property-section:hover{
transform:translateY(-8px);
box-shadow:
0 60px 120px rgba(0,0,0,0.55);
}


/* =====================================================
ANIMATED ACCENT BORDER
===================================================== */

.vision-section::before,
.property-section::before{

content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;

background:linear-gradient(
90deg,
#CE0F2C,
#ff4b6a,
#ff9bb0,
#CE0F2C
);

background-size:300% 100%;

animation:borderMove 8s linear infinite;
}

@keyframes borderMove{

0%{background-position:0%}
100%{background-position:300%}

}


/* =====================================================
GRID LAYOUT
===================================================== */

.vision-container,
.property-container{

display:grid;
grid-template-columns:1fr;
gap:70px;
align-items:center;

}

@media (min-width:900px){

.vision-container{
grid-template-columns:1fr 1fr;
}

.property-container{
grid-template-columns:1fr 1fr;
}

}


/* =====================================================
IMAGE STYLE (3D DEPTH)
===================================================== */

.vision-image,
.property-image{

position:relative;
overflow:hidden;

border-radius:16px;

box-shadow:
0 30px 70px rgba(0,0,0,.5);

transform-style:preserve-3d;

transition:
transform .6s ease,
box-shadow .6s ease;
}

.vision-image:hover,
.property-image:hover{

transform:
perspective(1000px)
rotateX(3deg)
rotateY(-4deg)
scale(1.03);

box-shadow:
0 50px 120px rgba(0,0,0,.65);
}


.vision-image img,
.property-image img{

width:100%;
height:100%;
display:block;

object-fit:cover;

transition:transform .7s ease;
}

.vision-image:hover img,
.property-image:hover img{

transform:scale(1.15);
}


/* light reflection sweep */

.vision-image::after,
.property-image::after{

content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;

background:linear-gradient(
120deg,
transparent 0%,
rgba(255,255,255,.5) 50%,
transparent 100%
);

opacity:.7;

transform:skewX(-20deg);

transition:left .8s ease;
}

.vision-image:hover::after,
.property-image:hover::after{

left:120%;
}


/* =====================================================
CONTENT STYLE
===================================================== */

.vision-content,
.property-content{
max-width:560px;
}

/* headline */

.vision-content h2,
.property-content h2{

font-size:2.8rem;
font-weight:800;

line-height:1.2;

color:#CE0F2C;

margin-bottom:25px;

letter-spacing:-0.5px;

position:relative;
}

/* animated underline */

.vision-content h2::after,
.property-content h2::after{

content:"";
display:block;

width:0;
height:4px;

background:linear-gradient(90deg,#CE0F2C,#ff5b7c);

border-radius:5px;

margin-top:12px;

transition:width .6s ease;
}

.vision-section:hover h2::after,
.property-section:hover h2::after{
width:90px;
}


/* paragraph styling */

.vision-content p,
.property-content p{

font-size:1.15rem;
line-height:1.9;

color:#333;

margin-bottom:18px;

opacity:.9;

transition:transform .4s ease;
}

.vision-content p:hover,
.property-content p:hover{

transform:translateX(5px);
}


/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:768px){

.vision-section,
.property-section{
padding:45px 28px;
}

.vision-content h2,
.property-content h2{
font-size:2rem;
}

.vision-content p,
.property-content p{
font-size:1rem;
}

}


/* =====================================================
POTENTIAL SECTION (ULTRA PREMIUM)
===================================================== */

.potential-section {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 20px auto;
    padding: 50px 30px;

    border-radius: 20px;

    /* 🔥 DARK PREMIUM BACKGROUND */
    background: linear-gradient(180deg, #CE0F2C, #000000);

    box-shadow:
        0 40px 90px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.08);

    overflow: hidden;

    transition: all .4s ease;
}

/* hover lift */
.potential-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 60px 120px rgba(0,0,0,0.7);
}

/* glowing top border */
.potential-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #CE0F2C,
        #ff4b6a,
        #ff9bb0,
        #CE0F2C
    );

    background-size: 300% 100%;
    animation: borderMove 8s linear infinite;
}

@keyframes borderMove {
    0% { background-position: 0% }
    100% { background-position: 300% }
}


/* =====================================================
GRID
===================================================== */

.potential-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 900px) {
    .potential-container {
        grid-template-columns: 1fr 1fr;
    }
}


/* =====================================================
IMAGE
===================================================== */

.potential-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;

    box-shadow:
        0 30px 70px rgba(0,0,0,.6);

    transition: all .6s ease;
}

.potential-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition: transform .7s ease;
}

/* hover 3D effect */
.potential-image:hover {
    transform:
        perspective(1000px)
        rotateX(3deg)
        rotateY(-4deg)
        scale(1.03);

    box-shadow:
        0 50px 120px rgba(0,0,0,.8);
}

.potential-image:hover img {
    transform: scale(1.15);
}

/* light sweep */
.potential-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );

    transform: skewX(-20deg);
    transition: left .8s ease;
}

.potential-image:hover::after {
    left: 120%;
}


/* =====================================================
CONTENT
===================================================== */

.potential-content {
    max-width: 560px;
}

/* title */
.potential-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;

    color: #ffffff;

    margin-bottom: 25px;
    letter-spacing: -0.5px;
    position: relative;
}

/* underline animation */
.potential-content h1::after {
    content: "";
    display: block;
    width: 0;
    height: 4px;

    background: linear-gradient(90deg, #ff4b6a, #ffffff);
    border-radius: 5px;

    margin-top: 12px;
    transition: width .6s ease;
}

.potential-section:hover h1::after {
    width: 90px;
}

/* paragraph */
.potential-content p {
    font-size: 1.1rem;
    line-height: 1.9;

    color: rgba(255,255,255,0.85);

    margin-bottom: 18px;

    transition: transform .4s ease;
}

.potential-content p:hover {
    transform: translateX(5px);
}


/* =====================================================
BUTTON
===================================================== */

.potential-btn {
    display: inline-block;
    padding: 14px 32px;
    margin-top: 15px;

    background: #ff3658;
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    border-radius: 50px;
    text-decoration: none;

    position: relative;
    overflow: hidden;

    transition: all .3s ease;
}

.potential-btn:hover {
    background: #d10a21;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,50,70,.4);
}


/* =====================================================
SCROLL ANIMATION
===================================================== */

.potential-section,
.potential-image,
.potential-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.potential-section.show,
.potential-image.show,
.potential-content.show {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .potential-section {
        padding: 40px 20px;
    }

    .potential-content h1 {
        font-size: 2rem;
    }

    .potential-content p {
        font-size: 1rem;
    }
}



/* =====================================================
MAIN CONTENT CONTAINER
===================================================== */

/* ---------- ROOT VARIABLES ---------- */
:root{
--primary-red:#CE0F2C;
--dark-red:#B6021F;
--light-bg:#E9C4CA;
--text-dark:#111;
--container:1200px;
}

/* ---------- MAIN CONTAINER ---------- */
.main-container{
background:var(--dark-red);
min-height:100vh;
padding:clamp(3rem,6vw,6rem) 1.2rem;
}

/* ---------- CONTENT WRAPPER ---------- */
.content-wrapper{
max-width:var(--container);
margin:auto;
display:flex;
flex-direction:column;
gap:clamp(3rem,6vw,5rem);
}

/* ---------- SECTION CARD (GRID) ---------- */
.section-card{
display:grid;
grid-template-columns:1fr;
align-items:center;
gap:3rem;
background:var(--light-bg);
border-radius:14px;
padding:clamp(1.5rem,3vw,3rem);
min-height:420px;
box-shadow:0 20px 40px rgba(0,0,0,.15);
transition:all .35s ease;
}

.section-card:hover{
transform:translateY(-6px);
box-shadow:0 30px 60px rgba(0,0,0,.25);
}

/* ---------- DESKTOP GRID ---------- */
@media(min-width:768px){
.section-card{
grid-template-columns:1fr 1fr;
}
}

/* ---------- CONTENT BLOCK ---------- */
.content-block{
display:flex;
flex-direction:column;
justify-content:center;
max-width:520px;
}

/* ---------- TYPOGRAPHY ---------- */
.section-title{
font-size:clamp(1.9rem,3vw,2.6rem);
font-weight:800;
color:var(--primary-red);
margin-bottom:1rem;
line-height:1.25;
text-align:left;
}

.text-paragraph{
font-size:clamp(1rem,1.1vw,1.1rem);
line-height:1.7;
color:var(--text-dark);
margin-bottom:.9rem;
text-align:left;
}

/* ---------- BUTTON ---------- */
.main-button{
display:inline-flex;
align-items:center;
justify-content:center;
text-decoration:none;
padding:14px 28px;
background:#fff;
color:var(--primary-red);
font-weight:600;
border-radius:50px;
border:none;
cursor:pointer;
transition:all .3s ease;
width:fit-content;
}

.main-button:hover{
background:var(--primary-red);
color:#fff;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* ---------- PORTFOLIO LINK ---------- */
.portfolio-link{
display:inline-flex;
align-items:center;
gap:6px;
font-weight:600;
color:var(--primary-red);
text-decoration:none;
transition:.3s;
}

.portfolio-link:hover{
color:#ff1e3c;
}

.link-arrow{
transition:transform .3s ease;
}

.portfolio-link:hover .link-arrow{
transform:translateX(6px);
}

/* ---------- IMAGE BLOCK ---------- */
.image-block{
display:flex;
align-items:center;
justify-content:center;
height:100%;
}

.image-wrapper{
width:100%;
aspect-ratio:16/10;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.image-wrapper img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .6s ease;
}

.image-wrapper:hover img{
transform:scale(1.08);
}

/* ---------- DECORATIVE STRIPE ---------- */
.flex-start-items{
display:flex;
align-items:flex-start;
gap:1rem;
}

.decorative-stripe-wrapper{
display:none;
}

.decorative-stripe{
width:4px;
background:#f97316;
border-radius:50px;
height:100%;
}

@media(min-width:768px){
.decorative-stripe-wrapper{
display:block;
}
}

/* ---------- SECTION ORDER (DESKTOP) ---------- */
@media(min-width:768px){

/* Section 1 → Text | Image */
.section-1 .content-block{order:1;}
.section-1 .image-block{order:2;}

/* Section 2 → Image | Text */
.section-2 .content-block{order:2;}
.section-2 .image-block{order:1;}

}

/* ---------- FADE ANIMATION ---------- */
.fade-in{
opacity:0;
transform:translateY(40px);
transition:opacity .8s ease, transform .8s ease;
}

.fade-in.is-visible{
opacity:1;
transform:translateY(0);
}

/* ---------- MOBILE OPTIMIZATION ---------- */
@media(max-width:600px){

.section-card{
padding:1.4rem;
gap:2rem;
}

.text-paragraph{
text-align:left;
}

}


/* =====================================================
SERVICE AREA SECTION (ULTRA PREMIUM FINAL)
===================================================== */

/* ===== SECTION ===== */
.service-area-section {
    padding: clamp(20px, 8vw, 20px) 20px;
    position: relative;
    text-align: center;
    color: #fff;
}

/* Overlay */
.service-area-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000000, #CE0F2C);
    z-index: 1;
}

.service-area-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADING ===== */
.service-area-gradient-heading {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    color: #ffffff;
}

/* underline */
.service-area-gradient-heading::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 12px auto;
    background: linear-gradient(90deg, #CE0F2C, #a50c23);
}

/* ===== CONTENT ===== */
.service-area-section-content {
    max-width: 1150px;
    margin: 0 auto 40px;
}

.service-area-section-content p {
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.1;
}

.highlight-text {
    color: #ff3b3b;
    font-weight: 900;
}

/* ===== GRID (WITH BACKGROUND IMAGE) ===== */
.service-area-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;

    padding: 30px;
    border-radius: 20px;

    /* 🔥 BACKGROUND IMAGE */
    background:
        linear-gradient(rgba(2,6,23,0.7), rgba(2,6,23,0.85)),
        url('../images/hero-section-image.png'); /* change image path */

    background-size: cover;
    background-position: center;

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);

    overflow: hidden;
}

/* grid overlay */
.service-area-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
    z-index: 0;
}

/* ===== CARD ===== */
.service-area--list {
    position: relative;
    z-index: 1;

    list-style: none;
    padding: 18px;

    border-radius: 14px;
    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s;
}

/* Hover */
.service-area--list:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(255,59,59,0.4);
}

/* ===== LINKS ===== */
.service-area--list li {
    margin-bottom: 10px;
}

.service-area--list a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #fff;
    text-decoration: none;

    padding: 8px;
    border-radius: 6px;
}

/* icon */
.service-area--list a::before {
    content: "✔";
    color: #ff3b3b;
}

/* hover */
.service-area--list a:hover {
    background: rgba(255,255,255,0.08);
    padding-left: 12px;
}



/* =====================================================
REVIEWS SECTION (ULTRA PREMIUM UI)
===================================================== */

.reviews-section {
    padding: clamp(20px, 8vw, 20px) 15px;
    background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* subtle background glow */
.reviews-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(182,2,31,0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

/* Container */
.reviews-container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Header */
.reviews-header {
    margin-bottom: clamp(5px, 5vw, 10px);
}

.reviews-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* Title */
.reviews-title {
    font-size: clamp(28px, 5vw, 60px);
    font-weight: 800;
    color: #B6021F;
}

/* GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 30px);
}

/* ======================
GLASS CARD
====================== */
.review-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    background: rgba(255, 255, 255, 0.65);
    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.4);

    padding: clamp(20px, 3vw, 35px);
    position: relative;

    transition: all 0.35s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Premium Hover */
.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(182,2,31,0.2),
        0 5px 20px rgba(0,0,0,0.1);
}

/* Gradient Border Trick */
.review-card {
    background:
        linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)) padding-box,
        linear-gradient(135deg, #B6021F, #000) border-box;
    border: 2px solid transparent;
}

/* GOOGLE BADGE */
.google-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.google-badge img {
    width: 16px;
}

/* STAR */
.review-stars {
    margin-top: 25px;
}

.star {
    font-size: 18px;
    color: #ccc;
}

.star.filled {
    color: #FFD700;
}

/* TEXT */
.review-text {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 15px;
    color: #333;
}

/* AUTHOR */
.review-author {
    margin-top: 20px;
    font-weight: 600;
    color: #000;
}

/* BUTTON */
.reviews-btn-wrap {
    margin-top: 50px;
}

.reviews-btn {
    display: inline-block;
    background: linear-gradient(135deg, #B6021F, #000);
    text-decoration: none;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.reviews-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(182,2,31,0.4);
}

/* ======================
RESPONSIVE
====================== */

/* Tablet */
@media (max-width: 992px) {
    .reviews-section {
        padding: 60px 15px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .review-card {
        border-radius: 14px;
    }

    .reviews-btn {
        width: 100%;
    }
}



/* ===============================
   PAVING EXPERIENCE SECTION
================================= */
.paving-experience-section{
    position: relative;
    padding: clamp(20px,5vw,50px) 20px;
    overflow: hidden;
    color:#fff;
}

/* overlay */
.paving-bg-overlay{
    position:absolute;
    inset:0;
    z-index:0;
}

/* particles */
.paving-particles{
    position:absolute;
    inset:0;    
    background-size: 20px 20px;    
    z-index:1;
}

@keyframes float{
    from{transform:translateY(0)}
    to{transform:translateY(-200px)}
}

/* container */
.paving-experience-container{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* glass card */
.paving-experience-wrapper{
    background:linear-gradient(180deg,#ce0f2c 0%,#000000 100%);
    backdrop-filter: blur(6px);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    padding:clamp(25px,4vw,50px);
    box-shadow:0 30px 80px rgba(0,0,0,0.5);
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}

.paving-experience-wrapper.active{
    opacity:1;
    transform:translateY(0);
}

/* title */
.paving-experience-title{
    font-size:clamp(26px,3vw,46px);
    font-weight:800;
    margin-bottom:25px;
    text-align: center;
}

/* counters */
.paving-counter-wrap{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.counter-box{
    text-align:center;
    padding:20px;
    border-radius:14px;
    background:rgb(14 14 14);
    transition:.3s;
}

.counter-box:hover{
    transform:translateY(-6px);
}

.counter{
    font-size:52px;
    font-weight:900;
    color:#CE0F2C;
}

/* text */
.paving-experience-text{
    font-size: 17px;
    color:#cbd5e1;
    line-height:1.8;
    text-align:left; /* 🔥 IMPORTANT FIX */
}

.paving-experience-text a{
    position: relative;
    color:#CE0F2C;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
}

/* animated underline */
.paving-experience-text a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    width:0%;
    height:2px;
    background:#CE0F2C;
    transition:.4s ease;
}

/* hover */
.paving-experience-text a:hover{
    color:#fff;
}

.paving-experience-text a:hover::after{
    width:100%;
}

/* ===============================
   BUTTON WRAPPER (NEW - BEST PRACTICE)
================================= */
.paving-btn-wrap{
    display:flex;
    justify-content:flex-start; /* 🔥 LEFT ALIGN */
    margin-top:25px;
}

/* ===============================
   PREMIUM CTA BUTTON
================================= */
.paving-experience-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    background: #CE0F2C;
    background-size: 200% 200%;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* hover */
.paving-experience-btn:hover{
    transform: translateY(-6px) scale(1.03);
}

/* shine */
.paving-experience-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transform: skewX(-20deg);
}

.paving-experience-btn:hover::before{
    left: 130%;
    transition: 0.8s;
}

/* glow */
.paving-experience-btn::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 rgba(249,115,22,0.5);
    transition: 0.4s;
}

.paving-experience-btn:hover::after{
    box-shadow: 0 0 25px rgba(249,115,22,0.6);
}

/* click */
.paving-experience-btn:active{
    transform: scale(0.96);
}

/* ===============================
   MOBILE
================================= */
@media(max-width:768px){

    .paving-experience-title{
        text-align:center;
    }

    .paving-btn-wrap{
        justify-content:center; /* 🔥 MOBILE CENTER */
    }

    .paving-experience-btn{
        width:100%;
        padding:14px;
    }
}



/* =========================
CONTACT SECTION
========================= */
.contact-v2-section {
    padding: clamp(10px, 8vw, 20px) 20px;
    background: radial-gradient(circle at 20% 10%, #1e293b, #020617);
    font-family: "Inter", sans-serif;
}

/* =========================
CONTAINER
========================= */
.contact-v2-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* =========================
PANELS (GLASS UI)
========================= */
.contact-v2-left,
.contact-v2-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
    border-radius: 20px;

    background: rgba(245, 7, 7, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* =========================
TYPOGRAPHY
========================= */
.contact-v2-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.contact-v2-subtitle {
    margin-top: 8px;
    font-size: 15px;
    color: #ffffff;
}

/* =========================
MAP
========================= */
.contact-v2-map {
    margin-top: 24px;
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.contact-v2-map iframe {
    width: 100%;
    height: 100%;
    border: none;

    filter: grayscale(1) contrast(1.1) brightness(0.9);
    transition: 0.4s ease;
}

.contact-v2-map:hover iframe {
    filter: none;
    transform: scale(1.03);
}

/* floating card */
.contact-v2-map-card {
    position: absolute;
    bottom: 16px;
    left: 16px;

    background: rgba(2,6,23,0.8);
    backdrop-filter: blur(10px);
    padding: 10px 14px;
    border-radius: 10px;

    color: #fff;
    font-size: 13px;
}

/* =========================
FORM
========================= */
.contact-v2-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

/* rows */
.contact-v2-row {
    display: flex;
    gap: 16px;
}

/* inputs */
.contact-v2-form input,
.contact-v2-form select,
.contact-v2-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.08);
    background: whitesmoke;

    color: #000000;
    font-size: 14px;
}

/* focus */
.contact-v2-form input:focus,
.contact-v2-form select:focus,
.contact-v2-form textarea:focus {
    outline: none;
    border-color: #CE0F2C;
    box-shadow: 0 0 0 2px #CE0F2C(56,189,248,0.2);
}

/* textarea sizes */
.contact-v2-form textarea {
    height: 90px;
    resize: none;
}

.contact-v2-form textarea.large {
    height: 130px;
}

/* =========================
RADIO
========================= */
.contact-v2-radio p {
    font-size: 14px;
    margin-bottom: 6px;
    color: #ffffff;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 14px;
}

.radio-group input {
    accent-color: #CE0F2C;
}


/* =========================
BUTTON
========================= */
.contact-v2-form button {
    margin-top: 10px;
    padding: 15px;
    border: none;
    border-radius: 999px;

    background: linear-gradient(180deg,#CE0F2C);
    color: #fff;
    font-weight: 600;
    cursor: pointer;

    transition: 0.3s;
}

.contact-v2-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(14,165,233,0.4);
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 992px) {

    .contact-v2-container {
        grid-template-columns: 1fr;
    }

    .contact-v2-row {
        flex-direction: column;
    }
}