/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Description: A child theme of Twenty Twenty-Five
Author: Your Name
Author URI: Your website URL
Template: twentytwentyfive
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive-child
*/

/* Add your custom styles below this line */

/* Hide duplicate "Garage Conversion Company" text in page content */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content p,
.entry-content div,
.entry-content span {
    /* This will be handled by JavaScript */
}

/* Hide company name text */
.hide-company-name {
    display: none !important;
}

/* Hide WordPress site title that appears as a link */
.wp-block-site-title,
.wp-block-site-title a,
.site-title,
.site-title a,
h1.wp-block-site-title,
h1.wp-block-site-title a {
    display: none !important;
}

/* Hide any site title links */
a[href*="home"],
a[href="/"] {
    /* This will be handled by JavaScript */
}

/* More comprehensive hiding of site titles and links */
.wp-block-site-title,
.wp-block-site-title a,
.site-title,
.site-title a,
h1.wp-block-site-title,
h1.wp-block-site-title a,
.wp-block-site-title a,
.site-title a {
    display: none !important;
}

/* Don't hide navigation links in the floating banner */
.floating-banner .banner-nav a,
.floating-banner nav a,
.floating-banner a {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide any element that might contain the site title */
.wp-block-site-title,
.site-title,
.wp-block-site-title a,
.site-title a,
h1.wp-block-site-title,
h1.wp-block-site-title a,
.wp-block-site-title a,
.site-title a {
    display: none !important;
}

/* Hide any links that might be the site title */
a[href="/"],
a[href*="home"],
a[href*="index"],
a[href*="wp-content"],
a[href*="garage"] {
    /* This will be handled by JavaScript */
}

/* Updated Floating Banner Styles - Green and Black Theme */
.floating-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a; /* Dark black background */
    padding: 20px 0 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease;
    height: auto;
    min-height: 120px;
    max-height: 200px;
}

.floating-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.banner-top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 15px;
}

.banner-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.banner-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.banner-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.banner-logo-text-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.banner-logo-text-link:hover {
    opacity: 0.8;
}

.banner-logo-text h2 {
    color: #66BB6A; /* Green text */
    font-size: 1.4em;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.banner-logo-text p {
    color: #ffffff; /* White text */
    font-size: 0.9em;
    margin: 0;
    line-height: 1.2;
}

.banner-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.banner-nav a {
    color: #ffffff; /* White text */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.banner-nav a:hover {
    color: #66BB6A; /* Green on hover */
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    position: relative;
    padding-right: 28px;
}

.dropdown-toggle::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    color: #66BB6A;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle {
    color: #66BB6A; /* Green on hover */
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999 !important;
    overflow: hidden;
}

.nav-dropdown {
    position: relative;
    z-index: 1000;
}

.nav-dropdown:hover {
    z-index: 10000 !important;
}

.nav-dropdown:hover .dropdown-menu {
    z-index: 10001 !important;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9em;
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #66BB6A !important;
    color: #ffffff !important;
    padding-left: 20px;
    border-radius: 0;
}

.banner-phone-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #333333;
}

.banner-contact {
    display: flex;
    gap: 30px;
    align-items: center;
}

.banner-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #66BB6A; /* Green text */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.banner-phone:hover {
    color: #5CB85C; /* Darker green on hover */
}

.banner-phone svg {
    color: #66BB6A; /* Green icon */
}

.banner-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #66BB6A; /* Green text */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85em;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.banner-email:hover {
    color: #5CB85C; /* Darker green on hover */
}

.banner-email svg {
    color: #66BB6A; /* Green icon */
}

/* Responsive Design for Floating Banner */
@media (max-width: 1200px) {
    .floating-banner-content {
        padding: 0 10px;
    }
    
    .banner-top-section {
        gap: 12px;
    }
    
    .banner-nav {
        gap: 20px;
    }
    
    .dropdown-menu {
        min-width: 160px;
    }
    
    .banner-contact {
        gap: 15px;
    }
}

@media (max-width: 968px) {
    /* Hero content positioning - push text lower */
    .hero-slide .hero-content {
        padding: 200px 20px 25px 20px !important;
    }
    
    /* Contact form visible padding via form groups */
    #contact .contact-form,
    .contact-section .contact-form,
    .contact-form-column .contact-form,
    div.contact-form {
        padding: 0 !important;
        background: #ffffff !important;
        border-radius: 15px !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    }
    
    #contact .contact-form .form-group,
    .contact-form .form-group {
        margin: 0 0 30px 0 !important;
        padding: 0 30px !important;
    }
    
    #contact .contact-form .form-group:first-child,
    .contact-form .form-group:first-child {
        padding-top: 40px !important;
    }
    
    #contact .contact-form .form-group:last-child,
    .contact-form .form-group:last-child {
        padding-bottom: 40px !important;
        margin-bottom: 0 !important;
    }
    
    .floating-banner {
        padding: 10px 0 8px 0 !important;
        max-width: 100vw;
        overflow-x: hidden;
        min-height: auto !important;
        overflow-y: visible !important;
    }
    
    .nav-dropdown {
        position: relative;
    }
    
    .floating-banner-content {
        padding: 0 8px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .banner-top-section {
        flex-direction: column;
        gap: 6px !important;
        text-align: center;
        min-height: auto;
        margin-top: 4px;
    }
    
    .banner-logo {
        flex-direction: column;
        gap: 5px !important;
        height: auto;
    }
    
    .banner-logo img {
        height: 35px !important;
        max-height: 35px;
    }
    
    .banner-logo-text h2 {
        font-size: 1.2em !important;
        margin: 0;
        line-height: 1.2;
    }
    
    .banner-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px !important;
        margin-top: 2px;
    }
    
    .banner-nav a {
        font-size: 0.85em !important;
        padding: 4px 8px !important;
    }
    
    .nav-dropdown {
        position: relative;
    }
    
    /* Mobile: Services dropdown - proper spacing */
    .dropdown-toggle {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        padding-right: 20px !important;
        position: relative;
    }
    
    .dropdown-toggle::after {
        content: '▼';
        position: absolute;
        right: -8px !important;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.75em;
        color: #66BB6A;
        transition: transform 0.3s ease;
    }
    
    /* Icon rotates when dropdown opens */
    .nav-dropdown:hover .dropdown-toggle::after,
    .nav-dropdown.active .dropdown-toggle::after,
    .nav-dropdown:focus-within .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* Dropdown menu overlays content */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        border: 1px solid #333333;
        background-color: #1a1a1a;
        margin-top: 2px;
        min-width: 200px;
        width: auto;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 10000 !important;
        display: block;
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu a {
        padding: 12px 16px;
        border-bottom: 1px solid #444444;
        font-size: 0.85em;
        color: #ffffff;
        display: block;
        width: 100%;
        white-space: nowrap;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        background-color: #66BB6A !important;
        color: #ffffff !important;
        padding-left: 20px;
    }
    
    .banner-phone-section {
        padding-top: 6px !important;
        padding-bottom: 4px !important;
        min-height: auto;
        width: 100%;
        overflow: hidden;
        border-top-width: 1px !important;
    }
    
    .banner-contact {
        flex-direction: row !important;
        gap: 6px !important;
        align-items: center;
        justify-content: flex-start !important;
        width: 100%;
        max-width: 100%;
        flex-wrap: nowrap;
        padding: 0 5px;
    }
    
    /* Hide first phone number on mobile to save space */
    .banner-contact .banner-phone:first-child {
        display: none !important;
    }
    
    .banner-phone {
        font-size: 0.7em !important;
        padding: 2px 3px !important;
        white-space: nowrap;
        flex: 0 0 auto !important;
        max-width: 35% !important;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box;
    }
    
    .banner-email {
        font-size: 0.75em !important;
        white-space: nowrap;
        flex: 1 1 auto !important;
        width: 100%;
        min-width: 0;
        overflow: visible !important;
        text-overflow: ellipsis;
        box-sizing: border-box;
        text-align: left !important;
        margin-left: 0 !important;
    }
    
    .banner-phone a,
    .banner-email a {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
        width: 100%;
    }
    
    .banner-email a {
        overflow: visible !important;
        white-space: normal !important;
        word-break: break-word !important;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .floating-banner {
        padding: 8px 0 6px 0 !important;
        min-height: auto !important;
    }
    
    .banner-logo-text h2 {
        font-size: 1em !important;
    }
    
    .banner-logo img {
        height: 30px !important;
    }
    
    .banner-nav a {
        font-size: 0.75em !important;
        padding: 3px 6px !important;
    }
    
    .banner-nav {
        gap: 8px !important;
    }
    
    .banner-phone {
        font-size: 0.7em !important;
        padding: 3px 6px !important;
        max-width: 48% !important;
    }
    
    .banner-email {
        font-size: 0.65em !important;
        max-width: 48% !important;
    }
    
    /* Hide phone/email icons on very small screens to save space */
    .banner-phone svg,
    .banner-email svg {
        display: none !important;
    }
    
    /* MOBILE CONTACT SECTION - COMPLETE REFACTOR FOR SMALL SIZE */
    .contact-section {
        padding: 30px 0 !important;
        overflow-x: hidden !important;
    }
    
    .contact-section .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 25px 0 15px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    .contact-two-column-layout {
        width: 90% !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }
    
    .contact-form,
    .contact-form-column,
    .contact-info-column {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact-form,
    .contact-form-column .contact-form,
    .wpcf7-form {
        padding: 40px 25px !important;
        background: white !important;
        border-radius: 12px !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
        margin-bottom: 20px !important;
    }
    
    .contact-form .form-group {
        padding: 0 !important;
        margin: 0 0 25px 0 !important;
        width: 100% !important;
    }
    
    .contact-form .form-group:last-child {
        margin-bottom: 0 !important;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select,
    .wpcf7-form input,
    .wpcf7-form textarea,
    .wpcf7-form select,
    .form-group input,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
        box-sizing: border-box !important;
        border-width: 1px !important;
        height: auto !important;
        min-height: 38px !important;
        border-radius: 5px !important;
    }
    
    .contact-form textarea,
    .wpcf7-form textarea,
    .form-group textarea {
        min-height: 80px !important;
    }
    
    .form-group label,
    .contact-form label {
        font-size: 12px !important;
        margin-bottom: 5px !important;
        font-weight: 600 !important;
    }
    
    .contact-info-box h3 {
        font-size: 0.9em !important;
    }
    
    .contact-detail-item {
        font-size: 0.75em !important;
    }
    
    .contact-form button,
    .contact-form .cta-button,
    .contact-form input[type="submit"] {
        font-size: 13px !important;
        padding: 12px 20px !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        margin-top: 10px !important;
    }
    
    .contact-info-box {
        width: 100% !important;
        padding: 18px 15px !important;
        margin: 0 0 15px 0 !important;
        box-sizing: border-box !important;
        background: white !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }
    
    .contact-map,
    .contact-map iframe {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Failsafe for all contact elements */
    body,
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    /* Prevent contact section from overflowing */
    #contact.contact-section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    #contact .container {
        width: 90% !important;
        max-width: 90% !important;
        padding: 0 10px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    #contact .contact-two-column-layout {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #contact .contact-form,
    #contact .contact-form-column {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #contact .contact-map,
    #contact .contact-map iframe {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Force all children to stay inside */
    #contact * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Make all contact section content smaller */
    #contact h2 {
        font-size: 1.5em !important;
    }
    
    #contact p {
        font-size: 0.9em !important;
    }
    
    /* Ensure inputs are small and fit */
    #contact input,
    #contact textarea,
    #contact select {
        padding: 4px 6px !important;
        font-size: 11px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        min-height: 32px !important;
    }
    
    #contact textarea {
        min-height: 60px !important;
    }
    
    #contact label {
        font-size: 11px !important;
    }
    
    #contact button {
        font-size: 12px !important;
        padding: 8px 15px !important;
    }
    
    /* Remove any hidden overflow from form elements */
    #contact .contact-form,
    #contact .contact-form *,
    #contact .wpcf7-form,
    #contact .wpcf7-form * {
        overflow: visible !important;
    }
    
    .simple-garage-template > * {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .contact-section,
    .contact-section *,
    .contact-form,
    .contact-form *,
    .contact-info-column,
    .contact-info-column * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Remove any negative margins */
    .contact-section *,
    .contact-form *,
    .contact-info-column * {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Ensure form rows don't create overflow */
    .form-row,
    .contact-form .form-row {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Force all inputs in contact section to fit */
    #contact input[type="text"],
    #contact input[type="email"],
    #contact input[type="tel"],
    #contact textarea,
    #contact select {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 8px 10px !important;
        font-size: 14px !important;
    }
}

/* Extra small screens - make even more compact */
@media (max-width: 375px) {
    .banner-phone {
        font-size: 0.65em !important;
        padding: 2px 4px !important;
    }
    
    .banner-email {
        font-size: 0.6em !important;
    }
    
    .banner-contact {
        gap: 6px !important;
    }
}

/* Custom Page Template Styles */
.custom-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.custom-page-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-page-content .entry-title {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.custom-page-content .entry-content {
    line-height: 1.6;
    font-size: 1.1em;
}

.custom-page-content .entry-content h2 {
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}

.custom-page-content .entry-content p {
    margin-bottom: 20px;
}

.page-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.page-links a {
    color: #007cba;
    text-decoration: none;
    margin: 0 5px;
}

.page-links a:hover {
    text-decoration: underline;
}

/* Responsive design for custom page */
@media (max-width: 768px) {
    .custom-page-container {
        padding: 20px 10px;
    }
    
    .custom-page-content {
        padding: 20px;
    }
    
    .custom-page-content .entry-title {
        font-size: 2em;
    }
} 

/* Page with Sidebar Template Styles */
.page-with-sidebar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-with-sidebar-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.main-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-content .entry-title {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.main-content .entry-subtitle {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 30px;
    font-style: italic;
}

.main-content .entry-content {
    line-height: 1.6;
    font-size: 1.1em;
}

.main-content .entry-content h2 {
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}

.main-content .entry-content p {
    margin-bottom: 20px;
}

.sidebar {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007cba;
}

.sidebar-widget p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

/* Responsive design for sidebar template */
@media (max-width: 968px) {
    .page-with-sidebar-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sidebar {
        position: static;
        order: -1;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .main-content .entry-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-with-sidebar-container {
        padding: 20px 10px;
    }
    
    .main-content,
    .sidebar {
        padding: 20px;
    }
} 

/* Garage Conversion Template Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Features Section */
.features-section {
    padding: 60px 0 40px 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.features-heading {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
}

.features-cta {
    text-align: center;
    margin-top: 50px;
}

.more-about-us-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #66BB6A 0%, #5CB85C 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3);
}

.more-about-us-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 187, 106, 0.4);
    background: linear-gradient(135deg, #5CB85C 0%, #4CAF50 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    text-align: center;
    padding: 8px 6px;
    background: #ffffff;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    width: 34px;
    height: 34px;
    stroke: #66BB6A;
    stroke-width: 2;
    fill: none;
}

.feature-item h3 {
    font-size: 0.75em;
    margin: 0;
    color: #000000;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #1a1a1a;
    position: relative;
    z-index: 1;
    margin-top: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/gcc-png.png');
    background-size: 60% auto;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.services-section h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image-container {
    position: relative;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.2;
}

.service-content p {
    color: #666666;
    line-height: 1.7;
    font-size: 1.1em;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #66BB6A;
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

.process-section h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #666;
}

.process-section p {
    font-size: 1.2em;
    margin-bottom: 50px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-item {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.process-number {
    width: 50px;
    height: 50px;
    background: #007cba;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-item h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

.process-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #333;
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    box-sizing: border-box !important;
    max-width: 100% !important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007cba;
}

.submit-button {
    background: #007cba;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-button:hover {
    background: #005a87;
    transform: translateY(-2px);
}

/* Garage Conversion About Text */
.garage-about-text p {
    color: #e0e0e0 !important;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
}

.garage-about-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0 !important;
    margin-bottom: 20px;
}

/* Working Layout with Two Vertical Sliders */
.working-layout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    align-items: start;
    position: relative;
    z-index: 5;
    background: transparent;
}

/* Main page with image sliders needs fixed height for alignment */
.page-template-page-garage-conversion .transparent-text-overlay {
    height: 930px;
}

.image-sliders-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    background: transparent;
    height: 930px;
    box-sizing: border-box;
}

/* Static images for About Us page */
.about-static-images {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: transparent;
}

.static-image-container {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #66BB6A;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    max-width: 900px;
    width: 100%;
}

.static-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: #5CB85C;
}

.about-static-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.transparent-text-overlay {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 3px solid #66BB6A;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    height: fit-content;
    box-sizing: border-box;
    position: sticky;
    top: 40px;
    z-index: 10;
    overflow-y: auto;
}

.transparent-text-overlay h2 {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.transparent-text-overlay p {
    color: #f0f0f0;
    font-size: 0.85em;
    line-height: 1.4;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.transparent-text-overlay .feature {
    margin-bottom: 20px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transparent-text-overlay .feature:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transparent-text-overlay .feature h3 {
    color: #66BB6A;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 6px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.transparent-text-overlay .feature p {
    color: #000000;
    font-size: 0.75em;
    line-height: 1.3;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 8px;
    font-weight: 500;
}

/* Garage Conversion Feature Text */
.garage-about-text {
    max-height: 520px;
    max-width: 400px;
    width: 100%;
    overflow-y: auto;
    display: block !important;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.garage-about-text h2 {
    color: #e0e0e0 !important;
    font-size: 1.8em !important;
    margin-bottom: 15px !important;
}

.garage-about-text p {
    font-size: 0.9em !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
}

.garage-about-text .about-features {
    display: block !important;
    margin-top: 20px;
}

.garage-about-text .feature {
    display: block !important;
    margin-bottom: 15px !important;
    padding: 10px 0;
}

.garage-about-text .feature h3 {
    color: #66BB6A !important;
    font-size: 1em !important;
    margin-bottom: 5px !important;
    display: block !important;
}

.garage-about-text .feature p {
    color: #000000 !important;
    font-size: 0.85em !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
    display: block !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slide .hero-content {
        padding: 180px 15px 20px 15px !important;
        max-width: 95% !important;
        margin: 0 auto !important;
    }
    
    .hero-content h1 {
        font-size: 1.8em !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }
    
    .hero-content p {
        font-size: 0.95em !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }
    
    /* Contact form with very visible padding */
    #contact .contact-form,
    .contact-section .contact-form,
    .contact-form-column .contact-form,
    div.contact-form {
        padding: 0 !important;
        background: #ffffff !important;
        border-radius: 15px !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    }
    
    #contact .contact-form .form-group,
    .contact-form .form-group {
        margin: 0 0 30px 0 !important;
        padding: 0 30px !important;
    }
    
    #contact .contact-form .form-group:first-child {
        padding-top: 40px !important;
    }
    
    #contact .contact-form .form-group:last-child {
        padding-bottom: 40px !important;
        margin-bottom: 0 !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .contact-section {
        padding: 40px 0 !important;
        overflow-x: hidden !important;
    }
    
    /* MOBILE CONTACT REFACTOR - Scale down entire section */
    .contact-section .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 20px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    .contact-two-column-layout {
        padding: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-form,
    .contact-form-column,
    .contact-info-column {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact-form .form-group {
        padding: 0 !important;
        margin: 0 0 18px 0 !important;
        width: 100% !important;
    }
    
    .contact-form .form-group:last-child {
        margin-bottom: 0 !important;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select,
    .wpcf7-form input,
    .wpcf7-form textarea,
    .wpcf7-form select,
    .form-group input,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
        box-sizing: border-box !important;
        border-width: 1px !important;
        height: auto !important;
        min-height: 38px !important;
        border-radius: 5px !important;
    }
    
    .contact-form textarea,
    .wpcf7-form textarea,
    .form-group textarea {
        min-height: 80px !important;
    }
    
    .form-group label,
    .contact-form label {
        font-size: 12px !important;
        margin-bottom: 5px !important;
        font-weight: 600 !important;
    }
    
    .contact-info-box h3 {
        font-size: 0.9em !important;
    }
    
    .contact-detail-item {
        font-size: 0.75em !important;
    }
    
    .contact-form button,
    .contact-form .cta-button,
    .contact-form input[type="submit"] {
        font-size: 13px !important;
        padding: 12px 20px !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        margin-top: 10px !important;
    }
    
    .contact-info-box {
        width: 100% !important;
        padding: 12px !important;
        margin: 0 0 12px 0 !important;
        box-sizing: border-box !important;
    }
    
    .contact-map,
    .contact-map iframe {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .form-group input,
    .form-group textarea,
    .wpcf7-form input,
    .wpcf7-form textarea {
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
        max-width: 100% !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Fix all containers on mobile */
    .container {
        padding: 0 10px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .features-heading {
        font-size: 1.5em !important;
        margin-bottom: 30px !important;
    }
    
    .feature-item h3 {
        font-size: 0.7em;
    }
    
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
        max-width: calc(100% - 40px);
        margin: 0 auto;
    }
    
    /* About section - single column on mobile */
    .working-layout-container {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    /* Hide image sliders completely on mobile */
    .image-sliders-section {
        display: none !important;
    }
    
    .transparent-text-overlay {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        padding: 25px !important;
        width: 100%;
    }
    
    .page-template-page-garage-conversion .transparent-text-overlay {
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .hero-slide .hero-content {
        padding: 150px 10px 15px 10px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .hero-content h1 {
        font-size: 1.5em !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }
    
    .hero-content p {
        font-size: 0.85em !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    
    .cta-button {
        padding: 10px 20px !important;
        font-size: 0.9em !important;
    }
    
    /* Contact form - padding via form groups */
    #contact .contact-form,
    .contact-section .contact-form,
    .contact-form-column .contact-form,
    div.contact-form {
        padding: 0 !important;
        background: #ffffff !important;
        border-radius: 15px !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    }
    
    #contact .contact-form .form-group,
    .contact-form .form-group {
        margin: 0 0 28px 0 !important;
        padding: 0 25px !important;
    }
    
    #contact .contact-form .form-group:first-child,
    .contact-form .form-group:first-child {
        padding-top: 35px !important;
    }
    
    #contact .contact-form .form-group:last-child,
    .contact-form .form-group:last-child {
        padding-bottom: 35px !important;
        margin-bottom: 0 !important;
    }
    
    .features-heading {
        font-size: 1.3em !important;
        margin-bottom: 25px !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item h3 {
        font-size: 0.65em;
    }
    
    .feature-icon svg {
        width: 22px;
        height: 22px;
    }
    
    /* About section text overlay smaller padding on tiny screens */
    .transparent-text-overlay {
        padding: 20px !important;
    }
} 

/* Custom Content Section */
.custom-content-section {
    padding: 80px 0;
    background: white;
}

.custom-content-section .entry-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1em;
}

.custom-content-section .entry-content h1,
.custom-content-section .entry-content h2,
.custom-content-section .entry-content h3,
.custom-content-section .entry-content h4,
.custom-content-section .entry-content h5,
.custom-content-section .entry-content h6 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.custom-content-section .entry-content p {
    margin-bottom: 20px;
    color: #666;
}

.custom-content-section .entry-content ul,
.custom-content-section .entry-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.custom-content-section .entry-content li {
    margin-bottom: 10px;
    color: #666;
}

.custom-content-section .entry-content blockquote {
    border-left: 4px solid #007cba;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.custom-content-section .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.custom-content-section .entry-content a {
    color: #007cba;
    text-decoration: none;
}

.custom-content-section .entry-content a:hover {
    text-decoration: underline;
}

/* Block Editor Styles for Template */
.wp-block-group.garage-conversion-template {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin: 20px 0;
}

.wp-block-group.garage-conversion-template h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
} 

/* Admin Edit Area */
.admin-edit-area {
    padding: 40px;
    background: white;
    max-width: 800px;
    margin: 0 auto;
}

.admin-edit-area .entry-content {
    line-height: 1.6;
    font-size: 1.1em;
}

.admin-edit-area .entry-content h1,
.admin-edit-area .entry-content h2,
.admin-edit-area .entry-content h3,
.admin-edit-area .entry-content h4,
.admin-edit-area .entry-content h5,
.admin-edit-area .entry-content h6 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.admin-edit-area .entry-content p {
    margin-bottom: 20px;
    color: #666;
}

.admin-edit-area .entry-content ul,
.admin-edit-area .entry-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.admin-edit-area .entry-content li {
    margin-bottom: 10px;
    color: #666;
}

.admin-edit-area .entry-content blockquote {
    border-left: 4px solid #007cba;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.admin-edit-area .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.admin-edit-area .entry-content a {
    color: #007cba;
    text-decoration: none;
}

.admin-edit-area .entry-content a:hover {
    text-decoration: underline;
} 

/* Block Editor Garage Conversion Template */
.garage-conversion-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    margin-bottom: 40px;
}

.garage-conversion-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

.garage-conversion-hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.garage-conversion-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.garage-conversion-content .wp-block-post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1em;
}

.garage-conversion-content .wp-block-post-content h1,
.garage-conversion-content .wp-block-post-content h2,
.garage-conversion-content .wp-block-post-content h3,
.garage-conversion-content .wp-block-post-content h4,
.garage-conversion-content .wp-block-post-content h5,
.garage-conversion-content .wp-block-post-content h6 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.garage-conversion-content .wp-block-post-content p {
    margin-bottom: 20px;
    color: #666;
}

.garage-conversion-content .wp-block-post-content ul,
.garage-conversion-content .wp-block-post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.garage-conversion-content .wp-block-post-content li {
    margin-bottom: 10px;
    color: #666;
}

.garage-conversion-content .wp-block-post-content blockquote {
    border-left: 4px solid #007cba;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.garage-conversion-content .wp-block-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.garage-conversion-content .wp-block-post-content a {
    color: #007cba;
    text-decoration: none;
}

.garage-conversion-content .wp-block-post-content a:hover {
    text-decoration: underline;
}

/* Block Editor Button Styles */
.wp-block-button__link {
    background: #007cba !important;
    color: white !important;
    padding: 15px 30px !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    font-size: 1.2em !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.wp-block-button__link:hover {
    background: #005a87 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
} 

/* Enhanced Garage Conversion Template Styles */
.simple-garage-template {
    background: #f8f9fa;
    min-height: 100vh;
    padding-top: 120px; /* Add space for the floating banner */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.simple-garage-template .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section - Adbrooke Style */
.header-section {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.header-logo h1 {
    font-size: 2.2em;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.header-logo p {
    font-size: 1.1em;
    color: #666;
    margin: 5px 0 0 0;
    font-weight: 500;
}

.header-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #007cba;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.header-phone:hover {
    background: #007cba;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
}

.header-phone svg {
    flex-shrink: 0;
}

/* Hero Section with Rotating Images */
.hero-section {
    position: relative;
    height: 80vh; /* Reduced from 100vh to match other pages */
    min-height: 500px;
    overflow: hidden;
    width: 100%;
    margin-top: -120px; /* Negative margin to move up under the banner */
    padding-top: 120px; /* Add padding to maintain content positioning below banner */
    display: flex;
    align-items: center;
    justify-content: center;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Darker overlay */
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8em; /* Decreased from 3.5em */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
}

.hero-content p {
    font-size: 1.1em; /* Decreased from 1.3em */
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
}

.hero-content .cta-button {
    display: inline-block;
    background: #66BB6A; /* Green button */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em; /* Decreased from 1.2em */
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-content .cta-button:hover {
    background: #5CB85C; /* Darker green on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-nav-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.hero-nav-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.hero-nav-btn.active {
    background: #66BB6A; /* Green active dot */
    opacity: 1;
    transform: scale(1.2);
}

/* Main Content Area */
.main-content-area {
    padding: 20px 0;
    background: white;
    position: relative;
    z-index: 1;
    margin-top: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.main-content-area .entry-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.main-content-area .entry-content h1,
.main-content-area .entry-content h2,
.main-content-area .entry-content h3 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.main-content-area .entry-content h1 {
    font-size: 2.5em;
}

.main-content-area .entry-content h2 {
    font-size: 2em;
}

.main-content-area .entry-content h3 {
    font-size: 1.5em;
}

.main-content-area .entry-content p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.main-content-area .entry-content ul,
.main-content-area .entry-content ol {
    text-align: left;
    margin: 20px 0;
}

.main-content-area .entry-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.main-content-area .entry-content blockquote {
    border-left: 4px solid #007cba;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.main-content-area .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-content-area .entry-content a {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
}

.main-content-area .entry-content a:hover {
    text-decoration: underline;
}

/* Services Section */
.services-section {
    padding: 40px 0;
    background: #1a1a1a; /* Dark background */
    position: relative;
    z-index: 1;
    margin-top: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #66BB6A; /* Green heading */
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



.service-item {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid #66BB6A;
    position: relative;
    z-index: 2;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 1em;
    font-weight: 700;
    line-height: 1.1;
}

.service-content p {
    color: #cccccc;
    line-height: 1.2;
    font-size: 0.8em;
    margin: 0;
    flex-grow: 1;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
    margin-top: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1a1a1a; /* Black heading */
    font-weight: 700;
}

.contact-section p.contact-intro-text {
    text-align: center;
    font-size: 1.2em;
    color: #666666;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Two Column Layout for Contact Section */
.contact-two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.contact-form-column {
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-column .contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-info-column .contact-info-box:hover {
    border-color: #66BB6A;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-info-column .contact-info-box h3 {
    font-size: 1.3em;
    color: #66BB6A;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-column .contact-info-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    color: #66BB6A;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.contact-link {
    color: #333;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #66BB6A;
}

.contact-text {
    color: #666;
    font-size: 1em;
}

@media (max-width: 968px) {
    .contact-section {
        padding: 40px 0 !important;
        overflow-x: hidden !important;
    }
    
    .contact-section .container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 20px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    .contact-two-column-layout {
        padding: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-form,
    .contact-form-column {
        padding: 0 5px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .contact-map,
    .contact-map iframe {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure inputs display full content with buffer */
    .contact-section input,
    .contact-section textarea,
    .contact-section select {
        padding: 8px !important;
        font-size: 15px !important;
        width: calc(100% - 10px) !important;
        max-width: calc(100% - 10px) !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        border-radius: 4px !important;
    }
    
    /* Remove any hidden overflow from form elements */
    .contact-form,
    .contact-form *,
    .wpcf7-form,
    .wpcf7-form * {
        overflow: visible !important;
    }
    
    .contact-two-column-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-form-column {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact-form {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    
    .contact-form .form-group {
        padding: 0 !important;
        margin-bottom: 15px !important;
    }
    
    .contact-info-column {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact-info-column .contact-info-box {
        padding: 12px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 0 15px 0 !important;
    }
}

.contact-form {
    max-width: 100%;
    margin: 0;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #66BB6A; /* Green border on focus */
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.submit-button {
    width: 100%;
    background: #66BB6A; /* Green button */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-button:hover {
    background: #5CB85C; /* Darker green on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-logo h1 {
        font-size: 1.8em;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-phone {
        font-size: 1.1em;
        padding: 8px 12px;
    }
    
    .hero-content h1 {
        font-size: 2.2em;
    }
    
    .hero-content p {
        font-size: 1.1em;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .contact-form {
        padding: 20px;
        margin: 0 10px;
    }
    
    .services-section h2,
    .contact-section h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .header-logo h1 {
        font-size: 1.5em;
    }
    
    .header-logo p {
        font-size: 1em;
    }
    
    .hero-content h1 {
        font-size: 1.8em;
    }
    
    .hero-content p {
        font-size: 1em;
    }
    
    .hero-content .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
} 

/* Add spacing for content below floating banner */
.simple-garage-template {
    background: #f8f9fa;
    min-height: 100vh;
    padding-top: 120px; /* Reduced from 150px to move hero section up */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
} 

/* About Section with Large Image */
.about-section {
    padding: 60px 0;
    background: #1a1a1a;
    position: relative;
    z-index: 1;
    margin-top: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/images/gcc-png.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -1;
}

.about-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px;
    align-items: start !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 520px;
}

.about-image {
    position: relative;
    height: auto;
    border-radius: 10px;
    overflow: visible;
    box-shadow: none;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid #66BB6A;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: left 1.5s ease-in-out;
}

.about-slide.active {
    left: 0;
}

.about-slide.prev {
    left: -100%;
}

.about-image-slider-2 {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid #66BB6A;
}

.about-slide-2 {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: left 1.5s ease-in-out;
}

.about-slide-2.active {
    left: 0;
}

.about-slide-2.prev {
    left: -100%;
}

.about-nav-2 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.about-nav-btn-2 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-nav-btn-2:hover {
    background: rgba(255, 255, 255, 0.8);
}

.about-nav-btn-2.active {
    background: #66BB6A;
}

/* Third Image Slider */
.about-image-slider-3 {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid #66BB6A;
}

.about-slide-3 {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: left 1.5s ease-in-out;
}

.about-slide-3.active {
    left: 0;
}

.about-slide-3.prev {
    left: -100%;
}

.about-nav-3 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.about-nav-btn-3 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-nav-btn-3.active {
    background: #66BB6A;
}

/* Fourth Image Slider */
.about-image-slider-4 {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid #66BB6A;
}

.about-slide-4 {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: left 1.5s ease-in-out;
}

.about-slide-4.active {
    left: 0;
}

.about-slide-4.prev {
    left: -100%;
}

.about-nav-4 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.about-nav-btn-4 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-nav-btn-4.active {
    background: #66BB6A;
}

/* GCC Logo Container for About Page */
.gcc-logo-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 30px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    border-radius: 15px !important;
    border: 3px solid #66BB6A !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    margin-top: 30px !important;
    min-height: 120px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 10 !important;
}

.gcc-logo-about {
    max-width: 200px !important;
    width: 200px !important;
    height: auto !important;
    filter: brightness(0) invert(1) !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 10 !important;
    background: none !important;
    border: none !important;
}

/* Background image approach for logo */
.gcc-logo-background {
    width: 200px !important;
    height: 100px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    filter: brightness(0) invert(1) !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Fallback text styling */
.gcc-logo-fallback {
    color: white !important;
    font-size: 36px !important;
    font-weight: bold !important;
    text-align: center !important;
    letter-spacing: 3px !important;
    display: none !important;
    font-family: Arial, sans-serif !important;
}

/* Show fallback if background image fails */
.gcc-logo-container:not([style*="background-image"]) .gcc-logo-fallback {
    display: block !important;
}







.about-text {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-text h2 {
    color: #ffffff;
    font-size: 2.2em;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    line-height: 1.2;
}

.about-text p {
    color: #e0e0e0;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
}

.about-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.about-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-nav-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.about-nav-btn.active {
    background: #66BB6A;
}

.about-features {
    margin-top: 40px;
}

.feature {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    border-left: 4px solid #66BB6A;
    backdrop-filter: blur(10px);
}

.feature h3 {
    color: #66BB6A;
    font-size: 1.1em;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.feature p {
    color: #333333;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
}

/* Contact Section */ 

/* Responsive Design */
@media (max-width: 768px) {
    .banner-top-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-top: 10px;
    }
    
    .banner-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .banner-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2em;
    }
    
    .hero-content p {
        font-size: 1em;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }
    
    .large-about-image {
        height: 300px;
    }
    
    .about-text h2 {
        font-size: 1.8em;
    }
    
    .about-text p {
        font-size: 0.95em;
    }
    
    .feature h3 {
        font-size: 1em;
    }
    
    .feature p {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .floating-banner {
        padding: 20px 0 15px 0;
        min-height: 120px;
    }
    
    .banner-logo-text h2 {
        font-size: 1.2em;
    }
    
    .banner-nav a {
        font-size: 0.8em;
    }
    
    .hero-content h1 {
        font-size: 1.8em;
    }
    
    .services-section h2,
    .contact-section h2,
    .about-text h2 {
        font-size: 2em;
    }
    
    .large-about-image {
        height: 250px;
    }
} 

/* Responsive Design for Services Section */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .services-grid-section .services-grid {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .service-item-centered {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 100%;
    }
    
    .service-image-container {
        height: 180px;
    }
    
    .service-content {
        padding: 6px;
    }
    
    .service-content h3 {
        font-size: 0.95em;
        margin-bottom: 3px;
    }
    
    .service-content p {
        font-size: 0.75em;
        line-height: 1.1;
    }
} 

/* Professional Footer */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px 0;
    margin-top: 0;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.footer-section h4 {
    color: #66BB6A;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
    width: 100%;
}

.footer-section p {
    color: #cccccc;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-section ul li {
    margin-bottom: 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-section ul li a:hover {
    color: #66BB6A;
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

.footer-contact {
    width: 100%;
}

.footer-contact p {
    color: #cccccc;
    font-size: 0.9em;
    margin-bottom: 6px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

.footer-contact p strong {
    color: #ffffff;
}

.footer-contact p a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: #66BB6A;
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

/* Social Media Links */

.footer-social {
    border-top: 1px solid #333333;
    margin-top: 20px;
    padding-top: 20px;
}

.social-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #66BB6A;
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #333333;
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9em;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #66BB6A;
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-section {
        min-width: 0;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .social-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #1a1a1a;
    position: relative;
    z-index: 1;
    margin-top: -120px;
    padding-top: 200px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/images/gcc-png.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: 1;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
}

.gallery-section h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-section p {
    text-align: center;
    font-size: 1.2em;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.gallery-header {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 40px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 700px;
    margin-bottom: 50px;
    text-align: center;
}

.gallery-header h1 {
    margin-bottom: 15px;
}

.gallery-header p {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #66BB6A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: #5CB85C;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.gallery-overlay p {
    font-size: 1em;
    margin: 0;
    opacity: 1;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

/* Lightbox Styles */
/* New Lightbox Implementation */
.lightbox {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.98) !important;
    z-index: 2147483647 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    inset: 0 !important;
}

/* Fresh lightbox implementation */
.lightbox.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.98) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2147483647 !important;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    opacity: 1;
    transform: scale(1);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    overflow-y: auto !important;
}

/* Close button always visible when lightbox is active */

/* Ensure body and html don't have white backgrounds when lightbox is active */
.lightbox.active ~ body,
.lightbox.active ~ html,
body:has(.lightbox.active),
html:has(.lightbox.active) {
    background: #000000 !important;
    overflow: hidden !important;
}

/* Don't hide the lightbox itself */
.lightbox.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
}

/* Removed duplicate lightbox styles - using the primary definition below */

/* Close button styles defined below - removed duplicate */

/* Navigation button styles and positions defined below */

/* Hide ALL page content when lightbox is active - AGGRESSIVE */
body:has(.lightbox.active) > *:not(#lightbox):not(.lightbox):not(script):not(style),
body:has(.lightbox.active) .simple-garage-template,
body:has(.lightbox.active) header,
body:has(.lightbox.active) footer,
body:has(.lightbox.active) main,
body:has(.lightbox.active) .site-footer,
body:has(.lightbox.active) .floating-banner,
body:has(.lightbox.active) .contact-cta-section,
body:has(.lightbox.active) nav,
body:has(.lightbox.active) .site-info {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -9999 !important;
}

/* Make sure lightbox is always visible and on top */
.lightbox.active,
.lightbox.active *:not(.lightbox-info) {
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Force hide footer when lightbox is active */
.lightbox.active ~ .site-footer,
.lightbox.active ~ footer,
body:has(.lightbox.active) .site-footer,
body:has(.lightbox.active) footer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: -9999 !important;
    pointer-events: none !important;
}

/* Hide any element containing WordPress text when lightbox is active */
.lightbox.active ~ *:contains("WordPress"),
.lightbox.active ~ *:contains("Garage Conversion Company"),
.lightbox.active ~ *:contains("proudly powered by") {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: -9999 !important;
}

.lightbox.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.3s ease-out;
    opacity: 1;
}

.lightbox.active.closing {
    display: flex !important;
    animation: lightboxFadeOut 0.3s ease-in forwards;
}

.lightbox.closing {
    animation: lightboxFadeOut 0.3s ease-in forwards;
    opacity: 1;
    display: flex !important;
}

.lightbox.closing #lightbox-image {
    animation: imageScaleOut 0.3s ease-in forwards;
}

@keyframes imageScaleOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.2);
    }
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lightboxFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Image styles and animations defined in main lightbox section below */

#lightbox-image.closing {
    animation: imagePopOut 0.3s ease-in;
}

#lightbox-image.from-position {
    animation: imagePopInFromPosition 0.4s ease-out;
}

#lightbox-image.closing-to-position {
    animation: imagePopOutToPosition 0.3s ease-in;
}

@keyframes imagePopIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes imagePopOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.3);
    }
}

@keyframes imagePopInFromPosition {
    from {
        opacity: 0;
        transform: scale(0.1) translate(var(--start-x, 0), var(--start-y, 0));
    }
    to {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
}

@keyframes imagePopOutToPosition {
    from {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate(var(--start-x, 0), var(--start-y, 0));
    }
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2147483646 !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin: auto;
    overflow: visible;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2147483647 !important;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    line-height: 1;
    pointer-events: auto;
}

.lightbox-close:hover {
    color: #66BB6A;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(102, 187, 106, 0.5);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

/* Ensure close button is always on top */
.lightbox.active .lightbox-close {
    z-index: 2147483647 !important;
    position: fixed !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    animation: imagePopIn 0.4s ease-out;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483645 !important;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    transform: scale(1);
}

.lightbox-info {
    display: none;
    z-index: 2147483647 !important;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 16px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2147483646;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.95);
    color: #66BB6A;
    border-color: rgba(102, 187, 106, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Gallery item cursor pointer */
.gallery-item {
    cursor: pointer;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-item {
        border-width: 2px;
    }
    
    .gallery-section h1 {
        font-size: 2em;
    }
    
    .gallery-section p {
        font-size: 1.1em;
    }
    
    .lightbox-content {
        width: 95%;
        padding: 10px;
    }
    
    #lightbox-image {
        max-height: 70%;
    }
    
    .lightbox-nav {
        padding: 10px 15px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        border-width: 2px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-section h1 {
        font-size: 1.8em;
    }
    
    .gallery-section p {
        font-size: 1em;
    }
    
    .lightbox-content {
        width: 98%;
        padding: 5px;
    }
    
    #lightbox-image {
        max-height: 60%;
    }
    
    .lightbox-info h3 {
        font-size: 1.2em;
        z-index: 2147483647 !important;
    }
    
    .lightbox-info p {
        font-size: 1em;
        z-index: 2147483647 !important;
    }
    
    .lightbox-nav {
        padding: 8px 12px;
        font-size: 18px;
    }
}

/* Hide WordPress powered by text */
.site-info,
.powered-by-wordpress,
.wp-block-template-part .wp-block-site-title:not(.has-text-align-center),
.wp-block-site-info,
.wp-block-site-info a {
    display: none !important;
}

/* About Us Page Styles - Simplified */

.about-hero-section {
    padding: 80px 0 60px;
    margin-top: -120px;
    padding-top: 200px;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Removed conflicting ::before pseudo-element that was covering the background image */

.about-hero-content {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.about-hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-hero-content p {
    font-size: 1.3em;
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 15px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-content-section {
    padding: 40px 0;
    background: #1a1a1a;
    position: relative;
}

.about-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/images/gcc-png.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}



.about-content-section .container {
    background: transparent !important;
    position: relative;
    z-index: 1;
}

/* Remove the universal selector and be more specific */

/* Re-enable backgrounds for specific elements that need them */
.about-content-section .transparent-text-overlay {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    border: 3px solid #66BB6A !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
    display: block !important;
    visibility: visible !important;
}

/* Force glass effect with higher specificity */
.about-content-section .working-layout-container .transparent-text-overlay {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    border: 3px solid #66BB6A !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
}

.about-content-section .gcc-logo-container {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 15px !important;
    border: 3px solid #66BB6A !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

/* Style the About Us heading only */
.about-content-section .working-layout-container .transparent-text-overlay h2,
.about-content-section .transparent-text-overlay h2 {
    color: #ffffff !important;
    font-size: 1.3em !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* Style the About Us paragraphs */
.about-content-section .working-layout-container .transparent-text-overlay p,
.about-content-section .transparent-text-overlay p {
    color: #f0f0f0 !important;
    font-size: 0.8em !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Restore slider backgrounds properly */
.about-content-section .about-slide {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.about-content-section .about-slide-2 {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.about-content-section .about-slide-3 {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.about-content-section .about-slide-4 {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.about-content-section .gcc-logo-background {
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.about-content-section .working-layout-container,
.about-content-section .image-sliders-section,
.about-content-section .container {
    background: none !important;
    background-color: transparent !important;
}

.about-content-section .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5em;
    color: #66BB6A;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-section {
    padding: 80px 0;
    background: #1a1a1a;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/images/gcc-png.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.8em;
    color: #66BB6A;
    margin: 0 auto 60px auto;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px 40px;
    border: 2px solid rgba(102, 187, 106, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: block;
    width: fit-content;
}

.why-choose-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-section .feature-item {
    text-align: center;
    padding: 20px 15px;
    background: #ffffff !important;
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 3px solid #66BB6A !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-choose-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #5CB85C !important;
    border-width: 4px !important;
}

.why-choose-section .feature-icon {
    margin-bottom: 20px;
}

.why-choose-section .feature-item h3 {
    font-size: 1.1em;
    color: #66BB6A !important;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-choose-section .feature-item p {
    font-size: 0.9em;
    color: #000000 !important;
    line-height: 1.5;
}

.testimonials-section {
    padding: 80px 0;
    background: #1a1a1a;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/images/gcc-png.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8em;
    color: #66BB6A;
    margin: 0 auto 60px auto;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px 40px;
    border: 2px solid rgba(102, 187, 106, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: block;
    width: fit-content;
}

.testimonials-section {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 187, 106, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: italic;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.testimonial-author {
    text-align: right;
    font-size: 0.9em;
    color: #66BB6A;
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

.contact-cta-section {
    padding: 80px 0;
    background: #1a1a1a;
    text-align: center;
    color: white;
    position: relative;
}

/* Remove watermark background from contact CTA section */

.contact-cta-section h2 {
    font-size: 2.5em;
    color: #66BB6A;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta-section p {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
}

.cta-button {
    display: inline-block;
    background: #66BB6A;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 0 10px;
}

.cta-button:hover {
    background: #5CB85C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}



/* Responsive About Us */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .about-hero-content h1 {
        font-size: 2.8em;
    }
    
    .about-hero-content p {
        font-size: 1.2em;
    }
    
    .why-choose-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .why-choose-section .feature-item {
        border-width: 2px !important;
        padding: 25px 15px !important;
    }
    
    .why-choose-section .feature-item:hover {
        border-width: 3px !important;
    }
    
    .about-static-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-static-image {
        height: 350px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2em;
    }
    
    .about-hero-content p {
        font-size: 1.1em;
    }
    
    .about-text h2 {
        font-size: 2em;
    }
    
    .why-choose-section h2,
    .testimonials-section h2,
    .contact-cta-section h2 {
        font-size: 2.2em;
    }
    
    .why-choose-section .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-section .feature-item {
        border-width: 2px !important;
        padding: 20px 12px !important;
    }
    
    .why-choose-section .feature-item:hover {
        border-width: 3px !important;
    }
    
    .about-content-section {
        padding: 60px 0;
    }
    
    .about-static-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-static-image {
        height: 300px;
    }
    
    .why-choose-section,
    .testimonials-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8em;
    }
    
    .about-hero-content p {
        font-size: 1em;
    }
    
    .about-text h2 {
        font-size: 1.8em;
    }
    
    .why-choose-section h2,
    .testimonials-section h2 {
        font-size: 1.8em;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 1em;
    }
}

/* Home Extensions Page Styles */

/* Ensure footer displays properly on Home Extensions page */
.simple-garage-template .site-footer {
    position: relative;
    z-index: 10;
    margin-top: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.simple-garage-template .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.simple-garage-template .footer-section {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.simple-garage-template .footer-section h4 {
    color: #66BB6A;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
    width: 100%;
}

.simple-garage-template .footer-section p {
    color: #cccccc;
    font-size: 0.9em;
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
    hyphens: auto;
}

.simple-garage-template .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.simple-garage-template .footer-section ul li {
    margin-bottom: 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.simple-garage-template .footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.simple-garage-template .footer-section ul li a:hover {
    color: #66BB6A;
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

.simple-garage-template .footer-bottom {
    border-top: 1px solid #333333;
    margin-top: 40px;
    padding-top: 20px;
}

.simple-garage-template .footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.simple-garage-template .footer-bottom p {
    color: #cccccc;
    font-size: 0.9em;
    margin: 0;
}

.simple-garage-template .footer-links {
    display: flex;
    gap: 20px;
}

.simple-garage-template .footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.simple-garage-template .footer-links a:hover {
    color: #66BB6A;
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

.home-extensions-hero-section {
    padding: 80px 0 60px;
    margin-top: -120px;
    padding-top: 200px;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.home-extensions-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.home-extensions-hero-content {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.home-extensions-hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.home-extensions-hero-content p {
    font-size: 1.3em;
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 15px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.home-extensions-intro-section {
    padding: 60px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.home-extensions-intro-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #66BB6A;
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

.home-extensions-intro-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.featured-extensions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
}

.featured-extensions-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

.extensions-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.extension-item {
    display: flex;
    align-items: stretch;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    min-height: auto;
}

.extension-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #66BB6A;
}

.extension-item:nth-child(even) {
    flex-direction: row-reverse;
}

.extension-image-container {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    max-height: 400px;
    min-width: 0;
}

.extension-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.extension-item:hover .extension-image-container img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.extension-content {
    flex: 1 1 55%;
    padding: 50px 35px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    overflow: visible !important;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
}

.extension-content h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
}

.extension-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #66BB6A, #4CAF50);
    border-radius: 2px;
}

.extension-content p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #666;
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: 100%;
    box-sizing: border-box;
}

.building-confidence-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.building-confidence-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #66BB6A;
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

.confidence-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.confidence-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.building-regulations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    color: #333;
}

.building-regulations-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.regulations-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.regulations-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
}

.regulations-content ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.regulations-content li {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #666;
    padding-left: 25px;
    position: relative;
}

.regulations-content li:before {
    content: "✓";
    color: #66BB6A;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}



/* Responsive Design for Home Extensions */
@media (max-width: 768px) {
    .home-extensions-hero-content h1 {
        font-size: 2.5em;
        padding: 15px 20px;
    }
    
    .home-extensions-hero-content p {
        font-size: 1.1em;
        padding: 12px 18px;
    }
    
    .simple-garage-template .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .extensions-grid {
        gap: 40px;
        padding: 0 15px;
    }
    
    .extension-item {
        flex-direction: column !important;
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .extension-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .extension-image-container {
        min-height: 250px;
        order: 1;
    }
    
    .extension-content {
        order: 2;
        padding: 25px;
    }
    
    .extension-content h3 {
        font-size: 1.8em;
    }
    
    .building-confidence-section h2,
    .building-regulations-section h2 {
        font-size: 2em;
    }
    
    .contact-cta-section h2 {
        font-size: 2em;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero-content p {
    font-size: 1.3em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.7;
    color: #666;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-main .form-group {
    margin-bottom: 25px;
}

.contact-form-main label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95em;
}

.contact-form-main input[type="text"],
.contact-form-main input[type="email"],
.contact-form-main input[type="tel"],
.contact-form-main textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form-main input:focus,
.contact-form-main textarea:focus {
    outline: none;
    border-color: #66BB6A;
}

.contact-form-main textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-main .submit-button {
    background: linear-gradient(135deg, #66BB6A 0%, #5CB85C 100%);
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-main .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 187, 106, 0.4);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-box h3 {
    font-size: 1.4em;
    color: #66BB6A;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-box .contact-phone {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.contact-info-box .contact-email a {
    color: #66BB6A;
    text-decoration: none;
    font-size: 1.05em;
}

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

.contact-info-box .contact-hours {
    color: #666;
    font-size: 1em;
    margin-top: 15px;
}

.social-icons-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.social-icon-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
}

.social-icon-link svg {
    width: 24px !important;
    height: 24px !important;
    display: block;
    flex-shrink: 0;
}

.social-icon-link.facebook {
    background: #1877f2;
    color: white;
}

.social-icon-link.twitter {
    background: #1da1f2;
    color: white;
}

.social-icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-content h1 {
        font-size: 2em;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
}

/* Services Page Styles */

.services-hero-section {
    padding: 80px 0 60px;
    margin-top: -120px;
    padding-top: 200px;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.services-hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.services-hero-content p {
    font-size: 1.3em;
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 15px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.services-intro-section {
    padding: 60px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.services-intro-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #66BB6A;
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

.services-intro-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
}

.services-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(102, 187, 106, 0.3) 50%, transparent 100%);
}

.services-grid-section .services-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid-section .service-item {
    display: flex;
    align-items: stretch;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 350px;
    position: relative;
    max-width: 100%;
    align-items: center;
}

.services-grid-section .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.services-grid-section .service-item.reverse {
    flex-direction: row-reverse;
}

.services-grid-section .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services-grid-section .service-image-container {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    height: 280px;
    min-width: 0;
    max-width: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.services-grid-section .service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) contrast(1.05);
    max-width: 100%;
    max-height: 100%;
}

.services-grid-section .service-item:hover .service-image-container img {
    transform: scale(1.05);
}

/* Ensure consistent image formatting */
.services-grid-section .service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    display: block;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

/* Fix for specific image types */
.services-grid-section .service-image-container img[src*="Kitchen"] {
    object-position: center center;
}

.services-grid-section .service-image-container img[src*="Living"] {
    object-position: center center;
}

.services-grid-section .service-image-container img[src*="Office"] {
    object-position: center center;
}

.services-grid-section .service-image-container img[src*="Utility"] {
    object-position: center center;
}

/* Additional image formatting fixes */
.services-grid-section .service-image-container {
    background: #f0f0f0;
    aspect-ratio: 4/3;
    box-sizing: border-box;
}

.services-grid-section .service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
}

/* Ensure proper image sizing for specific service types */
.services-grid-section .service-image-container img[src*="Nursery"],
.services-grid-section .service-image-container img[src*="Living"] {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

/* Fix alignment issues */
.services-grid-section .service-item {
    align-items: center;
}

.services-grid-section .service-content,
.services-grid-section .service-image-container {
    display: flex;
    align-items: center;
}

/* Mobile responsiveness for flexbox layout */
@media (max-width: 768px) {
    .services-grid-section .services-grid {
        gap: 50px;
        padding: 0 15px;
    }
    
    .services-grid-section .service-item {
        flex-direction: column;
        min-height: auto;
    }
    
    .services-grid-section .service-item.reverse {
        flex-direction: column;
    }
    
    .services-grid-section .service-image-container {
        flex: none;
        height: 200px;
        order: 1;
    }
    
    .services-grid-section .service-content {
        order: 2;
        padding: 40px 30px;
    }
    
    .services-grid-section .service-content h3 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    
    .services-grid-section .service-content p {
        font-size: 1.0em;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .services-grid-section .services-grid {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .services-grid-section .service-content {
        padding: 30px 25px;
    }
    
    .services-grid-section .service-content h3 {
        font-size: 1.6em;
    }
    
    .services-grid-section .service-content p {
        font-size: 0.95em;
    }
}

.services-grid-section .service-content {
    flex: 1;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    min-height: 280px;
    box-sizing: border-box;
    align-self: stretch;
}

.services-grid-section .service-content h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.services-grid-section .service-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #66BB6A 0%, #4CAF50 100%);
    border-radius: 2px;
}

.services-grid-section .service-content p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.95em;
    margin: 0;
    font-weight: 400;
}

.reasons-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.reasons-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #66BB6A;
}

/* Home Extensions Footer Mobile Styles */
@media (max-width: 480px) {
    .simple-garage-template .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-garage-template .footer-section {
        min-width: 0;
        overflow: visible;
    }
    
    .simple-garage-template .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-garage-template .footer-links {
        justify-content: center;
    }
}

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

.reasons-section .reasons-content > p {
    font-size: 0.9em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.reasons-section .reasons-content {
    max-width: 1200px;
    margin: 0 auto;
}



.reason-paragraph {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.reason-icon {
    margin-bottom: 20px;
}

.reason-paragraph h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #66BB6A;
    text-align: center;
}

.reason-paragraph p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.reason-paragraph ul {
    text-align: left;
    max-width: 250px;
    margin: 20px auto 0;
    list-style-type: none;
    padding: 0;
}

.reason-paragraph li {
    margin-bottom: 12px;
    color: #e0e0e0;
    padding-left: 20px;
    position: relative;
}

.reason-paragraph li:before {
    content: "✓";
    color: #66BB6A;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.why-choose-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.why-choose-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5em;
        padding: 15px 20px;
    }
    
    .services-hero-content p {
        font-size: 1.1em;
        padding: 12px 18px;
    }
    
    .services-grid-section .services-grid {
        gap: 40px;
        padding: 0 15px;
    }
    
    .services-grid-section .service-item {
        flex-direction: column !important;
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .services-grid-section .service-image-container {
        min-height: 250px;
        order: 1;
    }
    
    .services-grid-section .service-content {
        order: 2;
        padding: 25px;
    }
    
    .services-grid-section .service-content h3 {
        font-size: 1.4em;
    }
    

    
    .services-intro-section h2,
    .reasons-section h2 {
        font-size: 2em;
    }
}

/* Contact Form Styling */
.contact-form .wpcf7-form {
    max-width: 100%;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* Form rows for single-column layout */
.contact-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.contact-form .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* Full-width form groups */
.contact-form .form-group:not(.form-row .form-group) {
    width: 100%;
    margin-bottom: 20px;
}

/* Form success/error messages */
.form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-form .wpcf7-form label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9em;
    display: block;
}

.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form select,
.contact-form .wpcf7-form textarea {
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    min-width: 0;
    max-width: 100%;
}

.contact-form .wpcf7-form input[type="text"]:focus,
.contact-form .wpcf7-form input[type="email"]:focus,
.contact-form .wpcf7-form input[type="tel"]:focus,
.contact-form .wpcf7-form select:focus,
.contact-form .wpcf7-form textarea:focus {
    outline: none;
    border-color: #66BB6A;
    box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.15);
    transform: translateY(-1px);
}

.contact-form .wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

.contact-form .wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, #66BB6A 0%, #5CB85C 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3);
}

.contact-form .wpcf7-form input[type="submit"]:hover,
.contact-form .submit-button:hover {
    background: linear-gradient(135deg, #5CB85C 0%, #4CAF50 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.4);
}

/* reCAPTCHA Styling */
.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Hide reCAPTCHA badge on hero slider */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    z-index: -9999 !important;
}

/* SEO Breadcrumbs */
.breadcrumbs {
    padding: 15px 20px;
    background: #f8f9fa;
    font-size: 0.9em;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs a {
    color: #66BB6A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #4CAF50;
    text-decoration: underline;
}

/* Privacy Policy and Terms Pages */
.policy-hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.policy-hero-content h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.policy-hero-content p {
    font-size: 1.1em;
    opacity: 0.9;
}

.policy-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
    font-size: 2em;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #66BB6A;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.5em;
    color: #555;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content ul li {
    font-size: 1.05em;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
    list-style-type: disc;
}

.policy-content .contact-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #66BB6A;
    margin-top: 20px;
}

.policy-content .contact-details p {
    margin-bottom: 10px;
}

.policy-content .contact-details a {
    color: #66BB6A;
    text-decoration: none;
}

.policy-content .contact-details a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-hero-content h1 {
        font-size: 2em;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-content h2 {
        font-size: 1.6em;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
    border-top: 3px solid #66BB6A;
}

.cookie-consent-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.6;
    flex: 1;
    min-width: 300px;
}

.cookie-consent-content a {
    color: #66BB6A;
    text-decoration: underline;
}

.cookie-consent-content a:hover {
    color: #5CB85C;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #66BB6A 0%, #5CB85C 100%);
    color: white;
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #5CB85C 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 187, 106, 0.4);
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-consent-content p {
        min-width: 100%;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* Optional: Show small badge in bottom right corner instead */
/* Uncomment below to show badge in bottom right corner */
/*
.grecaptcha-badge {
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
}
*/

/* Google Reviews Section */
.google-reviews-section {
    padding: 60px 0;
    background: #1a1a1a;
    position: relative;
}

.google-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/images/gcc-png.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.google-reviews-section .container {
    position: relative;
    z-index: 1;
}

.reviews-header-glass {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px 40px;
    border: 3px solid #66BB6A;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: center;
}

.google-reviews-section h2 {
    text-align: center;
    font-size: 2.2em;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.google-rating {
    text-align: center;
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px 30px;
    border: 3px solid #66BB6A;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.rating-stars {
    font-size: 2em;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.rating-text {
    font-size: 1.2em;
    color: #ffffff;
    font-weight: 600;
}

.reviews-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.reviews-scroll {
    display: flex;
    gap: 30px;
    animation: scroll-reviews 60s linear infinite;
    width: fit-content;
}

.reviews-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px;
    min-width: 350px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(102, 187, 106, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #66BB6A 0%, #5CB85C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 0.9em;
    flex-shrink: 0;
}

.review-name {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-name strong {
    color: #ffffff;
    font-size: 0.95em;
}

.review-name .review-stars {
    font-size: 0.8em;
    margin: 0;
}

.google-icon {
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: #66BB6A;
}

.review-stars {
    font-size: 1em;
    margin-bottom: 10px;
    color: #FFD700;
    flex-shrink: 0;
}

.review-text {
    font-size: 0.9em;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 10px;
    font-style: italic;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    flex: 1;
    transition: all 0.4s ease;
}

.review-toggle {
    background: transparent;
    border: 1px solid #66BB6A;
    color: #66BB6A;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px 0;
    font-weight: 600;
    align-self: flex-start;
    display: none;
}

.review-toggle:hover {
    background: #66BB6A;
    color: white;
}

.review-card.expanded .review-text {
    -webkit-line-clamp: unset;
    display: block;
}

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 60px 0;
    }
    
    .google-reviews-section h2 {
        font-size: 2em;
    }
    
    .rating-stars {
        font-size: 2em;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }
}

.contact-form .submit-button {
    background: linear-gradient(135deg, #66BB6A 0%, #5CB85C 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3);
}

.contact-form .wpcf7-response-output {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    font-weight: 500;
}

.contact-form .wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form .wpcf7-validation-errors {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.85em;
    margin-top: 5px;
}

.contact-form .wpcf7-not-valid {
    border-color: #dc3545 !important;
}

/* Mobile Responsive for Contact Form */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0 !important;
        overflow-x: hidden !important;
    }
    
    .contact-section .container {
        max-width: 90% !important;
        width: 90% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .contact-two-column-layout {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact-form,
    .contact-form .wpcf7-form {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .contact-form .form-group {
        padding: 0 10px !important;
        margin-bottom: 15px !important;
    }
    
    .contact-form-column,
    .contact-info-column {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-info-box {
        padding: 15px !important;
        margin: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-map iframe {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Form rows already single column */
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form .wpcf7-form input[type="text"],
    .contact-form .wpcf7-form input[type="email"],
    .contact-form .wpcf7-form input[type="tel"],
    .contact-form .wpcf7-form select,
    .contact-form .wpcf7-form textarea,
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 8px 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-width: 1px !important;
        font-size: 14px !important;
    }
    
    .contact-form .wpcf7-form button[type="submit"],
    .contact-form button[type="submit"],
    .contact-form .cta-button {
        padding: 15px 30px !important;
        font-size: 1em !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Areas Page Styling */

/* Mini Gallery Section */
.areas-mini-gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.areas-mini-gallery-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.areas-mini-gallery-section .gallery-intro {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}

.mini-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.mini-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.mini-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mini-gallery-item:hover img {
    transform: scale(1.1);
}

.mini-gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mini-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 3em;
    color: white;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.gallery-cta {
    text-align: center;
}

.gallery-button {
    display: inline-block;
    padding: 15px 40px;
    background: #66BB6A;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3);
}

.gallery-button:hover {
    background: #5CB85C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.4);
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .mini-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .areas-mini-gallery-section h2 {
        font-size: 2em;
    }
}

@media (max-width: 576px) {
    .mini-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .areas-mini-gallery-section {
        padding: 60px 0;
    }
    
    .areas-mini-gallery-section h2 {
        font-size: 1.8em;
    }
    
    .gallery-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

.areas-hero-section {
    padding: 80px 0 60px;
    margin-top: -120px;
    padding-top: 200px;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.areas-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.areas-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: -60px;
}

.areas-hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.areas-hero-content p {
    font-size: 1.3em;
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 15px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.areas-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.areas-content-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.areas-content-text h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.areas-content-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Building Regulations Section */
.building-regulations-section {
    padding: 80px 0;
    background: white;
}

/* Areas Page Building Regulations with Background */
.areas-regulations-section {
    padding: 80px 0;
    background: #1a1a1a;
    position: relative;
}

.areas-regulations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/images/gcc-png.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.areas-regulations-section .container {
    position: relative;
    z-index: 1;
}

.areas-full-width-overlay {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.areas-full-width-overlay h2 {
    text-align: center;
    color: #ffffff !important;
    font-size: 2em !important;
    margin-bottom: 25px !important;
}

.areas-full-width-overlay p {
    color: #f0f0f0 !important;
    font-size: 1.05em !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
    text-align: center;
}

.areas-full-width-overlay ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.areas-full-width-overlay ul li {
    color: #f0f0f0 !important;
    font-size: 1em !important;
    line-height: 1.7 !important;
    margin-bottom: 15px !important;
    padding-left: 30px;
    position: relative;
}

.areas-full-width-overlay ul li::before {
    content: "✓";
    color: #66BB6A;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.3em;
}

.areas-full-width-overlay .regulations-cta {
    text-align: center;
    margin-top: 40px;
    padding: 25px 30px;
    background: rgba(102, 187, 106, 0.15);
    border-radius: 12px;
    border: 2px solid #66BB6A;
}

.areas-full-width-overlay .regulations-cta p {
    color: #ffffff !important;
    font-size: 1.1em !important;
    margin: 0 !important;
    font-weight: 600;
}

.areas-full-width-overlay .regulations-cta strong {
    color: #ffffff !important;
}

.regulations-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.regulations-content h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.regulations-content > p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.regulations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.regulation-item {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.regulation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.regulation-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #66BB6A;
    font-weight: 600;
}

.regulation-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95em;
}

.regulations-cta {
    margin-top: 40px;
    padding: 30px;
    background: #66BB6A;
    border-radius: 8px;
    color: white;
}

.regulations-cta p {
    margin: 0;
    font-size: 1.2em;
    font-weight: 500;
}

.main-areas-section {
    padding: 80px 0;
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.area-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.area-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.area-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.area-item h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.area-item h3 a:hover {
    color: #66BB6A;
}

.area-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.additional-areas-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.additional-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.additional-area-column {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.additional-area-column h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #66BB6A;
    font-weight: 600;
    border-bottom: 2px solid #66BB6A;
    padding-bottom: 10px;
}

.additional-area-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.additional-area-column li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.additional-area-column li:last-child {
    border-bottom: none;
}

.service-benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.benefit-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Areas Page */
@media (max-width: 768px) {
    .areas-hero-content h1 {
        font-size: 2.5em;
    }
    
    .areas-hero-content p {
        font-size: 1.1em;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .additional-areas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .areas-content-section,
    .building-regulations-section,
    .main-areas-section,
    .additional-areas-section,
    .service-benefits-section {
        padding: 60px 0;
    }
    
    .regulations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .regulations-content h2 {
        font-size: 2em;
    }
    
    .regulation-item {
        padding: 20px 15px;
    }
}

/* Areas Covered Overview Page Styles */
.areas-tables-section {
    padding: 80px 0;
    background: #ffffff;
}

.areas-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.areas-intro p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.region-section {
    display: flex;
    flex-direction: column;
}

.region-section h2 {
    font-size: 1.5em;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #66BB6A;
    text-align: center;
}

.areas-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.areas-table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.areas-table tbody tr:last-child {
    border-bottom: none;
}

.areas-table tbody tr:hover {
    background: #f8f9fa;
}

.areas-table td {
    padding: 15px 20px;
}

.areas-table td a {
    color: #333;
    text-decoration: none;
    font-size: 1em;
    display: block;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.areas-table td a:hover {
    color: #66BB6A;
    padding-left: 10px;
}

.areas-table td a:before {
    content: "📍 ";
    margin-right: 8px;
}

@media (max-width: 1024px) {
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .areas-tables-section {
        padding: 40px 0;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .region-section h2 {
        font-size: 1.3em;
    }
    
    .areas-table td {
        padding: 12px 15px;
    }
    
    .areas-table td a {
        font-size: 0.95em;
    }
}

/* Center email in mobile navigation bar */
@media (max-width: 980px) {
	/* Target parent containers first */
	#top-header .container,
	#top-header {
		text-align: center !important;
	}
	
	/* Top header email centering - very specific selectors */
	#top-header #et-info,
	#top-header div#et-info,
	#top-header #et-info-email,
	#top-header span#et-info-email,
	#top-header a[href^="mailto:"] {
		float: none !important;
		text-align: center !important;
		width: 100% !important;
		display: block !important;
		margin: 0 auto !important;
		clear: both !important;
	}
	
	#top-header #et-info a,
	#top-header #et-info a[href^="mailto:"] {
		display: inline-block !important;
		margin: 0 auto !important;
		text-align: center !important;
		float: none !important;
	}
	
	/* Slide menu email centering - very specific selectors */
	.et_slide_menu_top span#et-info-email,
	.et_slide_menu_top div#et-info,
	.et_slide_in_menu_container #et-info,
	.et_slide_in_menu_container span#et-info-email,
	.et_slide_in_menu_container a[href^="mailto:"] {
		float: none !important;
		text-align: center !important;
		width: 100% !important;
		display: block !important;
		margin: 0 auto !important;
		clear: both !important;
	}
	
	.et_slide_menu_top div#et-info a,
	.et_slide_in_menu_container #et-info a,
	.et_slide_menu_top a[href^="mailto:"] {
		display: inline-block !important;
		margin: 0 auto !important;
		text-align: center !important;
		float: none !important;
	}
	
	/* Flexbox approach for better centering */
	#top-header #et-info,
	#top-header div#et-info,
	.et_slide_menu_top div#et-info,
	.et_slide_in_menu_container #et-info {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		flex-direction: row !important;
		flex-wrap: wrap !important;
	}
	
	#top-header #et-info a,
	#top-header #et-info a[href^="mailto:"],
	.et_slide_menu_top div#et-info a,
	.et_slide_in_menu_container #et-info a {
		display: inline-block !important;
		text-align: center !important;
		margin: 0 auto !important;
	}
	
	/* Force center any email spans */
	span#et-info-email {
		text-align: center !important;
		display: block !important;
		width: 100% !important;
		margin: 0 auto !important;
		float: none !important;
	}
}
