/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== TOP BAR STYLES ===== */
.top-bar {
    background: #1c5235;
    color: white;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 36px;
}

.top-bar-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 2rem;
    height: 100%;
}

.top-bar-phone {
    display: flex;
    align-items: stretch;
    gap: 2px;
    height: 100%;
}

.top-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 12px 0 0;
    height: 100%;
    transition: background 0.3s ease;
    min-width: 0;
    flex-shrink: 0;
}

.top-contact-item i {
    color: white;
    font-size: 13px;
    flex-shrink: 0;
    padding-left: 0;
    margin-left: 0;
}

.top-contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.top-contact-item a:hover {
    opacity: 0.9;
    color: #95a5a6;
}

.top-bar-social {
    display: flex;
    gap: 5px;
    align-items: center;
}

.top-bar-social a {
    color: white;
    font-size: 14px;
    transition: color 0.3s ease;
    gap: 5px;
}

.top-bar-social a:hover {
    color: #95a5a6;
}

/* ===== NAVIGATION STYLES ===== */
.navbar {
    background: white;
    padding: 0;
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(28, 82, 53, 0.15);
    height: 80px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.navbar-content {
    width: 100%;
    max-width: 1440px;
    padding: 0 2rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.nav-center {
    display: flex;
    align-items: stretch;
    flex: 1;
    justify-content: center;
    height: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: stretch;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: stretch;
    text-transform: uppercase;
}

.nav-links a {
    color: #1c5235;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0 1.5rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 80px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 82, 53, 0.1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
    z-index: -1;
}

.nav-links a:hover::before {
    transform: scaleY(1);
}

.nav-links a.active {
    background: #1c5235;
    color: white;
}

.nav-links a.active::before {
    display: none;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    padding-top: 10px;
}

.cta-button {
    background: #b83c56;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
    white-space: nowrap;
}

.cta-button:hover {
    background: #a03449;
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

/* ===== HAMBURGER MENU STYLES ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(28, 82, 53, 0.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1c5235;
    border-radius: 2px;
    transition: all 0.3s ease;
}



/* Desktop Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 374px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    width: 374px;
!important;
}

.dropdown-menu li {
    list-style: none;
    width: 374px;
!important;
}

.dropdown-menu li a {
    width: 374px;
!important;
}

.dropdown-link {
    display: block;
    padding: 8px 16px;
    color: #333 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    width: 374px;
!important;
}

.dropdown-link:hover {
    color: #1c5235 !important;
    background-color: #f5f5f5;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .nav-links a {
        font-size: 0.9rem;
        padding: 0 1.2rem;
        margin: 0 0.75rem;
    }
}

@media (max-width: 768px) {
    .logo img {

        width: 120px; !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-center {
        display: none;
    }

    .navbar {
        top: 32px;
    }

    .navbar-content {
        padding: 0 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .cta-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .top-contact-item:hover {
        background: none;
    }

    .top-contact-item {
        padding-right: 0;
    }

    /* Responsive adjustments for dropdown */
    .dropdown-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-contact-item:last-child {
        display: none;
    }

    .top-contact-item {
        padding: 0 8px;
    }

    .cta-button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .nav-left {
        gap: 1rem;
    }
}

/* ===== HERO SECTION STYLES ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/slides/fire-flood-water-damage.png') center center / cover fixed no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 116px;
    color: white;
    position: relative;
}


.hero-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 116px);
}

.hero-text {
    text-align: center;
    max-width: 1024px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.fire-text {
    color: #dc3545;
    text-transform: uppercase;
    font-weight: 800;
}

.flood-text {
    color: #007bff;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #b83c56;
    color: white;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
}

.btn-primary:hover {
    background: #a03449;
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1c5235;
}

/* ===== RESPONSIVE STYLES FOR HERO ===== */
@media (max-width: 768px) {
    .hero {
        padding-top: 112px;
    }

    .hero-content {
        min-height: calc(100vh - 112px);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

/* ===== SERVICES SECTION STYLES ===== */
.services-section {
    padding: 100px 0;
    background: #f1f3f4;
    position: relative;
}

.services-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Services */
.services-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border-left: 4px solid #e9ecef;
}

.service-card:hover {
    border-left-color: #b83c56;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-card h3 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.service-btn {
    background: transparent;
    color: #b83c56;
    border: 2px solid #b83c56;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}
.secondary-service-btn{

    background: transparent;
    color: #b83c56;
    border: 2px solid #b83c56;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 10px; !important;

}

.service-btn:hover {
    background: #b83c56;
    color: white;
    transform: translateY(-2px);
}

/* Secondary Services */
.services-secondary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-secondary-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border-left: 4px solid #e9ecef;
}

.service-secondary-card:hover {
    border-left-color: #b83c56;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-secondary-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.service-secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-secondary-card:hover .service-secondary-image img {
    transform: scale(1.05);
}

.service-secondary-content {
    padding: 1.25rem;
}

.service-secondary-card h3 {
    color: #1c5235;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-secondary-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    padding-bottom: 30px;
}

/* ===== RESPONSIVE STYLES FOR SERVICES ===== */
@media (max-width: 1024px) {
    .services-section {
        padding: 80px 0;
    }

    .services-container {
        padding: 0 1rem;
    }

    .services-header h2 {
        font-size: 2.2rem;
    }

    .services-featured {
        gap: 2rem;
    }

    .service-card {
        transform: none;
    }

    .service-card:hover {
        transform: translateY(-3px);
    }

    .service-image {
        height: 160px;
    }

    .service-content {
        padding: 1.25rem;
    }

    .services-secondary {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-secondary-card {
        transform: none;
    }

    .service-secondary-card:hover {
        transform: translateY(-3px);
    }

    .service-secondary-image {
        height: 100px;
    }

    .service-secondary-content {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-header p {
        font-size: 1rem;
    }

    .services-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-image {
        height: 160px;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .services-secondary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-secondary-image {
        height: 100px;
    }

    .service-secondary-content {
        padding: 1rem;
    }

    .service-secondary-card h3 {
        font-size: 1rem;
    }

    .service-secondary-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .services-header p {
        font-size: 0.9rem;
    }

    .service-content {
        padding: 1rem;
    }

    .service-image {
        height: 140px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .service-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .service-secondary-content {
        padding: 0.75rem;
    }

    .service-secondary-image {
        height: 80px;
    }

    .service-secondary-card h3 {
        font-size: 0.95rem;
    }

    .service-secondary-card p {
        font-size: 0.8rem;
    }
}

/* ===== BDMA ACCREDITATION SECTION ===== */
.bdma-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.bdma-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 82, 53, 0.03) 0%, rgba(184, 60, 86, 0.03) 100%);
    z-index: 1;
}

.bdma-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.bdma-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
}

.bdma-text {
    padding-right: 2rem;
}

.bdma-text h2 {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.bdma-text h2 strong {
    color: #b83c56;
}

.bdma-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.bdma-text p strong {
    color: #1c5235;
    font-weight: 600;
}

.bdma-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-transform: uppercase;
}

.bdma-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bdma-feature .check-icon {
    color: #28a745;
    font-size: 0.8rem;
}

.bdma-feature span {
    color: #1c5235;
    font-weight: 500;
    font-size: 1rem;
}

.bdma-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(28, 82, 53, 0.1);
    transition: all 0.3s ease;
}

.bdma-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(28, 82, 53, 0.2);
}

.bdma-logo img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    width: auto;
    transition: all 0.3s ease;
}

.bdma-logo:hover img {
    transform: scale(1.05);
}

/* ===== RESPONSIVE STYLES FOR BDMA ===== */
@media (max-width: 1024px) {
    .bdma-content {
        grid-template-columns: 1fr 250px;
        gap: 3rem;
    }

    .bdma-text {
        padding-right: 1rem;
    }

    .bdma-text h2 {
        font-size: 2.2rem;
    }

    .bdma-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .bdma-section {
        padding: 60px 0;
    }

    .bdma-container {
        padding: 0 1rem;
    }

    .bdma-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .bdma-text {
        padding-right: 0;
    }

    .bdma-text h2 {
        font-size: 2rem;
    }

    .bdma-text p {
        font-size: 1rem;
    }

    .bdma-features {
        gap: 1rem;
        justify-content: center;
    }

    .bdma-logo {
        padding: 1.5rem;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .bdma-section {
        padding: 40px 0;
    }

    .bdma-text h2 {
        font-size: 1.8rem;
    }

    .bdma-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .bdma-features {
        gap: 0.75rem;
    }

    .bdma-feature span {
        font-size: 0.9rem;
    }

    .bdma-logo {
        padding: 1rem;
    }
}

/* ===== RECENT PROJECTS SECTION STYLES ===== */
.recent-projects-section {
    padding-top: 50px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 50px;
    background: #f8f9fa;
    position: relative;
}

.recent-projects-container {
    max-width: 1440px;
    padding: 0 2rem;
    margin-top: 25px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
}

.recent-projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.recent-projects-header h2 {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.recent-projects-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.recent-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.recent-project-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border-left: 4px solid #e9ecef;
    cursor: pointer;
    position: relative;
}

.recent-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #1c5235, #b83c56);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.recent-project-card:hover::before {
    transform: scaleX(1);
}

.recent-project-card:hover {
    border-left-color: #b83c56;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.recent-project-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.recent-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-project-card:hover .recent-project-image img {
    transform: scale(1.03);
}

.recent-project-content {
    padding: 2rem;
}

.recent-project-title {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.recent-project-date {
    color: #b83c56;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.recent-project-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.recent-project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.recent-project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.9rem;
}

.recent-project-location i {
    color: #1c5235;
}

.recent-project-read-more {
    background: transparent;
    color: #1c5235;
    border: 2px solid #1c5235;
    padding: 8px 16px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.recent-project-read-more:hover {
    background: #1c5235;
    color: white;
    transform: translateY(-2px);
}
.recent-project-read-more i {

    color: #fff; !important;
}

/* ===== RESPONSIVE STYLES FOR RECENT PROJECTS ===== */
@media (max-width: 1024px) {
    .recent-projects-section {
        padding-top: 80px;
        padding-right: 0;
        padding-left: 0;
    }

    .recent-projects-container {
        padding: 0 1rem;
    }

    .recent-projects-header h2 {
        font-size: 2.2rem;
    }

    .recent-projects-grid {
        gap: 1.5rem;
    }

    .recent-project-card {
        transform: none;
    }

    .recent-project-card:hover {
        transform: translateY(-3px);
    }

    .recent-project-image {
        height: 200px;
    }

    .recent-project-content {
        padding: 1.5rem;
    }

    .recent-project-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .recent-projects-section {
        padding: 60px 0;
    }

    .recent-projects-header {
        margin-bottom: 3rem;
    }

    .recent-projects-header h2 {
        font-size: 2rem;
    }

    .recent-projects-header p {
        font-size: 1rem;
    }

    .recent-projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .recent-project-image {
        height: 200px;
    }

    .recent-project-content {
        padding: 1.5rem;
    }

    .recent-project-title {
        font-size: 1.2rem;
    }

    .recent-project-description {
        font-size: 0.9rem;
    }

    .recent-project-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .recent-project-read-more {
        align-self: stretch;
        text-align: center;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .recent-projects-section {
        padding: 40px 0;
    }

    .recent-projects-header h2 {
        font-size: 1.8rem;
    }

    .recent-projects-header p {
        font-size: 0.9rem;
    }

    .recent-projects-grid {
        gap: 1.5rem;
    }

    .recent-project-content {
        padding: 1.25rem;
    }

    .recent-project-image {
        height: 180px;
    }

    .recent-project-title {
        font-size: 1.1rem;
    }

    .recent-project-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .recent-project-read-more {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ===== CONTACT FORM + TESTIMONIALS SECTION STYLES ===== */
.contact-testimonials-section {
    background: white;
    padding: 4rem 0;
}

.contact-testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-testimonials-header h2 {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-testimonials-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.contact-form-section h3 {
    color: #1c5235;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;

}

.form-group label {
    color: #1c5235;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1c5235;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 82, 53, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.form-submit {
    background: #1c5235;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.form-submit:hover {
    background: #2a6b42;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 82, 53, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    display: flex;
    flex-direction: column;
}

.testimonials-section h3 {
    color: #1c5235;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #1c5235;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-stars {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1c5235;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    color: #1c5235;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.testimonial-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== RESPONSIVE STYLES FOR CONTACT + TESTIMONIALS ===== */
@media (max-width: 1024px) {
    .contact-testimonials-section {
        padding: 3rem 0;
    }

    .contact-testimonials-container {
        padding: 0 1rem;
    }

    .contact-testimonials-content {
        gap: 3rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .testimonial {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-testimonials-section {
        padding: 2.5rem 0;
    }

    .contact-testimonials-header {
        margin-bottom: 2rem;
    }

    .contact-testimonials-header h2 {
        font-size: 2rem;
    }

    .contact-testimonials-header p {
        font-size: 1rem;
    }

    .contact-testimonials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 2rem;
        order: 2;
    }

    .testimonials-section {
        order: 1;
    }

    .testimonial {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .testimonial-author {
        gap: 0.75rem;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-testimonials-section {
        padding: 2rem 0;
    }

    .contact-testimonials-header h2 {
        font-size: 1.8rem;
    }

    .contact-testimonials-header p {
        font-size: 0.9rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-submit {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .testimonial {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .testimonial-info h4 {
        font-size: 0.95rem;
    }

    .testimonial-info p {
        font-size: 0.85rem;
    }
}

/* ===== CTA SECTION STYLES ===== */
.cta-section {
    background: #f1f3f4;
    padding: 4rem 0;
}

.cta-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #95a5a6, #7f8c8d);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.1rem;
    color: #5d6d7e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    gap: 2rem;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #34495e;
    display: block;
    margin-bottom: 0.25rem;
}

.cta-stat-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

.cta-action {
    text-align: center;
    min-width: 200px;
}

.cta-phone {
    background: #1c5235;
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    background: #2a6b42;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 82, 53, 0.3);
}

.cta-quote {
    color: #7f8c8d;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #95a5a6;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.cta-quote:hover {
    color: #1c5235;
    border-bottom-color: #1c5235;
}

/* ===== RESPONSIVE STYLES FOR CTA ===== */
@media (max-width: 1024px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-container {
        padding: 0 1rem;
    }

    .cta-card {
        padding: 2.5rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .cta-stat-number {
        font-size: 1.6rem;
    }

    .cta-stat-text {
        font-size: 0.85rem;
    }

    .cta-action {
        min-width: auto;
    }

    .cta-phone {
        font-size: 1.3rem;
        padding: 18px 25px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2rem 0;
    }

    .cta-card {
        padding: 1.5rem;
    }

    .cta-text h2 {
        font-size: 1.6rem;
    }

    .cta-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .cta-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cta-stat {
        min-width: 80px;
    }

    .cta-stat-number {
        font-size: 1.4rem;
    }

    .cta-stat-text {
        font-size: 0.8rem;
    }

    .cta-phone {
        font-size: 1.2rem;
        padding: 16px 20px;
    }
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: #1c5235;
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Company Info Section */
.footer-company {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-about {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: #b83c56;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 60, 86, 0.4);
}

/* Quick Links Section */
.footer-links h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #b83c56;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #b83c56;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    background: #b83c56;
    transform: scale(1.5);
}

/* Contact Info Section */
.footer-contact h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #b83c56;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: white;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #b83c56;
}

/* Recent Projects Section */
.footer-projects h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-projects h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #b83c56;
}

.project-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.project-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.project-item h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.project-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #b83c56;
}

/* ===== RESPONSIVE STYLES FOR FOOTER ===== */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        gap: 1.5rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .contact-item {
        margin-bottom: 1rem;
    }

    .project-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
}

/* ===== HERO SERVICE SECTION CSS ===== */
.hero-service-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://picsum.photos/1920/600?random=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 116px;
    text-align: center;
    position: relative;
}

.hero-service-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-service-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    margin-top: -60px;
}

.hero-service-tagline {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-service-description {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-service-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-primary-btn {
    background: #b83c56;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
}

.hero-primary-btn:hover {
    background: #a03449;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

.hero-secondary-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-secondary-btn:hover {
    background: white;
    color: #1c5235;
}

/* ===== MAIN CONTENT SECTION CSS ===== */
.main-content-section {
    padding: 6rem 0;
    background: white;
}

.main-content-container {
    max-width: 1440px;
    padding: 0 2rem;
    margin: 100px auto 0;
}

.main-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-primary-area {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid #1c5235;
}

.content-main-title {
    color: #1c5235;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.content-description {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-features-wrapper {
    margin: 2.5rem 0;
}

.content-features-title {
    color: #1c5235;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.content-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #b83c56;
    transition: all 0.3s ease;
}

.content-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-feature-icon {
    color: #b83c56;
    font-size: 1.3rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.content-feature-details h4 {
    color: #1c5235;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.content-feature-details p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.content-process-wrapper {
    margin: 2.5rem 0;
}

.content-process-title {
    color: #1c5235;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-process-steps {
    display: grid;
    gap: 1rem;
}

.content-process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-step-number {
    background: #1c5235;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.content-step-details h4 {
    color: #1c5235;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.content-step-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== SIDEBAR CONTACT FORM CSS ===== */
.sidebar-contact-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    border: 1px solid #e9ecef;
    position: sticky;
    top: 140px;
}

.sidebar-contact-title {
    color: #1c5235;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.sidebar-contact-tagline {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.sidebar-contact-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.sidebar-contact-info-title {
    color: #1c5235;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
}

.sidebar-contact-item:last-child {
    margin-bottom: 0;
}

.sidebar-contact-icon {
    color: #b83c56;
    font-size: 1.1rem;
    min-width: 20px;
}

.sidebar-contact-details h5 {
    color: #1c5235;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-contact-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.sidebar-contact-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-contact-link:hover {
    color: #b83c56;
}

.sidebar-form-wrapper {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.sidebar-form-title {
    color: #1c5235;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.sidebar-form-group {
    margin-bottom: 1.5rem;
}

.sidebar-form-label {
    color: #1c5235;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.sidebar-form-input,
.sidebar-form-select,
.sidebar-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.sidebar-form-input:focus,
.sidebar-form-select:focus,
.sidebar-form-textarea:focus {
    outline: none;
    border-color: #1c5235;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 82, 53, 0.2);
}

.sidebar-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.sidebar-form-input::placeholder,
.sidebar-form-textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.sidebar-form-submit {
    background: #b83c56;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
}

.sidebar-form-submit:hover {
    background: #a03449;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

/* ===== FAQ SECTION CSS ===== */
.faq-main-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
}

.faq-main-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header-section {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-main-title {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.faq-main-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.faq-item-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid #e9ecef;
}

.faq-item-card:hover {
    border-left-color: #b83c56;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-item-card.active {
    border-left-color: #1c5235;
}

.faq-question-wrapper {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question-wrapper:hover {
    background: #f8f9fa;
}

.faq-question-text {
    color: #1c5235;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle-icon {
    color: #b83c56;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 16px;
}

.faq-item-card.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: #1c5235;
}

.faq-answer-wrapper {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item-card.active .faq-answer-wrapper {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 1rem;
}

.faq-footer-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.faq-footer-title {
    color: #1c5235;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-footer-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.faq-footer-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact-btn,
.faq-form-btn {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.faq-contact-btn {
    background: #b83c56;
    color: white;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
}

.faq-contact-btn:hover {
    background: #a03449;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

.faq-form-btn {
    background: transparent;
    color: #1c5235;
    border: 2px solid #1c5235;
}

.faq-form-btn:hover {
    background: #1c5235;
    color: white;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .main-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sidebar-contact-wrapper {
        position: static;
        order: -1;
    }

    .content-features-grid {
        grid-template-columns: 1fr;
    }

    .faq-items-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-service-section {
        padding: 6rem 0 3rem;
        margin-top: 112px;
    }

    .hero-service-title {
        font-size: 2.2rem;
    }

    .hero-service-actions {
        flex-direction: column;
        align-items: center;
    }

    .main-content-section {
        padding: 4rem 0;
    }

    .main-content-container {
        padding: 0 1rem;
    }

    .content-primary-area {
        padding: 2rem;
    }

    .sidebar-contact-wrapper {
        padding: 2rem;
    }

    .sidebar-form-wrapper {
        padding: 1.5rem;
    }

    .faq-main-section {
        padding: 3rem 0;
    }

    .faq-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-service-section {
        padding: 4rem 0 2rem;
    }

    .hero-service-title {
        font-size: 1.8rem;
    }

    .content-primary-area {
        padding: 1.5rem;
    }

    .content-main-title {
        font-size: 1.8rem;
    }

    .sidebar-contact-wrapper {
        padding: 1.5rem;
    }

    .sidebar-form-wrapper {
        padding: 1.25rem;
    }

    .sidebar-form-input,
    .sidebar-form-select,
    .sidebar-form-textarea {
        padding: 10px 12px;
    }
}

/* ===== CONTENT IMAGE FEATURE STYLES ===== */
.content-image-feature {
    margin: 3rem 0;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1c5235;
    transition: all 0.3s ease;
}

.content-image-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.content-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.content-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-image-feature:hover .content-feature-image {
    transform: scale(1.05);
}

.content-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 82, 53, 0.1), rgba(184, 60, 86, 0.1));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
}

.content-image-badge {
    background: rgba(184, 60, 86, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
}

.content-image-badge i {
    font-size: 1rem;
}

.content-image-caption {
    padding: 2rem;
    background: white;
}

.content-image-caption h4 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-image-caption p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTENT IMAGE SHOWCASE STYLES ===== */
.content-image-showcase {
    margin: 3rem 0;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #b83c56;
}

.content-showcase-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.content-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-image-showcase:hover .content-showcase-image {
    transform: scale(1.03);
}

.content-showcase-caption {
    padding: 2rem;
    background: white;
}

.content-showcase-caption h4 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-showcase-caption p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE STYLES FOR IMAGES ===== */
@media (max-width: 1024px) {
    .content-image-wrapper {
        height: 350px;
    }

    .content-image-grid {
        min-height: 320px;
    }

    .content-image-main {
        height: 320px;
    }

    .content-image-info {
        padding: 2rem;
    }

    .content-image-caption {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .content-image-feature {
        margin: 2rem 0;
    }

    .content-image-showcase {
        margin: 2rem 0;
    }

    .content-image-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .content-image-main {
        height: 280px;
        order: 1;
    }

    .content-image-info {
        order: 2;
        padding: 2rem;
    }

    .content-image-wrapper {
        height: 280px;
    }

    .content-image-overlay {
        padding: 1rem;
    }

    .content-image-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .content-image-caption {
        padding: 1.5rem;
    }

    .content-image-caption h4 {
        font-size: 1.2rem;
    }

    .content-image-caption p {
        font-size: 0.95rem;
    }

    .content-image-info h4 {
        font-size: 1.3rem;
    }

    .content-image-info p {
        font-size: 0.95rem;
    }

    .content-image-stats {
        bottom: 1rem;
        left: 1rem;
        gap: 0.75rem;
    }

    .content-stat-item {
        padding: 0.5rem 0.75rem;
    }

    .content-stat-number {
        font-size: 1.1rem;
    }

    .content-stat-label {
        font-size: 0.75rem;
    }

    .content-image-info {
        padding: 2rem;
    }

    .content-image-info h4 {
        font-size: 1.3rem;
    }

    .content-image-info p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .content-image-wrapper {
        height: 240px;
    }

    .content-image-main {
        height: 240px;
    }

    .content-image-info {
        padding: 1.5rem;
    }

    .content-image-caption {
        padding: 1.25rem;
    }

    .content-image-caption h4 {
        font-size: 1.1rem;
    }

    .content-image-caption p {
        font-size: 0.9rem;
    }

    .content-image-info h4 {
        font-size: 1.2rem;
    }

    .content-image-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .content-equipment-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .content-image-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .content-stat-item {
        padding: 0.4rem 0.6rem;
    }

    .content-stat-number {
        font-size: 1rem;
    }

    .content-stat-label {
        font-size: 0.7rem;
    }
}

.cookie-banner-card {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 420px;
    box-shadow: 0 15px 35px rgba(28, 82, 53, 0.15);
    z-index: 1000;
    animation: slideInRight 0.6s ease-out;
    border-left: 5px solid #b83c56;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cookie-banner-card .header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.cookie-banner-card .company-logo {
    width: 24px;
    height: 24px;
    background: #1c5235;
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.cookie-banner-card h3 {
    color: #1c5235;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.cookie-banner-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #495057;
    font-size: 14px;
}

.cookie-banner-card .actions {
    display: flex;
    gap: 12px;
}

.cookie-banner-card button {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-banner-card .btn-accept {
    background: #b83c56;
    color: white;
}

.cookie-banner-card .btn-accept:hover {
    background: #a03449;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 60, 86, 0.25);
}

.cookie-banner-card .btn-decline {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.cookie-banner-card .btn-decline:hover {
    background: #e9ecef;
    color: #495057;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #6c757d;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    color: #495057;
    background: #f8f9fa;
}

.legal-links {
    margin-top: 15px;
    text-align: center;
}

.legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 12px;
    margin: 0 8px;
    font-weight: 500;
}

.legal-links a:hover {
    color: #b83c56;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-banner-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Simulate your content layout */
.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.main-content {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid #1c5235;
}

.sidebar-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* ===== 3x3 GRID GALLERY STYLES (for narrow column) ===== */
.content-gallery-grid {
    margin: 2rem 0;
}

.gallery-grid-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.gallery-grid-title {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-grid-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 3x3 Grid Layout - No Spacing */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-grid-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-grid-item:hover {
    border-color: #b83c56;
    z-index: 2;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(184, 60, 86, 0.3);
}

.gallery-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-grid-item:hover .gallery-grid-image {
    transform: scale(1.1);
}

.gallery-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 82, 53, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 0.5rem;
    text-align: center;
}

.gallery-grid-item:hover .gallery-grid-overlay {
    opacity: 1;
}

.gallery-grid-icon {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-grid-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.gallery-grid-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #b83c56;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

/* View All Button */
.gallery-view-all {
    text-align: center;
    margin-top: 1.5rem;
}

.gallery-view-all-btn {
    background: #1c5235;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-view-all-btn:hover {
    background: #2a6b42;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 82, 53, 0.3);
}

/* ===== LIGHTBOX MODAL STYLES ===== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 82, 53, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 2rem;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: all 0.4s ease;
    border-radius: 8px;
    overflow: hidden;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1c5235;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.lightbox-close:hover {
    background: white;
    transform: scale(1.1) rotate(90deg);
    color: #b83c56;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-caption p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #1c5235;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lightbox-navigation:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    color: #b83c56;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lightbox-content {
        max-width: 95%;
        margin: 1rem;
    }

    .lightbox-header {
        height: 300px;
    }

    .lightbox-body {
        padding: 2rem;
    }

    .lightbox-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-item:nth-child(n+5) {
        display: none; /* Hide extra items on mobile */
    }

    .gallery-grid-text {
        font-size: 0.7rem;
    }

    .gallery-grid-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .sidebar-content {
        padding: 1.5rem;
    }

    .gallery-grid-header {
        margin-bottom: 1rem;
    }

    .gallery-grid-title {
        font-size: 1.1rem;
    }

    .gallery-grid-description {
        font-size: 0.85rem;
    }

    .gallery-view-all-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
/*  FIRE DAMAGE PAGE  */
/* ===== CARD-BASED HERO SECTION STYLES ===== */
.fire-card-hero {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 180px 0 80px;
    margin-top: 0;
}

.fire-card-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Text Content */
.fire-card-hero-text h1 {
    color: #1c5235;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.fire-card-hero-text h2{

    color: #1c5235;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;


}

.fire-card-hero-text p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Statistics Section */
.fire-card-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.fire-hero-stat {
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #b83c56;
    transition: all 0.3s ease;
}

.fire-hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.fire-hero-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #b83c56;
    display: block;
    margin-bottom: 5px;
}

.fire-hero-stat-label {
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Button */
.fire-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #b83c56;
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

.fire-hero-cta:hover {
    background: #a03449;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 60, 86, 0.5);
}

.fire-hero-cta i {
    font-size: 1rem;
}

/* Image Section */
.fire-card-hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.fire-card-hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.fire-card-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fire-card-hero-image:hover img {
    transform: scale(1.05);
}

.fire-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #b83c56;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.4);
    backdrop-filter: blur(10px);
}

.fire-image-badge i {
    font-size: 1rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .fire-card-hero {
        padding: 160px 0 60px;
    }

    .fire-card-hero-container {
        gap: 40px;
        padding: 0 1rem;
    }

    .fire-card-hero-text h1 {
        font-size: 2.3rem;
    }

    .fire-card-hero-stats {
        gap: 15px;
    }

    .fire-hero-stat {
        padding: 15px 10px;
    }

    .fire-hero-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .fire-card-hero {
        padding: 140px 0 50px;
    }

    .fire-card-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fire-card-hero-text h1 {
        font-size: 2rem;
        text-align: center;
    }

    .fire-card-hero-text p {
        text-align: center;
        font-size: 1rem;
    }

    .fire-card-hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
        margin: 30px auto;
    }

    .fire-hero-stat {
        padding: 15px;
    }

    .fire-card-hero-image img {
        height: 300px;
    }

    .fire-hero-cta {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        font-size: 1rem;
        padding: 15px 30px;
    }

    .fire-image-badge {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .fire-card-hero {
        padding: 120px 0 40px;
    }

    .fire-card-hero-text h1 {
        font-size: 1.8rem;
    }

    .fire-card-hero-text p {
        font-size: 0.95rem;
    }

    .fire-hero-stat-number {
        font-size: 1.8rem;
    }

    .fire-hero-stat-label {
        font-size: 0.8rem;
    }

    .fire-card-hero-image img {
        height: 250px;
    }

    .fire-hero-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

.fire-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.fire-page-header {
    background: linear-gradient(135deg, #1c5235, #2d6a4f);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.fire-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.fire-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.fire-hero-section {
    background: white;
    padding: 60px 0;
}

.fire-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.fire-hero-text h2 {
    color: #1c5235;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.fire-hero-text p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.fire-hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.fire-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Problem Statement */
.fire-problem-section {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    padding: 60px 0;
}

.fire-problem-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fire-problem-content h2 {
    color: #721c24;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.fire-problem-content p {
    color: #721c24;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.fire-problem-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.fire-problem-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.fire-problem-item i {
    color: #dc3545;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.fire-problem-item h3 {
    color: #721c24;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.fire-problem-item p {
    color: #721c24;
    font-size: 0.9rem;
    margin: 0;
}

/* Service Process */
.fire-service-section {
    background: white;
    padding: 80px 0;
}

.fire-service-header {
    text-align: center;
    margin-bottom: 60px;
}

.fire-service-header h2 {
    color: #1c5235;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.fire-service-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.fire-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fire-service-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #1c5235;
    transition: all 0.3s ease;
}

.fire-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fire-service-item i {
    color: #b83c56;
    font-size: 2rem;
    margin-bottom: 15px;
}

.fire-service-item h3 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fire-service-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us */
.fire-benefits-section {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    padding: 60px 0;
}

.fire-benefits-content {
    text-align: center;
    margin-bottom: 50px;
}

.fire-benefits-content h2 {
    color: #1c5235; !important;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.fire-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fire-benefit-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.fire-benefit-item i {
    color: #28a745;
    font-size: 2rem;
    margin-bottom: 15px;
}

.fire-benefit-item h3 {
    color: #155724;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.fire-benefit-item p {
    color: #155724;
    font-size: 0.9rem;
    margin: 0;
}

/* Areas We Cover */
.fire-areas-section {
    background: white;
    padding: 60px 0;
}

.fire-areas-content {
    text-align: center;
}

.fire-areas-content h2 {
    color: #155724;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.fire-areas-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.fire-areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.fire-area-tag {
    background: #1c5235;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Testimonials */
.fire-testimonials-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.fire-testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.fire-testimonials-header h2 {
    color: #1c5235;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fire-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.fire-testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}


.fire-testimonial-text {
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.fire-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fire-author-avatar {
    width: 50px;
    height: 50px;
    background: #1c5235;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.fire-author-info h4 {
    color: #1c5235;
    margin-bottom: 5px;
}

.fire-author-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Gallery */
.fire-gallery-section {
    background: white;
    padding: 80px 0;
}

.fire-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.fire-gallery-header h2 {
    color: #1c5235;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fire-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fire-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fire-gallery-item:hover {
    transform: scale(1.05);
}

.fire-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fire-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 82, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    gap: 5px;
}

.fire-gallery-item:hover .fire-gallery-overlay {
    opacity: 1;
}

.fire-gallery-overlay span {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.fire-cta-section {
    background: linear-gradient(135deg, #1c5235, #2d6a4f);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.fire-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.fire-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fire-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.fire-cta-phone {
    background: #b83c56;
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

.fire-cta-phone:hover {
    background: #a03449;
    box-shadow: 0 8px 25px rgba(184, 60, 86, 0.5);
}

.fire-cta-quote {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.fire-cta-quote:hover {
    background: white;
    color: #1c5235;
}

/* FAQ Section */
.fire-faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.fire-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.fire-faq-header h2 {
    color: #1c5235;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fire-faq-container {
    max-width: 1440px;
    margin: 0 auto;
}

.fire-faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.fire-faq-question {
    background: #f8f9fa;
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.fire-faq-question:hover {
    background: #e9ecef;
}

.fire-faq-question h3 {
    color: #1c5235;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.fire-faq-toggle {
    color: #b83c56;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.fire-faq-item.active .fire-faq-toggle {
    transform: rotate(45deg);
}

.fire-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fire-faq-item.active .fire-faq-answer {
    padding: 25px;
    max-height: 200px;
}

.fire-faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fire-page-title {
        font-size: 2rem;
    }

    .fire-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fire-hero-image img {
        height: 250px;
    }

    .fire-problem-highlights,
    .fire-service-grid,
    .fire-benefits-grid,
    .fire-testimonials-grid,
    .fire-gallery-grid {
        grid-template-columns: 1fr;
    }

    .fire-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .fire-areas-list {
        justify-content: flex-start;
    }

    .fire-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .fire-page-title {
        font-size: 1.6rem;
    }

    .fire-page-header {
        padding: 40px 0 30px;
    }

    .fire-hero-section,
    .fire-service-section,
    .fire-testimonials-section,
    .fire-gallery-section,
    .fire-cta-section,
    .fire-faq-section {
        padding: 50px 0;
    }

    .fire-problem-section,
    .fire-benefits-section,
    .fire-areas-section {
        padding: 40px 0;
    }
}

/* Lightbox Modal */
.fire-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fire-lightbox.active {
    display: flex;
}

.fire-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.fire-lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin-top: 40px;
}

.fire-lightbox-caption {
    padding: 20px;
    background: white;
    text-align: center;
}

.fire-lightbox-caption h3 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.fire-lightbox-caption p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.fire-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(69, 69, 69, 0.9);

    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1c5235;
    transition: all 0.3s ease;
    z-index: 10;
}

.fire-lightbox-close:hover {
    background: white;
    color: #b83c56;
    transform: scale(1.1);
}

.fire-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1c5235;
    transition: all 0.3s ease;
}

.fire-lightbox-nav:hover {
    background: white;
    color: #2c3e50;
}

.fire-lightbox-prev {
    left: 15px;
}

.fire-lightbox-next {
    right: 15px;
    color: #2c3e50;
}
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: grid;
}
/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== TOP BAR STYLES ===== */
.top-bar {
    background: #1c5235;
    color: white;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 36px;
}

.top-bar-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 2rem;
    height: 100%;
}

.top-bar-phone {
    display: flex;
    align-items: stretch;
    gap: 2px;
    height: 100%;
}

.top-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 12px 0 0;
    height: 100%;
    transition: background 0.3s ease;
    min-width: 0;
    flex-shrink: 0;
}

.top-contact-item i {
    color: white;
    font-size: 13px;
    flex-shrink: 0;
    padding-left: 0;
    margin-left: 0;
}

.top-contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.top-contact-item a:hover {
    opacity: 0.9;
    color: #95a5a6;
}

.top-bar-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.top-bar-social a {
    color: white;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 4px;
}

.top-bar-social a:hover {
    color: #95a5a6;
}

/* ===== NAVIGATION STYLES ===== */
.navbar {
    background: white;
    padding: 0;
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(28, 82, 53, 0.15);
    height: 80px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.navbar-content {
    width: 100%;
    max-width: 1440px;
    padding: 0 2rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.nav-center {
    display: flex;
    align-items: stretch;
    flex: 1;
    justify-content: center;
    height: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: stretch;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: stretch;
    text-transform: uppercase;
}

.nav-links a {
    color: #1c5235;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0 1.5rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 80px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 82, 53, 0.1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
    z-index: -1;
}

.nav-links a:hover::before {
    transform: scaleY(1);
}

.nav-links a.active {
    background: #1c5235;
    color: white;
}

.nav-links a.active::before {
    display: none;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    padding-top: 10px;
}

.cta-button {
    background: #b83c56;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
    white-space: nowrap;
}

.cta-button:hover {
    background: #a03449;
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

/* ===== HAMBURGER MENU STYLES ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(28, 82, 53, 0.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1c5235;
    border-radius: 2px;
    transition: all 0.3s ease;
}



/* ===== DROPDOWN STYLES ===== */

/* Desktop Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 374px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    width: 374px;
!important;
}

.dropdown-menu li {
    list-style: none;
    width: 374px;
!important;
}

.dropdown-menu li a {
    width: 374px;
!important;
}

.dropdown-link {
    display: block;
    padding: 8px 16px;
    color: #333 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    width: 374px;
!important;
}

.dropdown-link:hover {
    color: #1c5235 !important;
    background-color: #f5f5f5;
}



/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .nav-links a {
        font-size: 0.9rem;
        padding: 0 1.2rem;
        margin: 0 0.75rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-center {
        display: none;
    }

    .navbar {
        top: 32px;
    }

    .navbar-content {
        padding: 0 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .cta-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .top-contact-item:hover {
        background: none;
    }

    .top-contact-item {
        padding-right: 0;
    }

    /* Responsive adjustments for dropdown */
    .dropdown-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-contact-item:last-child {
        display: none;
    }

    .top-contact-item {
        padding: 0 8px;
    }

    .cta-button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .nav-left {
        gap: 1rem;
    }
}

/* ===== HERO SECTION STYLES ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/slides/fire-flood-water-damage.png') center center / cover fixed no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 116px;
    color: white;
    position: relative;
}


.hero-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 116px);
}

.hero-text {
    text-align: center;
    max-width: 1024px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.fire-text {
    color: #dc3545;
    text-transform: uppercase;
    font-weight: 800;
}

.flood-text {
    color: #007bff;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #b83c56;
    color: white;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
}

.btn-primary:hover {
    background: #a03449;
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1c5235;
}

/* ===== RESPONSIVE STYLES FOR HERO ===== */
@media (max-width: 768px) {
    .hero {
        padding-top: 112px;
    }

    .hero-content {
        min-height: calc(100vh - 112px);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

/* ===== SERVICES SECTION STYLES ===== */
.services-section {
    padding: 100px 0;
    background: #f1f3f4;
    position: relative;
}

.services-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Services */
.services-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border-left: 4px solid #e9ecef;
}

.service-card:hover {
    border-left-color: #b83c56;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-card h3 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.service-btn {
    background: transparent;
    color: #b83c56;
    border: 2px solid #b83c56;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.service-btn:hover {
    background: #b83c56;
    color: white;
    transform: translateY(-2px);
}

/* Secondary Services */
.services-secondary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 30px;
}

.service-secondary-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border-left: 4px solid #e9ecef;
}

.service-secondary-card:hover {
    border-left-color: #b83c56;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-secondary-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.service-secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-secondary-card:hover .service-secondary-image img {
    transform: scale(1.05);
}

.service-secondary-content {
    padding: 1.25rem;
}

.service-secondary-card h3 {
    color: #1c5235;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-secondary-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===== RESPONSIVE STYLES FOR SERVICES ===== */
@media (max-width: 1024px) {
    .services-section {
        padding: 80px 0;
    }

    .services-container {
        padding: 0 1rem;
    }

    .services-header h2 {
        font-size: 2.2rem;
    }

    .services-featured {
        gap: 2rem;
    }

    .service-card {
        transform: none;
    }

    .service-card:hover {
        transform: translateY(-3px);
    }

    .service-image {
        height: 160px;
    }

    .service-content {
        padding: 1.25rem;
    }

    .services-secondary {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-secondary-card {
        transform: none;
    }

    .service-secondary-card:hover {
        transform: translateY(-3px);
    }

    .service-secondary-image {
        height: 100px;
    }

    .service-secondary-content {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-header p {
        font-size: 1rem;
    }

    .services-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-image {
        height: 160px;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .services-secondary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-secondary-image {
        height: 200px;
    }

    .service-secondary-content {
        padding: 1rem;
    }

    .service-secondary-card h3 {
        font-size: 1rem;
    }

    .service-secondary-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .services-header p {
        font-size: 0.9rem;
    }

    .service-content {
        padding: 1rem;
    }

    .service-image {
        height: 140px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .service-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .service-secondary-content {
        padding: 0.75rem;
    }

    .service-secondary-image {
        height: 80px;
    }

    .service-secondary-card h3 {
        font-size: 0.95rem;
    }

    .service-secondary-card p {
        font-size: 0.8rem;
    }
}

/* ===== BDMA ACCREDITATION SECTION ===== */
.bdma-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.bdma-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 82, 53, 0.03) 0%, rgba(184, 60, 86, 0.03) 100%);
    z-index: 1;
}

.bdma-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.bdma-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
}

.bdma-text {
    padding-right: 2rem;
}

.bdma-text h2 {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.bdma-text h2 strong {
    color: #b83c56;
}

.bdma-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.bdma-text p strong {
    color: #1c5235;
    font-weight: 600;
}

.bdma-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.bdma-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bdma-feature .check-icon {
    color: #28a745;
    font-size: 0.8rem;
}

.bdma-feature span {
    color: #1c5235;
    font-weight: 500;
    font-size: 1rem;
}

.bdma-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(28, 82, 53, 0.1);
    transition: all 0.3s ease;
}

.bdma-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(28, 82, 53, 0.2);
}

.bdma-logo img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    width: auto;
    transition: all 0.3s ease;
}

.bdma-logo:hover img {
    transform: scale(1.05);
}

/* ===== RESPONSIVE STYLES FOR BDMA ===== */
@media (max-width: 1024px) {
    .bdma-content {
        grid-template-columns: 1fr 250px;
        gap: 3rem;
    }

    .bdma-text {
        padding-right: 1rem;
    }

    .bdma-text h2 {
        font-size: 2.2rem;
    }

    .bdma-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .bdma-section {
        padding: 60px 0;
    }

    .bdma-container {
        padding: 0 1rem;
    }

    .bdma-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .bdma-text {
        padding-right: 0;
    }

    .bdma-text h2 {
        font-size: 2rem;
    }

    .bdma-text p {
        font-size: 1rem;
    }

    .bdma-features {
        gap: 1rem;
        justify-content: center;
    }

    .bdma-logo {
        padding: 1.5rem;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .bdma-section {
        padding: 40px 0;
    }

    .bdma-text h2 {
        font-size: 1.8rem;
    }

    .bdma-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .bdma-features {
        gap: 0.75rem;
    }

    .bdma-feature span {
        font-size: 0.9rem;
    }

    .bdma-logo {
        padding: 1rem;
    }
}

/* ===== RECENT PROJECTS SECTION STYLES ===== */
.recent-projects-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}


.recent-projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.recent-projects-header h2 {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.recent-projects-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.recent-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.recent-project-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border-left: 4px solid #e9ecef;
    cursor: pointer;
    position: relative;
}

.recent-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #1c5235, #b83c56);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.recent-project-card:hover::before {
    transform: scaleX(1);
}

.recent-project-card:hover {
    border-left-color: #b83c56;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.recent-project-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.recent-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-project-card:hover .recent-project-image img {
    transform: scale(1.03);
}

.recent-project-content {
    padding: 2rem;
}

.recent-project-title {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.recent-project-date {
    color: #b83c56;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.recent-project-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.recent-project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.recent-project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.9rem;
}

.recent-project-location i {
    color: #1c5235;
}

.recent-project-read-more {
    background: transparent;
    color: #1c5235;
    border: 2px solid #1c5235;
    padding: 8px 16px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.recent-project-read-more:hover {
    background: #1c5235;
    color: white;
    transform: translateY(-2px);
}
.recent-project-read-more i {

    color: white;
}

/* ===== RESPONSIVE STYLES FOR RECENT PROJECTS ===== */
@media (max-width: 1024px) {
    .recent-projects-section {
        padding: 80px 0;
    }

    .recent-projects-container {
        padding: 0 1rem;
    }

    .recent-projects-header h2 {
        font-size: 2.2rem;
    }

    .recent-projects-grid {
        gap: 1.5rem;
    }

    .recent-project-card {
        transform: none;
    }

    .recent-project-card:hover {
        transform: translateY(-3px);
    }

    .recent-project-image {
        height: 200px;
    }

    .recent-project-content {
        padding: 1.5rem;
    }

    .recent-project-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .recent-projects-section {
        padding: 60px 0;
    }

    .recent-projects-header {
        margin-bottom: 3rem;
    }

    .recent-projects-header h2 {
        font-size: 2rem;
    }

    .recent-projects-header p {
        font-size: 1rem;
    }

    .recent-projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .recent-project-image {
        height: 200px;
    }

    .recent-project-content {
        padding: 1.5rem;
    }

    .recent-project-title {
        font-size: 1.2rem;
    }

    .recent-project-description {
        font-size: 0.9rem;
    }

    .recent-project-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .recent-project-read-more {
        align-self: stretch;
        text-align: center;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .recent-projects-section {
        padding: 40px 0;
    }

    .recent-projects-header h2 {
        font-size: 1.8rem;
    }

    .recent-projects-header p {
        font-size: 0.9rem;
    }

    .recent-projects-grid {
        gap: 1.5rem;
    }

    .recent-project-content {
        padding: 1.25rem;
    }

    .recent-project-image {
        height: 180px;
    }

    .recent-project-title {
        font-size: 1.1rem;
    }

    .recent-project-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .recent-project-read-more {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ===== CONTACT FORM + TESTIMONIALS SECTION STYLES ===== */
.contact-testimonials-section {
    background: white;
    padding: 4rem 0;
}

.contact-testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-testimonials-header h2 {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-testimonials-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.contact-form-section h3 {
    color: #1c5235;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #1c5235;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1c5235;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 82, 53, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.form-submit {
    background: #1c5235;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.form-submit:hover {
    background: #2a6b42;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 82, 53, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    display: flex;
    flex-direction: column;
}

.testimonials-section h3 {
    color: #1c5235;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #1c5235;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-stars {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1c5235;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    color: #1c5235;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.testimonial-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== RESPONSIVE STYLES FOR CONTACT + TESTIMONIALS ===== */
@media (max-width: 1024px) {
    .contact-testimonials-section {
        padding: 3rem 0;
    }

    .contact-testimonials-container {
        padding: 0 1rem;
    }

    .contact-testimonials-content {
        gap: 3rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .testimonial {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-testimonials-section {
        padding: 2.5rem 0;
    }

    .contact-testimonials-header {
        margin-bottom: 2rem;
    }

    .contact-testimonials-header h2 {
        font-size: 2rem;
    }

    .contact-testimonials-header p {
        font-size: 1rem;
    }

    .contact-testimonials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        padding: 2rem;
        order: 2;
    }

    .testimonials-section {
        order: 1;
    }

    .testimonial {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .testimonial-author {
        gap: 0.75rem;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-testimonials-section {
        padding: 2rem 0;
    }

    .contact-testimonials-header h2 {
        font-size: 1.8rem;
    }

    .contact-testimonials-header p {
        font-size: 0.9rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-submit {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .testimonial {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .testimonial-info h4 {
        font-size: 0.95rem;
    }

    .testimonial-info p {
        font-size: 0.85rem;
    }
}

/* ===== CTA SECTION STYLES ===== */
.cta-section {
    background: #f1f3f4;
    padding: 4rem 0;
}

.cta-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #95a5a6, #7f8c8d);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.1rem;
    color: #5d6d7e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    gap: 2rem;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #34495e;
    display: block;
    margin-bottom: 0.25rem;
}

.cta-stat-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

.cta-action {
    text-align: center;
    min-width: 200px;
}

.cta-phone {
    background: #1c5235;
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    background: #2a6b42;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 82, 53, 0.3);
}

.cta-quote {
    color: #7f8c8d;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #95a5a6;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.cta-quote:hover {
    color: #1c5235;
    border-bottom-color: #1c5235;
}

/* ===== RESPONSIVE STYLES FOR CTA ===== */
@media (max-width: 1024px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-container {
        padding: 0 1rem;
    }

    .cta-card {
        padding: 2.5rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .cta-stat-number {
        font-size: 1.6rem;
    }

    .cta-stat-text {
        font-size: 0.85rem;
    }

    .cta-action {
        min-width: auto;
    }

    .cta-phone {
        font-size: 1.3rem;
        padding: 18px 25px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2rem 0;
    }

    .cta-card {
        padding: 1.5rem;
    }

    .cta-text h2 {
        font-size: 1.6rem;
    }

    .cta-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .cta-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cta-stat {
        min-width: 80px;
    }

    .cta-stat-number {
        font-size: 1.4rem;
    }

    .cta-stat-text {
        font-size: 0.8rem;
    }

    .cta-phone {
        font-size: 1.2rem;
        padding: 16px 20px;
    }
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: #1c5235;
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Company Info Section */
.footer-company {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-about {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.footer-social a:hover {
    background: #b83c56;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 60, 86, 0.4);
}

/* Quick Links Section */
.footer-links h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #b83c56;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #b83c56;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    background: #b83c56;
    transform: scale(1.5);
}

/* Contact Info Section */
.footer-contact h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #b83c56;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: white;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #b83c56;
}

/* Recent Projects Section */
.footer-projects h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-projects h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #b83c56;
}

.project-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.project-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.project-item h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.project-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #b83c56;
}

/* ===== IMPROVED MOBILE FOOTER RESPONSIVE STYLES ===== */

/* Footer bottom links - improved mobile handling */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-bottom-links a {
        padding: 0.5rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .footer-bottom-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #b83c56;
    }
}

/* Enhanced mobile styles for footer sections */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    /* Quick Links mobile optimization */
    .footer-links ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        padding: 0.75rem 0.5rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    /* Contact Info mobile optimization */
    .contact-item {
        margin-bottom: 1.25rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-top: 0;
        margin-right: 1rem;
    }

    .contact-item h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Recent Projects mobile optimization */
    .project-item {
        padding: 1rem;
        margin-bottom: 1.25rem;
        border-radius: 10px;
    }

    .project-item h4 {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .project-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Extra small screens (480px and below) */
@media (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-main {
        gap: 2rem;
    }

    /* Single column layout for quick links on very small screens */
    .footer-links ul {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .footer-links a {
        font-size: 0.85rem;
        padding: 0.6rem;
    }

    /* Compact contact items */
    .contact-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.25rem;
    }

    /* Footer bottom improvements for very small screens */
    .footer-bottom-links {
        gap: 0.75rem;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Project items stack better */
    .project-item {
        padding: 0.75rem;
        text-align: center;
    }

    .project-item h4 {
        font-size: 0.85rem;
    }

    .project-item p {
        font-size: 0.75rem;
    }
}

/* Landscape phone orientation fix */
@media (max-width: 896px) and (orientation: landscape) {
    .footer-bottom-links {
        flex-direction: row;
        gap: 1.5rem;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Additional fix for very long link text wrapping */
.footer-bottom-links a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 150px;
}

@media (max-width: 480px) {
    .footer-bottom-links a {
        max-width: 120px;
    }
}

/* Ensure footer sections have proper spacing on mobile */
@media (max-width: 768px) {
    .footer-company,
    .footer-links,
    .footer-contact,
    .footer-projects {
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-projects {
        border-bottom: none;
    }
}

/* ===== HERO SERVICE SECTION CSS ===== */
.hero-service-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://picsum.photos/1920/600?random=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 116px;
    text-align: center;
    position: relative;
}

.hero-service-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-service-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    margin-top: -60px;
}

.hero-service-tagline {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-service-description {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-service-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-primary-btn {
    background: #b83c56;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
}

.hero-primary-btn:hover {
    background: #a03449;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

.hero-secondary-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-secondary-btn:hover {
    background: white;
    color: #1c5235;
}

/* ===== MAIN CONTENT SECTION CSS ===== */
.main-content-section {
    padding: 6rem 0;
    background: white;
}

.main-content-container {
    max-width: 1440px;
    padding: 0 2rem;
    margin: 100px auto 0;
}

.main-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-primary-area {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid #1c5235;
}

.content-main-title {
    color: #1c5235;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.content-description {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-features-wrapper {
    margin: 2.5rem 0;
}

.content-features-title {
    color: #1c5235;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.content-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #b83c56;
    transition: all 0.3s ease;
}

.content-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-feature-icon {
    color: #b83c56;
    font-size: 1.3rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.content-feature-details h4 {
    color: #1c5235;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.content-feature-details p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.content-process-wrapper {
    margin: 2.5rem 0;
}

.content-process-title {
    color: #1c5235;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-process-steps {
    display: grid;
    gap: 1rem;
}

.content-process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-step-number {
    background: #1c5235;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.content-step-details h4 {
    color: #1c5235;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.content-step-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== SIDEBAR CONTACT FORM CSS ===== */
.sidebar-contact-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    border: 1px solid #e9ecef;
    position: sticky;
    top: 140px;
}

.sidebar-contact-title {
    color: #1c5235;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.sidebar-contact-tagline {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.sidebar-contact-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.sidebar-contact-info-title {
    color: #1c5235;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
}

.sidebar-contact-item:last-child {
    margin-bottom: 0;
}

.sidebar-contact-icon {
    color: #b83c56;
    font-size: 1.1rem;
    min-width: 20px;
}

.sidebar-contact-details h5 {
    color: #1c5235;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-contact-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.sidebar-contact-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-contact-link:hover {
    color: #b83c56;
}

.sidebar-form-wrapper {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.sidebar-form-title {
    color: #1c5235;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.sidebar-form-group {
    margin-bottom: 1.5rem;
}

.sidebar-form-label {
    color: #1c5235;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.sidebar-form-input,
.sidebar-form-select,
.sidebar-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.sidebar-form-input:focus,
.sidebar-form-select:focus,
.sidebar-form-textarea:focus {
    outline: none;
    border-color: #1c5235;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 82, 53, 0.2);
}

.sidebar-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.sidebar-form-input::placeholder,
.sidebar-form-textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.sidebar-form-submit {
    background: #b83c56;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
}

.sidebar-form-submit:hover {
    background: #a03449;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

/* ===== FAQ SECTION CSS ===== */
.faq-main-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
}

.faq-main-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header-section {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-main-title {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.faq-main-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.faq-item-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid #e9ecef;
}

.faq-item-card:hover {
    border-left-color: #b83c56;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-item-card.active {
    border-left-color: #1c5235;
}

.faq-question-wrapper {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question-wrapper:hover {
    background: #f8f9fa;
}

.faq-question-text {
    color: #1c5235;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle-icon {
    color: #b83c56;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 16px;
}

.faq-item-card.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: #1c5235;
}

.faq-answer-wrapper {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item-card.active .faq-answer-wrapper {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 1rem;
}

.faq-footer-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.faq-footer-title {
    color: #1c5235;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-footer-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.faq-footer-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact-btn,
.faq-form-btn {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.faq-contact-btn {
    background: #b83c56;
    color: white;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
}

.faq-contact-btn:hover {
    background: #a03449;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

.faq-form-btn {
    background: transparent;
    color: #1c5235;
    border: 2px solid #1c5235;
}

.faq-form-btn:hover {
    background: #1c5235;
    color: white;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .main-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sidebar-contact-wrapper {
        position: static;
        order: -1;
    }

    .content-features-grid {
        grid-template-columns: 1fr;
    }

    .faq-items-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-service-section {
        padding: 6rem 0 3rem;
        margin-top: 112px;
    }

    .hero-service-title {
        font-size: 2.2rem;
    }

    .hero-service-actions {
        flex-direction: column;
        align-items: center;
    }

    .main-content-section {
        padding: 4rem 0;
    }

    .main-content-container {
        padding: 0 1rem;
    }

    .content-primary-area {
        padding: 2rem;
    }

    .sidebar-contact-wrapper {
        padding: 2rem;
    }

    .sidebar-form-wrapper {
        padding: 1.5rem;
    }

    .faq-main-section {
        padding: 3rem 0;
    }

    .faq-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-service-section {
        padding: 4rem 0 2rem;
    }

    .hero-service-title {
        font-size: 1.8rem;
    }

    .content-primary-area {
        padding: 1.5rem;
    }

    .content-main-title {
        font-size: 1.8rem;
    }

    .sidebar-contact-wrapper {
        padding: 1.5rem;
    }

    .sidebar-form-wrapper {
        padding: 1.25rem;
    }

    .sidebar-form-input,
    .sidebar-form-select,
    .sidebar-form-textarea {
        padding: 10px 12px;
    }
}

/* ===== CONTENT IMAGE FEATURE STYLES ===== */
.content-image-feature {
    margin: 3rem 0;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1c5235;
    transition: all 0.3s ease;
}

.content-image-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.content-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.content-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-image-feature:hover .content-feature-image {
    transform: scale(1.05);
}

.content-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 82, 53, 0.1), rgba(184, 60, 86, 0.1));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
}

.content-image-badge {
    background: rgba(184, 60, 86, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
}

.content-image-badge i {
    font-size: 1rem;
}

.content-image-caption {
    padding: 2rem;
    background: white;
}

.content-image-caption h4 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-image-caption p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTENT IMAGE SHOWCASE STYLES ===== */
.content-image-showcase {
    margin: 3rem 0;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #b83c56;
}

.content-showcase-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.content-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-image-showcase:hover .content-showcase-image {
    transform: scale(1.03);
}

.content-showcase-caption {
    padding: 2rem;
    background: white;
}

.content-showcase-caption h4 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-showcase-caption p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE STYLES FOR IMAGES ===== */
@media (max-width: 1024px) {
    .content-image-wrapper {
        height: 350px;
    }

    .content-image-grid {
        min-height: 320px;
    }

    .content-image-main {
        height: 320px;
    }

    .content-image-info {
        padding: 2rem;
    }

    .content-image-caption {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .content-image-feature {
        margin: 2rem 0;
    }

    .content-image-showcase {
        margin: 2rem 0;
    }

    .content-image-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .content-image-main {
        height: 280px;
        order: 1;
    }

    .content-image-info {
        order: 2;
        padding: 2rem;
    }

    .content-image-wrapper {
        height: 280px;
    }

    .content-image-overlay {
        padding: 1rem;
    }

    .content-image-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .content-image-caption {
        padding: 1.5rem;
    }

    .content-image-caption h4 {
        font-size: 1.2rem;
    }

    .content-image-caption p {
        font-size: 0.95rem;
    }

    .content-image-info h4 {
        font-size: 1.3rem;
    }

    .content-image-info p {
        font-size: 0.95rem;
    }

    .content-image-stats {
        bottom: 1rem;
        left: 1rem;
        gap: 0.75rem;
    }

    .content-stat-item {
        padding: 0.5rem 0.75rem;
    }

    .content-stat-number {
        font-size: 1.1rem;
    }

    .content-stat-label {
        font-size: 0.75rem;
    }

    .content-image-info {
        padding: 2rem;
    }

    .content-image-info h4 {
        font-size: 1.3rem;
    }

    .content-image-info p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .content-image-wrapper {
        height: 240px;
    }

    .content-image-main {
        height: 240px;
    }

    .content-image-info {
        padding: 1.5rem;
    }

    .content-image-caption {
        padding: 1.25rem;
    }

    .content-image-caption h4 {
        font-size: 1.1rem;
    }

    .content-image-caption p {
        font-size: 0.9rem;
    }

    .content-image-info h4 {
        font-size: 1.2rem;
    }

    .content-image-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .content-equipment-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .content-image-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .content-stat-item {
        padding: 0.4rem 0.6rem;
    }

    .content-stat-number {
        font-size: 1rem;
    }

    .content-stat-label {
        font-size: 0.7rem;
    }
}
.fire-gallery-item h4, i{

    color: #fff;
}

.cookie-banner-card {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 420px;
    box-shadow: 0 15px 35px rgba(28, 82, 53, 0.15);
    z-index: 1000;
    animation: slideInRight 0.6s ease-out;
    border-left: 5px solid #b83c56;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cookie-banner-card .header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.cookie-banner-card .company-logo {
    width: 24px;
    height: 24px;
    background: #1c5235;
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.cookie-banner-card h3 {
    color: #1c5235;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.cookie-banner-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #495057;
    font-size: 14px;
}

.cookie-banner-card .actions {
    display: flex;
    gap: 12px;
}

.cookie-banner-card button {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-banner-card .btn-accept {
    background: #b83c56;
    color: white;
}

.cookie-banner-card .btn-accept:hover {
    background: #a03449;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 60, 86, 0.25);
}

.cookie-banner-card .btn-decline {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.cookie-banner-card .btn-decline:hover {
    background: #e9ecef;
    color: #495057;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #6c757d;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    color: #495057;
    background: #f8f9fa;
}

.legal-links {
    margin-top: 15px;
    text-align: center;
}

.legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 12px;
    margin: 0 8px;
    font-weight: 500;
}

.legal-links a:hover {
    color: #b83c56;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-banner-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Simulate your content layout */
.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.main-content {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid #1c5235;
}

.sidebar-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* ===== 3x3 GRID GALLERY STYLES (for narrow column) ===== */
.content-gallery-grid {
    margin: 2rem 0;
}

.gallery-grid-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.gallery-grid-title {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-grid-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 3x3 Grid Layout - No Spacing */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-grid-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-grid-item:hover {
    border-color: #b83c56;
    z-index: 2;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(184, 60, 86, 0.3);
}

.gallery-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-grid-item:hover .gallery-grid-image {
    transform: scale(1.1);
}

.gallery-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 82, 53, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 0.5rem;
    text-align: center;
}

.gallery-grid-item:hover .gallery-grid-overlay {
    opacity: 1;
}

.gallery-grid-icon {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-grid-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.gallery-grid-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #b83c56;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

/* View All Button */
.gallery-view-all {
    text-align: center;
    margin-top: 1.5rem;
}

.gallery-view-all-btn {
    background: #1c5235;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-view-all-btn:hover {
    background: #2a6b42;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 82, 53, 0.3);
}

/* ===== LIGHTBOX MODAL STYLES ===== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 82, 53, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 2rem;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: all 0.4s ease;
    border-radius: 8px;
    overflow: hidden;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1c5235;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.lightbox-close:hover {
    background: white;
    transform: scale(1.1) rotate(90deg);
    color: #b83c56;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-caption p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #1c5235;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lightbox-navigation:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    color: #b83c56;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lightbox-content {
        max-width: 95%;
        margin: 1rem;
    }

    .lightbox-header {
        height: 300px;
    }

    .lightbox-body {
        padding: 2rem;
    }

    .lightbox-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-item:nth-child(n+5) {
        display: none; /* Hide extra items on mobile */
    }

    .gallery-grid-text {
        font-size: 0.7rem;
    }

    .gallery-grid-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .sidebar-content {
        padding: 1.5rem;
    }

    .gallery-grid-header {
        margin-bottom: 1rem;
    }

    .gallery-grid-title {
        font-size: 1.1rem;
    }

    .gallery-grid-description {
        font-size: 0.85rem;
    }

    .gallery-view-all-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
/*  FIRE DAMAGE PAGE  */
/* ===== CARD-BASED HERO SECTION STYLES ===== */
.fire-card-hero {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 180px 0 80px;
    margin-top: 0;
}

.fire-card-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Text Content */
.fire-card-hero-text h1 {
    color: #1c5235;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.fire-card-hero-text p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Statistics Section */
.fire-card-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.fire-hero-stat {
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #b83c56;
    transition: all 0.3s ease;
}

.fire-hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.fire-hero-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #b83c56;
    display: block;
    margin-bottom: 5px;
}

.fire-hero-stat-label {
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Button */
.fire-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #b83c56;
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

.fire-hero-cta:hover {
    background: #a03449;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 60, 86, 0.5);
}

.fire-hero-cta i {
    font-size: 1rem;
}

/* Image Section */
.fire-card-hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.fire-card-hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.fire-card-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fire-card-hero-image:hover img {
    transform: scale(1.05);
}

.fire-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #b83c56;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.4);
    backdrop-filter: blur(10px);
}

.fire-image-badge i {
    font-size: 1rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .fire-card-hero {
        padding: 160px 0 60px;
    }

    .fire-card-hero-container {
        gap: 40px;
        padding: 0 1rem;
    }

    .fire-card-hero-text h1 {
        font-size: 2.3rem;
    }

    .fire-card-hero-stats {
        gap: 15px;
    }

    .fire-hero-stat {
        padding: 15px 10px;
    }

    .fire-hero-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .fire-card-hero {
        padding: 140px 0 50px;
    }

    .fire-card-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fire-card-hero-text h1 {
        font-size: 2rem;
        text-align: center;
    }

    .fire-card-hero-text p {
        text-align: center;
        font-size: 1rem;
    }

    .fire-card-hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
        margin: 30px auto;
    }

    .fire-hero-stat {
        padding: 15px;
    }

    .fire-card-hero-image img {
        height: 300px;
    }

    .fire-hero-cta {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        font-size: 1rem;
        padding: 15px 30px;
    }

    .fire-image-badge {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .fire-card-hero {
        padding: 120px 0 40px;
    }

    .fire-card-hero-text h1 {
        font-size: 1.8rem;
    }

    .fire-card-hero-text p {
        font-size: 0.95rem;
    }

    .fire-hero-stat-number {
        font-size: 1.8rem;
    }

    .fire-hero-stat-label {
        font-size: 0.8rem;
    }

    .fire-card-hero-image img {
        height: 250px;
    }

    .fire-hero-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

.fire-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.fire-page-header {
    background: linear-gradient(135deg, #1c5235, #2d6a4f);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.fire-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.fire-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.fire-hero-section {
    background: white;
    padding: 60px 0;
}

.fire-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.fire-hero-text h2 {
    color: #1c5235;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.fire-hero-text p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.fire-hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.fire-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Problem Statement */
.fire-problem-section {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    padding: 60px 0;
}

.fire-problem-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fire-problem-content h2 {
    color: #721c24;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.fire-problem-content p {
    color: #721c24;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.fire-problem-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.fire-problem-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.fire-problem-item i {
    color: #dc3545;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.fire-problem-item h3 {
    color: #721c24;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.fire-problem-item p {
    color: #721c24;
    font-size: 0.9rem;
    margin: 0;
}

/* Service Process */
.fire-service-section {
    background: white;
    padding: 80px 0;
}

.fire-service-header {
    text-align: center;
    margin-bottom: 60px;
}

.fire-service-header h2 {
    color: #1c5235;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.fire-service-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.fire-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fire-service-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #1c5235;
    transition: all 0.3s ease;
}

.fire-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fire-service-item i {
    color: #b83c56;
    font-size: 2rem;
    margin-bottom: 15px;
}

.fire-service-item h3 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fire-service-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us */
.fire-benefits-section {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    padding: 60px 0;
}

.fire-benefits-content {
    text-align: center;
    margin-bottom: 50px;
}

.fire-benefits-content h2 {
    color: #1c5235; !important;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;

}

.fire-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fire-benefit-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.fire-benefit-item i {
    color: #28a745;
    font-size: 2rem;
    margin-bottom: 15px;
}

.fire-benefit-item h3 {
    color: #155724;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.fire-benefit-item p {
    color: #155724;
    font-size: 0.9rem;
    margin: 0;
}

/* Areas We Cover */
.fire-areas-section {
    background: white;
    padding: 60px 0;
}

.fire-areas-content {
    text-align: center;
}

.fire-areas-content h2 {
    color: #1c5235;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.fire-areas-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.fire-areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.fire-area-tag {
    background: #1c5235;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Testimonials */
.fire-testimonials-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.fire-testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.fire-testimonials-header h2 {
    color: #1c5235;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fire-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.fire-testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}



.fire-testimonial-text {
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.fire-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fire-author-avatar {
    width: 50px;
    height: 50px;
    background: #1c5235;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.fire-author-info h4 {
    color: #1c5235;
    margin-bottom: 5px;
}

.fire-author-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Gallery */
.fire-gallery-section {
    background: white;
    padding: 80px 0;
}

.fire-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.fire-gallery-header h2 {
    color: #1c5235;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fire-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fire-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fire-gallery-item:hover {
    transform: scale(1.05);
}

.fire-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fire-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 82, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fire-gallery-item:hover .fire-gallery-overlay {
    opacity: 1;
}

.fire-gallery-overlay span {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.fire-cta-section {
    background: linear-gradient(135deg, #1c5235, #2d6a4f);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.fire-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.fire-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fire-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.fire-cta-phone {
    background: #b83c56;
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

.fire-cta-phone:hover {
    background: #a03449;
    box-shadow: 0 8px 25px rgba(184, 60, 86, 0.5);
}

.fire-cta-quote {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.fire-cta-quote:hover {
    background: white;
    color: #1c5235;
}

/* FAQ Section */
.fire-faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.fire-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.fire-faq-header h2 {
    color: #1c5235;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fire-faq-container {
    max-width: 1440px;
    margin: 0 auto;
}

.fire-faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.fire-faq-question {
    background: #f8f9fa;
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.fire-faq-question:hover {
    background: #e9ecef;
}

.fire-faq-question h3 {
    color: #1c5235;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.fire-faq-toggle {
    color: #b83c56;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.fire-faq-item.active .fire-faq-toggle {
    transform: rotate(45deg);
}

.fire-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fire-faq-item.active .fire-faq-answer {
    padding: 25px;
    max-height: 200px;
}

.fire-faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fire-page-title {
        font-size: 2rem;
    }

    .fire-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fire-hero-image img {
        height: 250px;
    }

    .fire-problem-highlights,
    .fire-service-grid,
    .fire-benefits-grid,
    .fire-testimonials-grid,
    .fire-gallery-grid {
        grid-template-columns: 1fr;
    }

    .fire-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .fire-areas-list {
        justify-content: flex-start;
    }

    .fire-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .fire-page-title {
        font-size: 1.6rem;
    }

    .fire-page-header {
        padding: 40px 0 30px;
    }

    .fire-hero-section,
    .fire-service-section,
    .fire-testimonials-section,
    .fire-gallery-section,
    .fire-cta-section,
    .fire-faq-section {
        padding: 50px 0;
    }

    .fire-problem-section,
    .fire-benefits-section,
    .fire-areas-section {
        padding: 40px 0;
    }
}

/* Lightbox Modal */
.fire-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fire-lightbox.active {
    display: flex;
}

.fire-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.fire-lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.fire-lightbox-caption {
    padding: 20px;
    background: white;
    text-align: center;
}

.fire-lightbox-caption h3 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.fire-lightbox-caption p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.fire-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(69, 69, 69, 0.9);

    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1c5235;
    transition: all 0.3s ease;
    z-index: 10;
}

.fire-lightbox-close:hover {
    background: white;
    color: #2c3e50;
    transform: scale(1.1);
}

.fire-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(69, 69, 69, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1c5235;
    transition: all 0.3s ease;
}

.fire-lightbox-nav:hover {
    background: white;
    color: #b83c56;
}

.fire-lightbox-prev {
    left: 15px;
}

.fire-lightbox-next {
    right: 15px;
    color: #2c3e50;
}
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: grid;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8f9fa;
}

.cuc-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.cuc-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../images/slides/upholstery-cleaning.jpg') center center / cover no-repeat;
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.cuc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="hero-pattern" patternUnits="userSpaceOnUse" width="100" height="20"><circle cx="10" cy="10" r="1.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hero-pattern)"/></svg>');
}

.cuc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cuc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 95px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cuc-hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: 40px;
    line-height: 1.1;
}

.cuc-hero-subtitle {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.cuc-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 60px;
}

.cuc-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.cuc-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.cuc-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 8px;
}

.cuc-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cuc-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #b83c56;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(184, 60, 86, 0.4);
}

.cuc-hero-cta:hover {
    background: #a03449;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 60, 86, 0.5);
}

/* ===== PROBLEM SECTION ===== */
.cuc-problem-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.cuc-problem-header {
    text-align: center;
    margin-bottom: 60px;
}

.cuc-problem-title {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 20px;
    font-weight: 700;
}

.cuc-problem-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.cuc-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.cuc-problem-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cuc-problem-card:hover {
    border-color: #b83c56;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(184, 60, 86, 0.15);
}

.cuc-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1c5235, #b83c56);
}

.cuc-problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b83c56, #a03449);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(184, 60, 86, 0.3);
}

.cuc-problem-card h3 {
    color: #1c5235;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cuc-problem-card p {
    color: #555;
    line-height: 1.6;
}

/* ===== SERVICE PROCESS SECTION ===== */
.cuc-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.cuc-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%231c5235" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.cuc-process-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.cuc-process-title {
    font-size: 2.8rem;
    color: #1c5235;
    margin-bottom: 20px;
    font-weight: 700;
}

.cuc-process-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.cuc-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.cuc-process-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cuc-process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cuc-process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #1c5235, #b83c56);
}

.cuc-process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1c5235, #2d6a4f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(28, 82, 53, 0.3);
}

.cuc-process-card h3 {
    color: #1c5235;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cuc-process-card p {
    color: #555;
    line-height: 1.7;
}

/* ===== BENEFITS SECTION ===== */
.cuc-benefits-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.cuc-benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.cuc-benefits-title {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 20px;
    font-weight: 700;
}

.cuc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cuc-benefit-card {
    background: linear-gradient(135deg, #f8f9fa, white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.cuc-benefit-card:hover {
    border-color: #28a745;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.15);
}

.cuc-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.cuc-benefit-card h3 {
    color: #1c5235;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.cuc-benefit-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== AREAS SECTION ===== */
.cuc-areas-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1c5235, #2d6a4f);
    color: white;
    position: relative;
}

.cuc-areas-header {
    text-align: center;
    margin-bottom: 50px;
}

.cuc-areas-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cuc-areas-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.cuc-areas-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.cuc-area-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cuc-area-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.cuc-areas-note {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
}

.cuc-areas-note strong {
    color: white;
    font-weight: 700;
}

/* ===== TESTIMONIALS SECTION ===== */
.cuc-testimonials-section {
    padding: 50px 0;
    background: white;
}


.cuc-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.cuc-testimonials-title {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 15px;
    font-weight: 700;
}

.cuc-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.cuc-testimonial-card {
    background: linear-gradient(135deg, #f8f9fa, white);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 6px solid #b83c56;
}

.cuc-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.cuc-testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: #1c5235;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.cuc-testimonial-text {
    color: #555;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cuc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cuc-author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1c5235, #b83c56);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.cuc-author-info h4 {
    color: #1c5235;
    font-weight: 600;
    margin-bottom: 5px;
}

.cuc-author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== GALLERY SECTION ===== */
.cuc-gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.cuc-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.cuc-gallery-title {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 15px;
    font-weight: 700;
}

.cuc-gallery-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.cuc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.cuc-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cuc-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cuc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cuc-gallery-item:hover img {
    transform: scale(1.1);
}

.cuc-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 82, 53, 0.9), rgba(184, 60, 86, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.cuc-gallery-item:hover .cuc-gallery-overlay {
    opacity: 1;
}

.cuc-gallery-icon {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cuc-gallery-text {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CTA SECTION ===== */
.cuc-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1c5235, #2d6a4f);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cuc-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="cta-pattern" patternUnits="userSpaceOnUse" width="100" height="20"><circle cx="10" cy="10" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-pattern)"/></svg>');
}

.cuc-cta-content {
    position: relative;
    z-index: 2;
}

.cuc-cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cuc-cta-description {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.cuc-cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cuc-cta-phone {
    background: #b83c56;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(184, 60, 86, 0.4);
}

.cuc-cta-phone:hover {
    background: #a03449;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 60, 86, 0.5);
}

.cuc-cta-quote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.cuc-cta-quote:hover {
    background: white;
    color: #1c5235;
}

/* ===== FAQ SECTION ===== */
.cuc-faq-section {
    padding: 100px 0;
    background: white;
}

.cuc-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.cuc-faq-title {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 15px;
    font-weight: 700;
}

.cuc-faq-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.cuc-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.cuc-faq-item {
    background: linear-gradient(135deg, #f8f9fa, white);
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cuc-faq-item:hover {
    border-color: #1c5235;
}

.cuc-faq-item.active {
    border-color: #b83c56;
    box-shadow: 0 10px 30px rgba(184, 60, 86, 0.15);
}

.cuc-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.cuc-faq-question:hover {
    background: rgba(28, 82, 53, 0.05);
}

.cuc-faq-question h3 {
    color: #1c5235;
    font-size: 1.2rem;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.cuc-faq-toggle {
    width: 30px;
    height: 30px;
    background: #b83c56;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cuc-faq-item.active .cuc-faq-toggle {
    background: #1c5235;
    transform: rotate(45deg);
}

.cuc-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.cuc-faq-item.active .cuc-faq-answer {
    max-height: 300px;
    padding: 25px 30px;
}

.cuc-faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ===== LIGHTBOX MODAL ===== */
.cuc-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cuc-lightbox.active {
    display: flex;
}

.cuc-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.cuc-lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.cuc-lightbox-caption {
    padding: 30px;
    background: white;
    text-align: center;
}

.cuc-lightbox-caption h3 {
    color: #1c5235;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cuc-lightbox-caption p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.cuc-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(184, 60, 86, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.cuc-lightbox-close:hover {
    background: #a03449;
    transform: scale(1.1);
}

.cuc-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(28, 82, 53, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.cuc-lightbox-nav:hover {
    background: #1c5235;
    transform: translateY(-50%) scale(1.1);
}

.cuc-lightbox-prev {
    left: 20px;
}

.cuc-lightbox-next {
    right: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .cuc-hero {
        padding: 50px 0 80px;
        margin-top: 180px;
    }

    .cuc-hero-title {
        font-size: 2.8rem;
    }

    .cuc-hero-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .cuc-process-grid,
    .cuc-problem-grid {
        grid-template-columns: 1fr;
    }

    .cuc-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cuc-hero {
        padding: 40px 0 60px;
        margin-top: 25px;
    }
    .cuc-testimonials-section {
        padding: 20px 0;

    }

    .cuc-hero-title {
        font-size: 2.2rem;
    }

    .cuc-hero-subtitle {
        font-size: 1.1rem;
    }

    .cuc-problem-title,
    .cuc-process-title,
    .cuc-benefits-title,
    .cuc-areas-title,
    .cuc-testimonials-title,
    .cuc-gallery-title,
    .cuc-faq-title {
        font-size: 2rem;
    }

    .cuc-cta-title {
        font-size: 2.2rem;
    }

    .cuc-testimonials-grid,
    .cuc-gallery-grid {
        grid-template-columns: 1fr;
    }

    .cuc-benefits-grid {
        grid-template-columns: 1fr;
    }

    .cuc-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cuc-areas-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cuc-hero {
        padding: 30px 0 50px;
        margin-top: 25px;
    }

    .cuc-container {
        padding: 0 15px;
    }

    .cuc-hero-title {
        font-size: 1.8rem;
    }

    .cuc-stat-number {
        font-size: 2rem;
    }

    .cuc-problem-card,
    .cuc-process-card,
    .cuc-testimonial-card {
        padding: 25px;
    }

    .cuc-faq-question {
        padding: 20px;
    }

    .cuc-faq-answer {
        padding: 0 20px;
    }

    .cuc-faq-item.active .cuc-faq-answer {
        padding: 20px;
    }
}
/* ===== EQUIPMENT SECTION - OPTION 3 ===== */
.cuc-equipment-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.cuc-equipment-header {
    text-align: center;
    margin-bottom: 50px;
}

.cuc-equipment-title {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.cuc-equipment-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.cuc-intro-text {
    padding-right: 20px;
}

.cuc-intro-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cuc-intro-description:last-child {
    margin-bottom: 0;
}

.cuc-intro-description strong {
    color: #1c5235;
    font-weight: 600;
}

.cuc-intro-image {
    position: relative;
}

.cuc-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cuc-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cuc-intro-image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cuc-image-wrapper:hover img {
    transform: scale(1.05);
}

.cuc-equipment-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #b83c56, #a03449);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
    backdrop-filter: blur(10px);
}

.cuc-equipment-badge i {
    font-size: 1rem;
}

.cuc-benefits-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cuc-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="benefits-dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%231c5235" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23benefits-dots)"/></svg>');
}

.cuc-benefits-title {
    color: #1c5235;
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cuc-benefits-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cuc-benefit-horizontal {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cuc-benefit-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #28a745;
}

.cuc-benefit-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.cuc-benefit-text {
    flex: 1;
}

.cuc-benefit-text h4 {
    color: #1c5235;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.2;
}

.cuc-benefit-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.cuc-equipment-conclusion {
    font-style: italic;
    color: #555;
    text-align: center;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 25px;
    background: rgba(28, 82, 53, 0.05);
    border-radius: 12px;
    border-left: 4px solid #1c5235;
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE DESIGN FOR EQUIPMENT SECTION ===== */
@media (max-width: 1024px) {
    .cuc-equipment-section {
        padding: 80px 0;
    }

    .cuc-equipment-intro {
        gap: 30px;
        margin-bottom: 50px;
    }

    .cuc-intro-text {
        padding-right: 10px;
    }

    .cuc-equipment-title {
        font-size: 2.2rem;
    }

    .cuc-benefits-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .cuc-equipment-section {
        padding: 60px 0;
    }

    .cuc-equipment-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .cuc-intro-text {
        padding-right: 0;
        order: 2;
    }

    .cuc-intro-image {
        order: 1;
    }

    .cuc-intro-image img {
        height: 250px;
    }

    .cuc-equipment-title {
        font-size: 2rem;
    }

    .cuc-intro-description {
        font-size: 1rem;
    }

    .cuc-benefits-title {
        font-size: 1.6rem;
    }

    .cuc-benefits-horizontal {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cuc-benefit-horizontal {
        padding: 20px;
    }

    .cuc-benefit-icon-large {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .cuc-benefit-text h4 {
        font-size: 1.1rem;
    }

    .cuc-benefit-text p {
        font-size: 0.9rem;
    }

    .cuc-benefits-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .cuc-equipment-section {
        padding: 50px 0;
    }

    .cuc-equipment-title {
        font-size: 1.8rem;
    }

    .cuc-intro-image img {
        height: 300px;
    }

    .cuc-benefit-horizontal {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .cuc-benefit-icon-large {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .cuc-equipment-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .cuc-equipment-conclusion {
        font-size: 1rem;
        padding: 20px;
    }
}
.fire-equipment-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.fire-equipment-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.fire-equipment-text {
    flex: 1;
}

.fire-equipment-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1c5235;
}

.fire-equipment-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.fire-equipment-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

.fire-logo-item {
    flex: 1;
    text-align: center;
}

.fire-logo-item img {
    max-height: 80px;
    max-width: 160px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.fire-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.fire-equipment-image {
    flex: 1;
}

.fire-equipment-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .fire-equipment-content {
        flex-direction: column;
        gap: 40px;
    }

    .fire-equipment-logos {
        flex-direction: column;
        gap: 20px;
    }

    .fire-equipment-text h2 {
        font-size: 1.8rem;
    }
}
/* Storage features styling */
.fire-storage-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.fire-storage-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.fire-storage-feature:hover {
    border-color: #007bff;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.fire-storage-feature i {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 0.75rem;
}

.fire-storage-feature span {
    font-weight: 600;
    color: #343a40;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fire-storage-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
        margin: 2rem auto 0;
    }

    .fire-storage-feature {
        padding: 1.25rem 1rem;
    }

    .fire-storage-feature i {
        font-size: 1.75rem;
    }

    .fire-storage-feature span {
        font-size: 0.95rem;
    }
}
/* Corporate About Page Styles - Stacked Layout */


.about-container {
    max-width: 1440px;
    margin: 126px auto 0;
    padding: 2rem;
}

/* Hero Section */
.about-hero {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    border: 1px solid #e9ecef;
    padding: 4rem 2rem;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1c5235;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1c5235;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Main Content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Company Introduction */
.about-intro {
    background: white;
    padding: 3rem;
    border: 1px solid #e9ecef;
    text-align: center;
    position: relative;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1c5235;
}

.about-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Stacked Sections */
.about-section {
    background: white;
    padding: 3rem;
    border: 1px solid #e9ecef;
    position: relative;
    margin-bottom: 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: #b83c56;
}

.about-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1c5235;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 1rem;
}

.about-text {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-closing {
    margin-top: 2rem;
    font-style: italic;
    color: #666;
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
    font-size: 1.1rem;
}

/* Company Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
    background: white;
}

.about-stat {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid #e9ecef;
    position: relative;
}

.about-stat:last-child {
    border-right: none;
}

.about-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #b83c56;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1c5235;
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services List */
.about-services-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.about-service-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    position: relative;
    padding-left: 3rem;
    font-weight: 500;
    color: #555;
}

.about-service-item::before {
    content: '•';
    position: absolute;
    left: 1.5rem;
    color: #b83c56;
    font-weight: bold;
    font-size: 1.5rem;
}

.about-service-item strong {
    color: #1c5235;
}

/* Benefits List */
.about-benefits-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.about-benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.about-check {
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: #28a745;
    font-weight: bold;
    width: 24px;
    height: 24px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.about-benefit-content {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-benefit-content strong {
    color: #1c5235;
    font-weight: 600;
}

/* Coverage Section */
.about-coverage {
    background: #1c5235;
    color: white;
    text-align: center;
    padding: 4rem 3rem;
    margin-top: 2rem;
}

.about-coverage::before {
    display: none;
}

.about-coverage .about-section-title {
    color: white;
    padding-left: 0;
    margin-bottom: 2rem;
}

.about-coverage .about-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.about-postcodes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.about-postcode {
    background: white;
    color: #1c5235;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-postcode:hover {
    background: #b83c56;
    color: white;
    border-color: #b83c56;
}

.about-coverage-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-top: 2rem;
}

.about-coverage-note strong {
    color: white;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        padding: 1.5rem;
    }

    .about-hero {
        padding: 3rem 2rem;
        margin-bottom: 2rem;
    }

    .about-intro,
    .about-section {
        padding: 2.5rem;
    }

    .about-coverage {
        padding: 3rem 2.5rem;
    }

    .about-services-list {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 2.5rem 1.5rem;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .about-intro,
    .about-section {
        padding: 2rem;
    }

    .about-coverage {
        padding: 3rem 2rem;
    }

    .about-section-title {
        font-size: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-stat {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 2rem;
    }

    .about-stat:last-child {
        border-bottom: none;
    }

    .about-postcodes {
        gap: 0.75rem;
    }

    .about-postcode {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 1rem;
    }

    .about-hero {
        padding: 2rem 1rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-intro,
    .about-section,
    .about-coverage {
        padding: 1.5rem;
    }

    .about-section-title {
        font-size: 1.3rem;
    }

    .about-benefit-item,
    .about-service-item {
        padding: 1.25rem;
    }

    .about-stat-number {
        font-size: 2.5rem;
    }

    .about-postcodes {
        gap: 0.5rem;
    }

    .about-postcode {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 126px;
    padding: 2rem;
}

/* Hero Section */
.contact-hero {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    border: 1px solid #e9ecef;
    padding: 4rem 2rem;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1c5235;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1c5235;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Main Content */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Emergency Banner */
.emergency-banner {
    background: #1c5235;
    color: white;
    padding: 2rem;
    border-radius: 0;
    position: relative;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.emergency-icon {
    font-size: 3rem;
    color: #b83c56;
    flex-shrink: 0;
}

.emergency-text {
    flex: 1;
}

.emergency-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.emergency-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.emergency-phone {
    background: #b83c56;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.emergency-phone:hover {
    background: #a03449;
    transform: translateY(-2px);
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: white;
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    position: relative;
    text-align: center;
    /* Add flexbox to control layout */
    display: flex;
    flex-direction: column;
    min-height: 100%; /* Ensure full height usage */
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: #b83c56;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: #1c5235;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.method-content {
    /* Allow content to grow and push link to bottom */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.method-content h3 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    /* Allow paragraph to grow if needed */
    flex-grow: 1;
}

.method-link {
    color: #b83c56;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    /* Ensure link stays at bottom */
    margin-top: auto;
}

.method-link:hover {
    border-bottom-color: #b83c56;
}
/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 3rem;
    border: 1px solid #e9ecef;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1c5235;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: #1c5235;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    color: #1c5235;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    background: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1c5235;
    box-shadow: 0 0 0 3px rgba(28, 82, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    text-transform: none;
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
}

.form-submit {
    background: #b83c56;
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.form-submit:hover {
    background: #a03449;
    transform: translateY(-2px);
}

/* Company Information */
.company-info {
    background: white;
    padding: 3rem;
    border: 1px solid #e9ecef;
    text-align: center;
    position: relative;
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: #b83c56;
}

.company-details h3 {
    color: #1c5235;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding-left: 1rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.company-stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c5235;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Areas */
.service-areas {
    background: #1c5235;
    color: white;
    padding: 4rem 3rem;
    text-align: center;
}

.service-areas h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.service-areas > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.area-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.areas-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-top: 2rem;
}

.areas-note strong {
    color: white;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        padding: 1.5rem;
    }

    .contact-hero {
        padding: 3rem 2rem;
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .contact-form-section,
    .company-info {
        padding: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 2.5rem 1.5rem;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .emergency-banner {
        padding: 1.5rem;
    }

    .emergency-phone {
        padding: 0.75rem 1.5rem;
        font-size: 1.3rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-method {
        padding: 2rem;
    }

    .contact-form-section,
    .company-info {
        padding: 2rem;
    }

    .service-areas {
        padding: 3rem 2rem;
    }

    .areas-grid {
        gap: 0.75rem;
    }

    .area-tag {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 1rem;
    }

    .contact-hero {
        padding: 2rem 1rem;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .emergency-banner,
    .contact-form-section,
    .company-info,
    .service-areas {
        padding: 1.5rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .emergency-phone {
        padding: 0.6rem 1.2rem;
        font-size: 1.2rem;
    }

    .company-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}
.pp-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 126px;
}

/* Hero Section */
.pp-hero {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    border: 1px solid #e9ecef;
    padding: 4rem 2rem;
    position: relative;
}

.pp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1c5235;
}

.pp-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1c5235;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pp-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.pp-last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.75rem 1.5rem;
    border: 1px solid #e9ecef;
    color: #666;
    font-size: 0.95rem;
}

.pp-last-updated i {
    color: #b83c56;
}

/* Main Content */
.pp-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Introduction */
.pp-intro {
    background: white;
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    position: relative;
}

.pp-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: #b83c56;
}

.pp-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    padding-left: 1rem;
}

/* Privacy Sections */
.pp-section {
    background: white;
    padding: 3rem;
    border: 1px solid #e9ecef;
    position: relative;
}

.pp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: #b83c56;
}

.pp-section h2 {
    color: #1c5235;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-left: 1rem;
}

.pp-section p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.pp-section p:last-child {
    margin-bottom: 0;
}

/* Company Details */
.pp-company-details {
    padding-left: 1rem;
}

.pp-company-details h3 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.pp-contact-item i {
    color: #b83c56;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.pp-contact-item span,
.pp-contact-item a {
    color: #555;
    line-height: 1.5;
}

.pp-contact-item a {
    text-decoration: none;
    font-weight: 500;
}

.pp-contact-item a:hover {
    color: #b83c56;
}

/* Lists */
.pp-info-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.pp-info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 2rem;
    color: #555;
}

.pp-info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #b83c56;
    font-weight: bold;
    font-size: 1.2rem;
}

.pp-info-list li:last-child {
    border-bottom: none;
}

/* Notice Box */
.pp-notice {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pp-notice i {
    color: #2196f3;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.pp-notice span {
    color: #1565c0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Legal Basis */
.pp-legal-basis {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pp-basis-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.pp-basis-icon {
    width: 50px;
    height: 50px;
    background: #1c5235;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pp-basis-content h4 {
    color: #1c5235;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pp-basis-content p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Highlight Box */
.pp-highlight-box {
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pp-highlight-box i {
    color: #4caf50;
    font-size: 1.5rem;
}

.pp-highlight-box span {
    color: #2e7d32;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Rights Grid */
.pp-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pp-right-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.pp-right-item i {
    color: #b83c56;
    font-size: 1.2rem;
    min-width: 20px;
}

.pp-right-item span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pp-exercise-rights {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #fdcb6e;
    padding: 1.5rem;
    margin-top: 2rem;
}

.pp-exercise-rights p {
    margin: 0;
    color: #856404;
    font-size: 1rem;
}

.pp-exercise-rights a {
    color: #b83c56;
    text-decoration: none;
    font-weight: 600;
}

.pp-exercise-rights a:hover {
    text-decoration: underline;
}

/* Help Section */
.pp-help-section {
    background: #1c5235;
    color: white;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
}

.pp-help-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pp-help-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pp-help-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #b83c56;
    color: white;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.pp-help-email:hover {
    background: #a03449;
    transform: translateY(-2px);
}

.pp-help-email i {
    font-size: 1.1rem;
}

.pp-ico-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pp-ico-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.pp-ico-info a {
    color: white;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pp-container {
        padding: 1.5rem;
    }

    .pp-hero {
        padding: 3rem 2rem;
    }

    .pp-section,
    .pp-intro {
        padding: 2.5rem;
    }

    .pp-rights-grid {
        grid-template-columns: 1fr;
    }

    .pp-legal-basis {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .pp-hero {
        padding: 2.5rem 1.5rem;
    }

    .pp-title {
        font-size: 2.2rem;
    }

    .pp-subtitle {
        font-size: 1.1rem;
    }

    .pp-section,
    .pp-intro {
        padding: 2rem;
    }

    .pp-section h2 {
        font-size: 1.4rem;
    }

    .pp-contact-info {
        gap: 0.75rem;
    }

    .pp-contact-item {
        padding: 0.75rem;
    }

    .pp-basis-item {
        padding: 1.25rem;
    }

    .pp-help-section {
        padding: 3rem 2rem;
    }

    .pp-help-email {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .pp-container {
        padding: 1rem;
    }

    .pp-hero {
        padding: 2rem 1rem;
    }

    .pp-title {
        font-size: 1.8rem;
    }

    .pp-section,
    .pp-intro,
    .pp-help-section {
        padding: 1.5rem;
    }

    .pp-basis-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .pp-basis-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .pp-help-email {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
/* Corporate Cookie Policy Styles */
.cp-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.cp-hero {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    border: 1px solid #e9ecef;
    padding: 4rem 2rem;
    position: relative;
}

.cp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1c5235;
}

.cp-hero-icon {
    width: 80px;
    height: 80px;
    background: #1c5235;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
}

.cp-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1c5235;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cp-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.cp-last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.75rem 1.5rem;
    border: 1px solid #e9ecef;
    color: #666;
    font-size: 0.95rem;
}

.cp-last-updated i {
    color: #b83c56;
}

/* Main Content */
.cp-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Introduction */
.cp-intro {
    background: white;
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    position: relative;
}

.cp-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: #b83c56;
}

.cp-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    padding-left: 1rem;
}

/* Cookie Policy Sections */
.cp-section {
    background: white;
    padding: 3rem;
    border: 1px solid #e9ecef;
    position: relative;
}

.cp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: #b83c56;
}

.cp-section h2 {
    color: #1c5235;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-left: 1rem;
}

.cp-section p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.cp-section p:last-child {
    margin-bottom: 0;
}

/* Cookie Visual */
.cp-cookie-visual {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.cp-cookie-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    min-width: 120px;
}

.cp-cookie-item i {
    font-size: 2rem;
    color: #1c5235;
}

.cp-cookie-item span {
    color: #555;
    font-weight: 500;
    text-align: center;
}

/* Cookie Types */
.cp-cookie-types {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cp-cookie-type {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.cp-type-icon {
    width: 60px;
    height: 60px;
    background: #1c5235;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cp-type-content h3 {
    color: #1c5235;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cp-type-content p {
    color: #555;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Third-Party Services */
.cp-third-party {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.cp-service {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.cp-service-icon {
    width: 50px;
    height: 50px;
    background: #b83c56;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cp-service span {
    color: #555;
    font-size: 1rem;
    font-weight: 500;
}

/* Notice Box */
.cp-notice {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cp-notice i {
    color: #2196f3;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.cp-notice span {
    color: #1565c0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Management Options */
.cp-management-options {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.cp-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.cp-option i {
    color: #b83c56;
    font-size: 1.2rem;
    min-width: 20px;
}

.cp-option span {
    color: #555;
    font-size: 1rem;
    font-weight: 500;
}

/* Warning Box */
.cp-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #fdcb6e;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cp-warning i {
    color: #856404;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.cp-warning span {
    color: #856404;
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact Section */
.cp-contact-section {
    background: #1c5235;
    color: white;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
}

.cp-contact-icon {
    width: 80px;
    height: 80px;
    background: #b83c56;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.cp-contact-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cp-contact-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cp-contact-email {
    display: inline-flex;
    align-items: center;
    background: #b83c56;
    color: white;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cp-contact-email:hover {
    background: #a03449;
    transform: translateY(-2px);
}

/* Terms & Conditions Section */
.cp-terms-section {
    background: white;
    border: 1px solid #e9ecef;
    position: relative;
    margin-top: 3rem;
}

.cp-terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #b83c56;
}

.cp-terms-header {
    text-align: center;
    padding: 4rem 3rem 2rem;
    border-bottom: 1px solid #e9ecef;
}

.cp-terms-icon {
    width: 80px;
    height: 80px;
    background: #b83c56;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
}

.cp-terms-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1c5235;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cp-terms-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.75rem 1.5rem;
    border: 1px solid #e9ecef;
    color: #666;
    font-size: 0.95rem;
}

.cp-terms-updated i {
    color: #b83c56;
}

.cp-terms-intro {
    padding: 2.5rem 3rem;
    border-bottom: 1px solid #e9ecef;
}

.cp-terms-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cp-terms-content {
    padding: 3rem;
    display: grid;
    gap: 2rem;
}

.cp-terms-item {
    padding: 2rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    position: relative;
}

.cp-terms-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: #1c5235;
}

.cp-terms-item h3 {
    color: #1c5235;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-left: 1rem;
}

.cp-terms-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.cp-terms-list {
    list-style: none;
    padding-left: 0;
}

.cp-terms-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #555;
    line-height: 1.6;
}

.cp-terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #b83c56;
    font-weight: bold;
    font-size: 1.2rem;
}

.cp-terms-contact {
    background: #1c5235;
    color: white;
    padding: 3rem;
    text-align: center;
}

.cp-terms-contact-icon {
    width: 60px;
    height: 60px;
    background: #b83c56;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.cp-terms-contact-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cp-terms-contact-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cp-terms-email {
    display: inline-flex;
    align-items: center;
    background: #b83c56;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cp-terms-email:hover {
    background: #a03449;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cp-container {
        padding: 1.5rem;
    }

    .cp-hero {
        padding: 3rem 2rem;
    }

    .cp-section,
    .cp-intro {
        padding: 2.5rem;
    }

    .cp-cookie-visual {
        flex-direction: column;
        align-items: center;
    }

    .cp-terms-header {
        padding: 3rem 2rem 2rem;
    }

    .cp-terms-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cp-hero {
        padding: 2.5rem 1.5rem;
    }

    .cp-title {
        font-size: 2.2rem;
    }

    .cp-subtitle {
        font-size: 1.1rem;
    }

    .cp-section,
    .cp-intro {
        padding: 2rem;
    }

    .cp-section h2 {
        font-size: 1.4rem;
    }

    .cp-cookie-visual {
        gap: 1rem;
        padding: 1.5rem;
    }

    .cp-cookie-item {
        min-width: 100px;
        padding: 1rem;
    }

    .cp-cookie-type,
    .cp-terms-item {
        padding: 1.5rem;
    }

    .cp-contact-section,
    .cp-terms-contact {
        padding: 3rem 2rem;
    }

    .cp-terms-header {
        padding: 2.5rem 1.5rem 2rem;
    }

    .cp-terms-intro {
        padding: 2rem;
    }

    .cp-terms-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .cp-container {
        padding: 1rem;
    }

    .cp-hero {
        padding: 2rem 1rem;
    }

    .cp-title {
        font-size: 1.8rem;
    }

    .cp-section,
    .cp-intro,
    .cp-contact-section,
    .cp-terms-contact {
        padding: 1.5rem;
    }

    .cp-cookie-type {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cp-type-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .cp-terms-item {
        padding: 1.25rem;
    }

    .cp-hero-icon,
    .cp-terms-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .cp-contact-icon,
    .cp-terms-contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    .logo img {

        width: 120px;
        height: auto;
    }
    .fire-card-hero{

        padding-top: 140px;

    }
}
/* Responsive Design - UPDATED */
@media (max-width: 768px) {
    .fire-page-title {
        font-size: 2rem;
    }

    .fire-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fire-hero-image img {
        height: 250px;
    }

    .fire-problem-highlights,
    .fire-service-grid,
    .fire-benefits-grid,
    .fire-testimonials-grid,
    .fire-gallery-grid {
        grid-template-columns: 1fr;
    }

    .fire-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* FIXED: Keep areas list centered on mobile */
    .fire-areas-list {
        justify-content: center; /* Changed from flex-start to center */
        gap: 12px; /* Slightly smaller gap for mobile */
    }

    .fire-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .fire-page-title {
        font-size: 1.6rem;
    }

    .fire-page-header {
        padding: 40px 0 30px;
    }

    .fire-hero-section,
    .fire-service-section,
    .fire-testimonials-section,
    .fire-gallery-section,
    .fire-cta-section,
    .fire-faq-section {
        padding: 50px 0;
    }

    .fire-problem-section,
    .fire-benefits-section,
    .fire-areas-section {
        padding: 40px 0;
    }

    /* Additional mobile styling for areas list */
    .fire-areas-list {
        justify-content: center; /* Keep centered */
        gap: 10px;
    }

    .fire-area-tag {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
/* ===== MOBILE MENU STYLES ===== */
/* Updated Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(28, 82, 53, 0.98), rgba(45, 106, 79, 0.98));
    backdrop-filter: blur(15px);
    z-index: 1003;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close-menu {
    background: rgba(184, 60, 86, 0.8);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: #b83c56;
    transform: rotate(90deg);
}

.mobile-menu-items {
    list-style: none;
    flex: 1;
    padding: 1rem;
    margin: 0;
}

.mobile-menu-items > li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-items > li:last-child {
    border-bottom: none;
}

.mobile-menu-items > li > a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 1.25rem 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0;
}

.mobile-menu-items > li > a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    color: white !important;
    text-decoration: none !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1.25rem 1rem !important;
    cursor: pointer !important;
    user-select: none !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
}

.mobile-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.mobile-dropdown-toggle i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
    color: white;
}

.mobile-dropdown-menu {
    display: none;
    background: rgba(0, 0, 0, 0.3);
    margin: 0;
    border-radius: 0 0 12px 12px;
    padding: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border-radius: 0 0 12px 12px !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    backdrop-filter: blur(10px) !important;
}

.mobile-dropdown-menu li {
    list-style: none;
    margin: 0;
}

.mobile-dropdown-menu a {
    display: block !important;
    padding: 15px 25px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
    border-left: 3px solid transparent !important;
    margin-bottom: 0 !important;
}

.mobile-dropdown-menu a:hover {
    background: rgba(184, 60, 86, 0.4) !important;
    color: white !important;
    border-left-color: #b83c56 !important;
}

/* Animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu.active {
    animation: slideInRight 0.4s ease-out;
}

.mobile-menu.active .mobile-menu-items li {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.mobile-menu.active .mobile-menu-items li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-menu-items li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-menu-items li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-menu-items li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu.active .mobile-menu-items li:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fix for CTA button when used as phone link */
.cta-button {
    text-decoration: none !important;
    display: inline-block !important;
}

/* Ensure hover states work correctly for link version */
.cta-button:hover {
    text-decoration: none !important;
}

/* Optional: Add focus styles for accessibility */
.cta-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}
.project-detail-main {
    padding: 2rem 0 4rem;
    background: #f8f9fa;
    min-height: 80vh;
    margin-top: 110px; /* Account for 100px navbar */
}

.project-detail-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

.project-header {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.project-header h1 {
    color: #1c5235;
    font-size: 2.2rem;
    margin-bottom: 0;
    line-height: 1.3;
}

.project-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-bottom: 2rem;
}

.project-main-content {
    min-width: 0; /* Prevents overflow issues */
}

.project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.sidebar-card h3 {
    color: #1c5235;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.project-info-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.project-info-card .info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-info-card .info-item i {
    color: #1c5235;
    font-size: 1rem;
    width: 20px;
    margin-top: 2px;
}

.project-info-card .info-item div {
    flex: 1;
}

.project-info-card .info-item strong {
    display: block;
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.project-info-card .info-item span {
    color: #666;
    font-size: 0.9rem;
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.sidebar-tag {
    background: #1c5235;
    color: white !important;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
}



.sidebar-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #b83c56;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.sidebar-cta-button:hover {
    background: #a63349;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
}

.contact-form-card h3 {
    margin-bottom: 1rem;
}

.sidebar-contact-form .form-group {
    margin-bottom: 1rem;
}

.sidebar-contact-form input,
.sidebar-contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.sidebar-contact-form input:focus,
.sidebar-contact-form textarea:focus {
    outline: none;
    border-color: #1c5235;
    box-shadow: 0 0 0 2px rgba(28, 82, 53, 0.1);
}

.sidebar-contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit-btn {
    width: 100%;
    background: #1c5235;
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.project-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.project-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.project-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-excerpt {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #1c5235;
}

.project-excerpt p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.project-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

/* Better styling for content elements */
.project-description h1,
.project-description h2,
.project-description h3,
.project-description h4 {
    color: #1c5235;
    margin: 1.5rem 0 1rem 0;
    font-weight: 700;
}

.project-description h1 { font-size: 1.8rem; }
.project-description h2 { font-size: 1.5rem; }
.project-description h3 { font-size: 1.3rem; }
.project-description h4 { font-size: 1.1rem; }

.project-description p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.project-description strong,
.project-description b {
    color: #1c5235;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin: 1.5rem 0 0.8rem 0;
}

.project-description ul,
.project-description ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 0;
}

.project-description li {
    background: #f8f9fa;
    margin: 0.5rem 0;
    padding: 0.8rem 1.2rem 0.8rem 2.5rem;
    border-radius: 8px;
    border-left: 3px solid #1c5235;
    list-style: none;
    position: relative;
}

.project-description li:before {
    content: "✓";
    color: #1c5235;
    font-weight: bold;
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
}

.project-tags {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.project-tags h3 {
    color: #1c5235;
    margin-bottom: 1rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #1c5235;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.project-navigation {
    text-align: center;
}

.nav-all-projects {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #1c5235;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-all-projects:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .project-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }



    .project-image img {
        height: 250px;
    }

    .project-header h1 {
        font-size: 1.8rem;
    }

    .project-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .project-content,
    .project-header,
    .sidebar-card {
        padding: 1.5rem;
    }

    .project-description strong,
    .project-description b {
        font-size: 1rem;
    }

    .sidebar-cta-button {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    .top-bar-phone{
        gap: 15px;
    }
}
.project-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    color: #666;
    font-size: 0.9rem;
}

.project-views i {
    color: #1c5235;
    font-size: 0.8rem;
}

.no-projects {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.no-projects-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1c5235, #2d6a4f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(28, 82, 53, 0.3);
}

.no-projects h3 {
    color: #1c5235;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.no-projects p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* View All Projects Button */
.view-all-projects {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.view-all-projects .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1c5235, #2d6a4f);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(28, 82, 53, 0.2);
}

.view-all-projects .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 82, 53, 0.3);
    background: linear-gradient(135deg, #2d6a4f, #1c5235);
}

.view-all-projects .btn-primary i {
    transition: transform 0.3s ease;
}

.view-all-projects .btn-primary:hover i {
    transform: translateX(5px);
}

/* Enhanced pagination styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: #1c5235;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.pagination-btn:hover {
    background: #2a6b42;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(28, 82, 53, 0.3);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid #e9ecef;
    color: #1c5235;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    border-color: #1c5235;
    background: #1c5235;
    color: white;
}

.pagination-number.current {
    background: #b83c56;
    border-color: #b83c56;
    color: white;
}

.pagination-dots {
    color: #666;
    font-weight: 600;
    padding: 0 0.5rem;
}

.recent-project-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.recent-project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.recent-project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-project-read-more {
    text-align: center !important;
    flex-shrink: 0;
}

.recent-project-read-more i {
    color: #1c5235;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .recent-project-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .recent-project-read-more {
        align-self: stretch;
        text-align: center;
        padding: 12px 20px;
    }

    .pagination {
        gap: 0.5rem;
    }

    .pagination-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .pagination-number {
        width: 40px;
        height: 40px;
    }

    .no-projects {
        padding: 3rem 1.5rem;
    }

    .no-projects-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .view-all-projects .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }

    .pagination-numbers {
        order: 1;
    }

    .pagination-btn {
        order: 2;
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }

    .no-projects {
        padding: 2rem 1rem;
    }

    .no-projects h3 {
        font-size: 1.5rem;
    }

    .no-projects p {
        font-size: 1rem;
    }

    .view-all-projects .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Before/After Sections Styles */
.ba-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.ba-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1c5235 0%, #2a6b45 100%);
    position: relative;
    overflow: hidden;
}

.ba-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.ba-section:nth-child(even) {
    background: linear-gradient(135deg, #b83c56 0%, #d14966 100%);
}

/* Section Header */
.ba-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.ba-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.ba-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Content Grid */
.ba-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Text Content */
.ba-text {
    color: #fff;
}

.ba-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.ba-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}
.ba-cta-icon {

    color: #000;
}

.ba-feature:nth-child(2) { animation-delay: 0.1s; }
.ba-feature:nth-child(3) { animation-delay: 0.2s; }
.ba-feature:nth-child(4) { animation-delay: 0.3s; }
.ba-feature:nth-child(5) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ba-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.ba-feature-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.ba-feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.ba-feature-text p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Before/After Slider Container */
.ba-slider-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    background: #fff;
}

.ba-slider-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    user-select: none;
}

/* Images */
.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-image.before {
    z-index: 2;
}

.ba-image.after {
    z-index: 1;
}

/* Reveal Container */
.ba-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
}

.ba-reveal img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 600px;
    max-width: 600px;
}

/* Slider Handle */
.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    cursor: ew-resize;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.ba-slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ba-slider-handle::after {
    content: '\f337';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1c5235;
    font-size: 20px;
    z-index: 1;
}

/* Labels */
.ba-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(184, 60, 86, 0.9);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    z-index: 5;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.ba-label.before {
    left: 20px;
}

.ba-label.after {
    right: 20px;
    background: rgba(28, 82, 53, 0.9);
}

/* Reverse layout for alternating sections */
.ba-section:nth-child(even) .ba-content {
    direction: rtl;
}

.ba-section:nth-child(even) .ba-text {
    direction: ltr;
}

/* CTA Button */
.ba-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.95);
    color: #1c5235;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.ba-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.ba-section:nth-child(even) .ba-cta {
    color: #b83c56;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .ba-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ba-section:nth-child(even) .ba-content {
        direction: ltr;
    }

    .ba-header h2 {
        font-size: 2.2rem;
    }

    .ba-text {
        text-align: center;
    }

    .ba-feature {
        justify-content: center;
        text-align: left;
    }

    .ba-cta {
        display: inline-flex;
    }
}

@media (max-width: 480px) {
    .ba-header h2 {
        font-size: 1.8rem;
    }

    .ba-header p {
        font-size: 1rem;
    }

    .ba-label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}
/* Contact Form Section */
.cuc-contact-form-section {
    padding-top: 80px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.cuc-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.cuc-form-header h2 {
    font-size: 2.5rem;
    color: #1c5235;
    margin-bottom: 15px;
    font-weight: 700;
}

.cuc-form-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.cuc-form-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible; /* Important for dropdown */
}

.cuc-contact-form {
    width: 100%;
    overflow: visible; /* Important for dropdown */
}

.cuc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.cuc-form-group {
    position: relative;
}

.cuc-form-group.full-width {
    margin-bottom: 25px;
    position: relative;
    overflow: visible; /* Important for dropdown */
}

.cuc-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.cuc-form-group label i {
    color: #b83c56;
    font-size: 0.9rem;
}

.required {
    color: #b83c56;
    font-weight: 700;
}

.optional {
    color: #999;
    font-size: 0.85rem;
    font-weight: 400;
}

.select-hint {
    color: #666;
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    margin-left: auto;
}

.cuc-form-group input,
.cuc-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.cuc-form-group input:focus,
.cuc-form-group textarea:focus {
    outline: none;
    border-color: #1c5235;
    background: white;
    box-shadow: 0 0 0 4px rgba(28, 82, 53, 0.1);
}

.cuc-form-group input::placeholder,
.cuc-form-group textarea::placeholder {
    color: #999;
}

/* Multi-Select Dropdown Styles */
.cuc-multi-select-wrapper {
    position: relative;
    overflow: visible; /* Critical */
}

.cuc-multi-select-display {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 52px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
}

.cuc-multi-select-display:hover {
    border-color: #1c5235;
}

.cuc-multi-select-display.active {
    border-color: #1c5235;
    background: white;
    box-shadow: 0 0 0 4px rgba(28, 82, 53, 0.1);
    border-radius: 10px 10px 0 0;
}

.cuc-multi-select-display .placeholder {
    color: #999;
}

.cuc-multi-select-display .selected-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1c5235;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    animation: tagFadeIn 0.3s ease;
}

@keyframes tagFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cuc-multi-select-display .selected-tag i {
    font-size: 0.8rem;
    color: white;
}

/* The Dropdown Container - CRITICAL STYLES */
.cuc-multi-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #1c5235;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999999;
    max-height: 300px;
    overflow-y: auto;
    display: none; /* Hidden by default */
    visibility: visible; /* Override any inherited visibility */
}

/* When shown */
.cuc-multi-select-dropdown.show {
    display: block !important;
}

/* Checkbox Options */
.cuc-checkbox-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin: 0;
    font-weight: 400;
    position: relative;
}

.cuc-checkbox-option:hover {
    background: #f0f7f4;
}

.cuc-checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cuc-checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    background: #1c5235;
    border-color: #1c5235;
}

.cuc-checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\2713';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    user-select: none;
}

.checkbox-label i {
    color: #b83c56;
    width: 20px;
    text-align: center;
}

/* Submit Button and Footer */
.cuc-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.cuc-form-note {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cuc-form-note i {
    color: #1c5235;
}

.cuc-submit-btn {
    background: linear-gradient(135deg, #b83c56, #d14966);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 60, 86, 0.3);
}

.cuc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 60, 86, 0.4);
}

.cuc-submit-btn:active {
    transform: translateY(0);
}

.cuc-submit-btn i {
    font-size: 1rem;
}

/* Loading State */
.cuc-submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.cuc-submit-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Validation Styles */
.cuc-form-group input:invalid:not(:focus):not(:placeholder-shown),
.cuc-form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e74c3c;
}

.cuc-form-group input:valid:not(:focus):not(:placeholder-shown) {
    border-color: #27ae60;
}

/* Error State for Services Dropdown */
.cuc-multi-select-display.error {
    border-color: #e74c3c;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cuc-form-wrapper {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .cuc-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cuc-form-header h2 {
        font-size: 2rem;
    }

    .cuc-form-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cuc-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .cuc-multi-select-dropdown {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .cuc-form-wrapper {
        padding: 20px 15px;
    }

    .cuc-form-header h2 {
        font-size: 1.75rem;
    }

    .cuc-form-header p {
        font-size: 1rem;
    }

    .cuc-form-group label {
        font-size: 0.9rem;
    }

    .cuc-form-group input,
    .cuc-form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Scrollbar Styling for Dropdown */
.cuc-multi-select-dropdown::-webkit-scrollbar {
    width: 8px;
}

.cuc-multi-select-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.cuc-multi-select-dropdown::-webkit-scrollbar-thumb {
    background: #1c5235;
    border-radius: 10px;
}

.cuc-multi-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #0f2b1c;
}
/* Fix arrow icon color in Get Free Quote button */
.ba-cta .fas.fa-arrow-right {
    color: #b83c56;
}

/* Also ensure it stays the correct color on hover */
.ba-cta:hover .fas.fa-arrow-right {
    color: #b83c56;
}