:root {
    --primary-accent: #1450a0;
    --royal-blue: #0D47A1;
    --navy-dark: #15314B;
    --navy-darker: #0D1F2F;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-dark: #333333;
    --text-muted: #666666;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light-gray);
}

.section-subtitle {
    display: block;
    color: var(--primary-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0d3d7a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(20, 80, 160, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy-dark);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-accent);
}

.btn-light:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 80, 160, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(20, 80, 160, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(20, 80, 160, 0);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Top Bar */
.top-bar {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-info span,
.top-meta span {
    margin-right: 20px;
}

.top-info i,
.top-meta i {
    color: var(--primary-accent);
    margin-right: 5px;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.main-header.sticky {
    height: 80px;
    /* Keep height same to avoid flow jitter */
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 95%;
    /* Use percentage for maximum screen coverage */
    width: 100%;
    padding: 0 60px;
    /* Large side padding for airiness */
    margin: 0 auto;
}

.logo img {
    height: 35px;
    /* Significantly smaller as requested */
    width: auto;
    transition: var(--transition);
}

.header-cta .btn {
    padding: 6px 15px;
    /* Even smaller button */
    font-size: 0.75rem;
}

.main-header.sticky .logo img {
    height: 40px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-weight: 600;
    color: var(--navy-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-accent);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-left: 5px;
    /* Tiny space between button and hamburger */
}

/* Hero with Video Background */
.hero {
    height: 95vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.3);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.9);
    font-weight: 800;
}

.hero h1 span {
    color: var(--primary-accent);
    text-shadow: none;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 1;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 1);
    font-weight: 600;
    max-width: 750px;
    line-height: 1.4;
}

.hero-btns .btn {
    margin-right: 15px;
}

/* About */
.about-img img {
    border-left: 8px solid var(--primary-accent);
    border-bottom: 8px solid var(--royal-blue);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--navy-dark);
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.about-highlights {
    margin-top: 25px;
    display: flex;
    gap: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.highlight i {
    color: var(--primary-accent);
    font-size: 1.2rem;
}

/* Services Redesign */
.services.bg-light {
    background-image: url('images/white-brick-bg.png');
    background-repeat: repeat;
    background-size: 400px;
    background-attachment: fixed;
    background-color: #ffffff;
    /* Fallback */
    position: relative;
}

.services-redesign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-item-new {
    text-align: left;
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-item-new:hover .service-img {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-item-new h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--navy-dark);
}

.service-item-new p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
}

.service-item-new p strong {
    color: var(--navy-dark);
    display: block;
    margin-bottom: 5px;
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    background-color: var(--white);
    padding: 0;
    /* Remove padding to let image take full width */
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    /* For image rounding */
    border-bottom: 4px solid transparent;
}

.why-item:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary-accent);
}

.why-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
}

.why-item h3 {
    margin-bottom: 15px;
    padding: 0 20px;
    color: var(--navy-dark);
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0 20px 30px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-accent), var(--royal-blue));
    color: var(--white);
    padding: 60px 0;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* CTA Banner with Video */
.cta-banner.video-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: none;
    /* Static Video Container Fix */
    clip-path: inset(0);
}

.cta-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Place behind container content */
    pointer-events: none;
}

.cta-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 80, 160, 0.8), rgba(10, 37, 73, 0.9));
    z-index: 2;
}

.cta-relative {
    position: relative;
    z-index: 3;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-banner p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Footer */
.main-footer {
    background-color: var(--navy-darker);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
}

.footer-col h3 {
    margin-bottom: 25px;
    border-left: 3px solid var(--primary-accent);
    padding-left: 15px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--primary-accent);
    padding-left: 5px;
}

.contact-footer p {
    margin-bottom: 15px;
}

.contact-footer i {
    color: var(--primary-accent);
    margin-right: 10px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
}

.social-links a:hover {
    background-color: var(--primary-accent);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #999;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-in 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {

    .grid-3,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    /* Top Bar Mobile Stacking */
    .top-bar .flex-between {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-info,
    .top-meta {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .top-info span,
    .top-meta span {
        margin-right: 0;
    }

    .top-bar.header-cta .btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .main-header .container {
        padding: 0 15px;
        /* Less padding on mobile */
        max-width: 100%;
        justify-content: space-between;
    }

    .header-cta {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 120px;
        /* Account for fixed header */
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
        text-align: center;
        line-height: normal;
    }

    .section-subtitle {
        text-align: center;
        line-height: normal;
    }

    .about-text h2 {
        text-align: center;
        line-height: normal;
    }

    .service-item-new h3 {
        text-align: center;
        line-height: normal;
    }

    /* Additional Heading Alignments */
    .hero h1 {
        font-size: 2.2rem;
        text-align: center;
        line-height: normal;
    }

    .why-item h3,
    .cta-banner h2,
    .footer-col h3,
    .contact-card h3,
    .hours-content h2,
    .commitment-card h3,
    .why-card h3,
    .workshop-content h2,
    .experience-content h2,
    .about-content h2,
    .about-hero h1 {
        text-align: center;
        line-height: normal;
    }
}

@media (max-width: 576px) {

    .grid-3,
    .why-grid,
    .services-redesign-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        margin-bottom: 40px;
    }
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.whatsapp-btn,
.scroll-top-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.scroll-top-btn {
    background-color: var(--primary-accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--navy-dark);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-btns {
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-btn,
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* About Page Styles */
.about-hero {
    height: 50vh;
    background: linear-gradient(135deg, var(--primary-accent), var(--royal-blue));
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/trucks-images/2025-12-15.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.5);
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Main Section */
.about-main {
    padding: 80px 0;
}

.about-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: var(--transition);
}

.about-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.08);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-accent);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(20, 80, 160, 0.4);
    transition: var(--transition);
}

.about-img-wrapper:hover .about-badge {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(20, 80, 160, 0.6);
}

.about-badge i {
    font-size: 1.5rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--navy-dark);
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
}

.grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--navy-dark);
}

.experience-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.experience-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: var(--transition);
}

.experience-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.experience-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.experience-img-wrapper:hover img {
    transform: scale(1.08);
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-accent);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-width: 8px;
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-accent);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--navy-dark);
    transition: var(--transition);
}

.stat-item:hover h3 {
    color: var(--primary-accent);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    transition: var(--transition);
}

.stat-item:hover p {
    color: var(--text-dark);
}

/* Workshop Section */
.workshop-section {
    padding: 80px 0;
}

.workshop-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--navy-dark);
}

.workshop-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.workshop-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: var(--transition);
}

.workshop-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.workshop-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.workshop-img-wrapper:hover img {
    transform: scale(1.08);
}

.workshop-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.feature-item:hover {
    background: var(--white);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: var(--primary-accent);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--navy-dark);
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.commitment-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.commitment-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-accent), var(--royal-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.commitment-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.commitment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--navy-dark);
}

.commitment-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.why-choose-section .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.why-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.why-card-content {
    padding: 30px;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--navy-dark);
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive for About Page */
@media (max-width: 992px) {
    .grid-2-reverse {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-section .why-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .experience-stats,
    .workshop-features {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-section .why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.rounded {
    border-radius: 15px;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Contact Page Styles */

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary-accent);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-accent), var(--royal-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--navy-dark);
}

.contact-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-card a {
    color: var(--primary-accent);
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--royal-blue);
}

/* Business Hours Section */
.business-hours-section {
    padding: 80px 0;
}

.hours-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hours-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--navy-dark);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.hours-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hours-item i {
    font-size: 2rem;
    color: var(--primary-accent);
}

.hours-item div {
    display: flex;
    flex-direction: column;
}

.hours-item strong {
    font-size: 1.1rem;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.hours-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hours-image img {
    border-left: 8px solid var(--primary-accent);
    border-bottom: 8px solid var(--royal-blue);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hours-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
    background-color: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-accent);
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(20, 80, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.form-submit .btn {
    padding: 15px 50px;
    font-size: 1rem;
}

.form-submit .btn i {
    margin-right: 10px;
}

/* Workshop Location Section */
.workshop-location-section {
    padding: 80px 0;
}

.location-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--navy-dark);
}

.location-content p {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 1.3rem;
    color: var(--primary-accent);
}

.feature-item span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.location-image img {
    border-left: 8px solid var(--primary-accent);
    border-bottom: 8px solid var(--royal-blue);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-section iframe {
    display: block;
    width: 100%;
}

/* Final CTA Section uses .cta-banner .video-cta shared styles */

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 40px;
    font-size: 1rem;
}

.cta-buttons .btn i {
    margin-right: 10px;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-accent);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Reduce Section Padding for Mobile */
    section,
    .about-main,
    .experience-section,
    .workshop-section,
    .commitment-section,
    .why-choose-section,
    .gallery-section,
    .contact-info-section,
    .business-hours-section,
    .contact-form-section,
    .about-hero {
        padding: 40px 0;
    }

    .main-footer {
        padding: 40px 0 20px;
    }
}

.copyRight {
    color: #233a49;
    margin-top: 10px;
    font-size: 12px;
}

.amLink {
    color: #233a49;
    text-decoration: none;
    font-size: 12px;
}