/* Main Styles for Ambade Concrete - Luxury Edition */

/* Base Styles */
:root {
    --primary-color: #2d3436;
    /* Dark charcoal gray - matches logo */
    --secondary-color: #8d7b68;
    /* Matte bronze/gold accent */
    --accent-color: #a5a5a5;
    /* Concrete gray accent */
    --light-color: #f5f6fa;
    /* Off-white background */
    --dark-color: #1e272e;
    /* Deep charcoal */
    --text-color: #2d3436;
    /* Dark text for readability */
    --border-radius: 4px;
    /* Subtle rounded corners */
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    /* Soft, premium shadow */
    --transition: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    /* More premium font */
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    /* Luxury serif font for headings */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    /* Reduced spacing */
    color: var(--primary-color);
    letter-spacing: 0.5px;
    /* Elegant letter spacing */
}

p {
    margin-bottom: 1.2rem;
    /* Reduced spacing */
    font-weight: 300;
    /* Lighter weight for body text - more elegant */
    font-size: 1.05rem;
    /* Slightly larger for better readability */
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

ul,
ol {
    margin-bottom: 1.2rem;
    /* Reduced spacing */
    padding-left: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
    /* Reduced section padding */
    margin-bottom: 0;
    /* Removed section margin */
}

.alt-bg {
    background-color: #f8f9fb;
    /* Subtle off-white for alternating sections */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    /* Larger padding for more presence */
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Wider letter spacing for luxury feel */
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Subtle button shadow */
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    /*border: 2px solid var(--primary-color);*/
}

.btn-primary:hover {
    /* background-color: transparent; */
    background-color: var(--secondary-color);
    /* color: var(--primary-color); */
    color: white;
    transform: translateY(-2px);
    /* Subtle lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    /* background-color: transparent; */
    background-color: var(--secondary-color);
    /* color: var(--primary-color); */
    color: white;
    /* border: 2px solid var(--primary-color);*/
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    /* Softer, more elegant shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    /* Reduced padding */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    /* Adjusted for horizontal logo */
    width: auto;
}

.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 30px;
    /* Slightly reduced spacing between nav items */
}

.main-nav a {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Background */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/concrete_driveway.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hero Section */
.hero {
    padding: 160px 0;
    /* Slightly reduced hero height */
    text-align: center;
    color: white;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/concrete_driveway.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    /* Slightly reduced headline */
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Subtle text shadow */
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features Section */
.features {
    background-color: white;
    padding-top: 70px;
    /* Reduced top padding */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    /* Reduced spacing between features */
}

.feature-item {
    text-align: center;
    padding: 35px 25px;
    /* Reduced padding */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    /* Enhanced shadow on hover */
}

.feature-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* Services Preview */
.services-preview h2 {
    text-align: center;
    margin-bottom: 40px;
    /* Reduced spacing */
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

.services-preview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    /* Reduced spacing */
}

.service-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    /* Slightly reduced height */
    object-fit: cover;
}

.service-card h3,
.service-card p {
    padding: 0 20px;
}

.service-card h3 {
    margin-top: 20px;
    font-size: 20px;
}

.service-card .btn {
    margin: 20px;
}

/* CTA Section */
.cta {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/concrete_patio.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 18px;
}

/* Service Area Preview */
.service-area-preview {
    text-align: center;
}

.service-area-preview h2 {
    text-align: center;
    margin-bottom: 35px;
    /* Reduced spacing */
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

.service-area-preview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.service-area-preview p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.cities span {
    background-color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.cities span:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-area-note {
    font-style: italic;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

/* About Page */
.about-section {
    padding: 70px 0;
    /* Reduced padding */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    /* Reduced gap */
    align-items: center;
}

.about-content h2 {
    margin-bottom: 25px;
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline {
    margin-top: 40px;
    /* Reduced spacing */
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    /* Reduced spacing */
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 20px;
    width: 2px;
    height: calc(100% + 5px);
    background-color: var(--secondary-color);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-year {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

/* Service Area Section in About Page */
.service-area-section {
    padding: 70px 0;
    /* Reduced padding */
    background-color: var(--light-color);
}

.service-area-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-area-content h2 {
    margin-bottom: 25px;
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

.service-area-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.service-area-map {
    margin: 40px 0;
    /* Reduced spacing */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service-area-map img {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
    margin-left: -56px;
    /* Reduced top padding */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    /* Reduced gap */
    margin-bottom: 40px;
    /* Reduced spacing */
}

.footer-logo img {
    height: 50px;
    /* Adjusted for horizontal logo */
    margin-bottom: 15px;
    padding-left: 50px;
    height: 129px;
}

.footer-logo p {
    font-style: italic;
    color: #ddd;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
    /* Reduced spacing */
}

.footer-links a,
.footer-services a {
    color: #ddd;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links a::before,
.footer-services a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
    padding-left: 20px;
}

.footer-contact p {
    margin-bottom: 15px;
    /* Reduced spacing */
    display: flex;
    align-items: center;
    color: #ddd;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--secondary-color);
    margin-left: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    /* Reduced spacing */
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    /* background-color: var(--secondary-color); */
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    /* Reduced spacing */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* Page Banner */
.page-banner {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 80px 0;
    /* Reduced padding */
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/concrete_sidewalk.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.page-banner h1 {
    color: white;
    margin-bottom: 15px;
    font-size: 42px;
    position: relative;
    z-index: 1;
}

.page-banner p {
    position: relative;
    z-index: 1;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Page */
.service-detail {
    padding: 70px 0;
    /* Reduced padding */
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    /* Reduced gap */
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-content {
    direction: ltr;
}

.service-detail-content h2 {
    margin-bottom: 25px;
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.service-detail-gallery {
    direction: ltr;
}

.gallery-main {
    margin-bottom: 15px;
    /* Reduced spacing */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    /* Reduced spacing */
}

.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.process-steps {
    margin-top: 40px;
    /* Reduced spacing */
}

.process-step {
    display: flex;
    margin-bottom: 25px;
    /* Reduced spacing */
}

.process-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    /* Reduced spacing */
    box-shadow: var(--box-shadow);
}

.process-icon i {
    font-size: 24px;
    color: var(--secondary-color);
}

.process-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* Estimate Form */
.estimate-section {
    /* padding: 70px 0; */
    padding: 25px 0;
    /* Reduced padding */
}

.estimate-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    /* Reduced spacing */
}

.estimate-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    /* Reduced padding */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 25px;
    /* Reduced spacing */
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(141, 123, 104, 0.2);
}

.form-control.error {
    border-color: #e74c3c;
}

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

.form-check-input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.form-check-label {
    font-size: 16px;
}

.form-note {
    font-size: 14px;
    color: #777;
    margin-top: 20px;
}

.form-success {
    text-align: center;
    padding: 40px 0;
}

.form-success i {
    font-size: 60px;
    color: #2ecc71;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.form-error {
    background-color: #fdf0f0;
    color: #e74c3c;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

/* Sister Company Page */
.sister-company-intro {
    padding: 70px 0;
    /* Reduced padding */
}

.sister-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.sister-company-banner {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    /* Reduced padding */
    margin: 40px 0;
    /* Reduced spacing */
    box-shadow: var(--box-shadow);
}

.banner-content h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.service-list-strong{
    padding-right: 10px;
}

.service-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.service-list i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    /* Reduced spacing */
    margin: 40px 0;
    /* Reduced spacing */
}

.plan-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    z-index: 1;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-header {
    background-color: var(--light-color);
    padding: 25px;
    /* Reduced padding */
    text-align: center;
}

.plan-header h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.plan-price span {
    font-size: 16px;
    font-weight: 400;
}

.plan-features {
    padding: 25px;
    /* Reduced padding */
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.plan-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.plans-note {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
        /* Further reduced padding for medium screens */
    }

    .hero {
        padding: 120px 0;
        /* Reduced hero height */
    }

    .hero h1 {
        font-size: 42px;
    }

    .about-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

    .about-image {
        order: -1;
    }

    .service-detail-gallery {
        order: -1;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav li {
        margin: 0 0 20px;
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
    }

    .mobile-nav-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .feature-grid,
    .services-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-8px);
    }

    .estimate-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
        /* Further reduced padding for small screens */
    }

    .hero {
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px !important;
    }

    .feature-item,
    .service-card,
    .sister-company-banner {
        padding: 25px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links h4::after,
    .footer-services h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links a::before,
    .footer-services a::before {
        display: none;
    }

    .footer-links a,
    .footer-services a {
        padding-left: 0;
    }

    .footer-links a:hover,
    .footer-services a:hover {
        padding-left: 0;
    }

    /* New style for Our Premium Concrete Services section start */

    .section-profile {
        position: relative;
        height: 500px;
        width: 1075px;
        display: flex;
        align-items: center;
    }

    .swiper {
        width: 950px;
    }

    .containerBox {
        border-radius: 20px;
    }

    .profileCard .profileImg {
        width: 140px;
        height: 140px;
        border-radius: 50%;
    }

    .profileCard .profileImg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid #000;
    }

    .profileCard {
        position: relative;
        background: #000;
        border: 3px solid #0ef;
        border-radius: 20px;
    }

    .profileCard::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #0ef;
        clip-path: circle(55% at 0 0);
        border-top-left-radius: 10px;
    }

    .profileCardBody {
        position: relative;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 30px;
    }

    .profileSocial {
        position: absolute;
        top: 10px;
        right: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profileSocial i {
        color: #fff;
        margin-top: 10px;
        cursor: pointer;
        transition: 0.3s;
    }

    .profileSocial i:hover {
        color: #0ef;
    }

    .profileInfo {
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-top: 10px;
        color: #fff;
    }

    .profileInfo .profileName {
        font-size: 20px;
        font-weight: 600;
    }

    .profileInfo .profileJob {
        font-size: 15px;
        font-weight: 500;
    }

    .profileStars {
        display: flex;
        align-items: center;
        margin-top: 18px;
    }

    .profileStars i {
        font-size: 18px;
        color: #0ef;
        margin: 0 2px;
    }

    .profileActions {
        display: flex;
        justify-content: space-around;
        width: 110%;
        margin-top: 20px;
    }

    .profileActions button {
        background: #0ef;
        border: none;
        outline: none;
        color: #000;
        font-weight: 600;
        padding: 8px 22px;
        border-radius: 20px;
        font-size: 14px;
        cursor: pointer;
        transition: 0.3s;
    }

    .profileActions button:hover {
        background: #fff;
    }

    .swiper-pagination-bullet {
        height: 7px;
        width: 26px;
        background: #0ef;
        border-radius: 25px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: #0ef;
    }

    /* New style for Our Premium Concrete Services section end */
}

/* Services Slider Styles */
.services-slider {
    position: relative;
    padding: 0 50px;
    margin-top: 40px;
}

.services-slider .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.services-slider .service-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
}

.services-slider .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-slider .service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
}

.services-slider .service-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.services-slider .service-card-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
    margin-top: 0;
}

.services-slider .service-card-content p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.services-slider .service-card-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex
;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
    padding: 10px 0 0 0;
}

/* Swiper Navigation Buttons */
.services-next,
.services-prev {
    width: 44px !important;
    height: 44px !important;
    margin-top: -22px !important;
    background-color: var(--primary-color) !important;
    border-radius: 50% !important;
    transition: var(--transition) !important;
}

.services-next:hover,
.services-prev:hover {
    background-color: var(--secondary-color) !important;
    transform: scale(1.1);
}

.services-next::after,
.services-prev::after {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: white !important;
}

.services-next {
    right: 10px !important;
}

.services-prev {
    left: 10px !important;
}

/* Swiper Pagination */
.services-pagination {
    position: relative !important;
    margin-top: 30px !important;
}

.services-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: var(--accent-color) !important;
    opacity: 0.5 !important;
    transition: var(--transition) !important;
}

.services-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-color) !important;
    opacity: 1 !important;
    transform: scale(1.2);
}

/* Responsive Design for Services Slider */
@media (max-width: 768px) {
    .services-slider {
        padding: 0 20px;
    }
    
    .services-next {
        right: 5px !important;
    }
    
    .services-prev {
        left: 5px !important;
    }
    
    .services-next,
    .services-prev {
        width: 36px !important;
        height: 36px !important;
        margin-top: -18px !important;
    }
    
    .services-next::after,
    .services-prev::after {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .services-slider {
        padding: 0 10px;
    }
    
    .services-slider .service-card-content {
        padding: 15px;
    }
    
    .services-slider .service-card-content h3 {
        font-size: 18px;
    }
    
    .services-slider .service-card-content p {
        font-size: 14px;
    }
}



/* Legal Pages Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    color: white;
}

.page-header .last-updated {
    font-size: 0.9rem;
    opacity: 0.7;
}

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.legal-intro {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

.legal-intro p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.legal-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 8px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-color);
}

.contact-info {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 6px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.legal-footer {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.legal-footer p {
    margin: 0;
    font-weight: 500;
    color: var(--primary-color);
}

/* Footer bottom links */
.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-wrapper {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .legal-content {
        padding: 40px 0;
    }
}

