/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #fe7b00;
    --primary-blue: #059ad2;
    --text-dark: #333;
    --text-light: #666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Fix for H1UserAgentFontSizeInSection deprecation warning */
h1 {
    font-size: 2em;
    margin-block: 0.67em;
    font-weight: 700;
}

/* Ensure page header h1 elements have proper styling */
.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Ensure all h1 elements have proper base styling to prevent deprecation warnings */
h1:not(.hero-title) {
    font-size: 2em;
    margin-block: 0.67em;
    font-weight: 700;
}

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

/* Navigation */
.navbar {
    background: var(--white) !important;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 95px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: none !important;
}

/* Prevent inline image baseline shift inside navbar */
.nav-logo img {
    display: block;
}

.nav-logo h2 {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.nav-logo a {
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

/* Contact links styling - remove blue color and underline */
.contact-item a,
.quick-contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover,
.quick-contact-item a:hover {
    color: inherit;
    text-decoration: none;
}

/* Phone and email links in contact info */
.contact-item p a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item p a:hover {
    color: var(--text-light);
    text-decoration: none;
}

/* Footer phone number - no styling */
.footer-section p a {
    color: var(--text-light) !important;
    text-decoration: none !important;
}

.footer-section p a:hover {
    color: var(--text-light) !important;
    text-decoration: none !important;
}

/* Phone number in services page button */
.btn a {
    color: inherit;
    text-decoration: none;
}

.btn a:hover {
    color: inherit;
    text-decoration: none;
}

/* Prevent mobile browsers from auto-styling phone numbers and org numbers */
.business-info p,
.footer-section p {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Specific styling for organization numbers */
.business-info p strong,
.footer-section p {
    color: var(--text-light) !important;
    text-decoration: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

/* Floating Icons Background */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

    .icon {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
    filter: blur(0.3px) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 45%;
    left: 5%;
    animation-delay: 2s;
}

.icon-4 {
    top: 55%;
    right: 20%;
    animation-delay: 3s;
}

.icon-5 {
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
}

.icon-6 {
    top: 20%;
    right: 35%;
    animation-delay: 5s;
}

.icon-7 {
    bottom: 55%;
    left: 55%;
    animation-delay: 6s;
}

.icon-8 {
    top: 65%;
    right: 8%;
    animation-delay: 7s;
}

.icon-9 {
    top: 30%;
    left: 2%;
    animation-delay: 8s;
}

.icon-10 {
    bottom: 20%;
    right: 45%;
    animation-delay: 9s;
}

.icon-11 {
    top: 45%;
    left: 45%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Hero Container */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    text-align: left;
    max-width: 640px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 100%;
    text-wrap: balance;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 36ch;
    text-align: left;
    text-align-last: auto;
    hyphens: manual;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-car {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: none;
    pointer-events: none;
    background: transparent;
    mix-blend-mode: normal;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 30px;
    box-shadow: 0 4px 15px rgba(254, 123, 0, 0.3);
}

.btn-primary:hover {
    background: #e66a00;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(254, 123, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--background-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--white);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Page Content Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}


.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 2rem;
}

.content-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-orange);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

/* Custom File Input Styling */
.form-group input[type="file"] {
    padding: 0;
    border: none;
    background: transparent;
}

.form-group input[type="file"]::-webkit-file-upload-button {
    background: #d65a00;
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
    background: #b84a00;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* Firefox file input styling */
.form-group input[type="file"]::file-selector-button {
    background: #d65a00;
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.form-group input[type="file"]::file-selector-button:hover {
    background: #b84a00;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

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

.contact-sidebar {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

.contact-person {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-person img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary-orange);
}

.contact-person h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* References Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Image Loading Optimization */
.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: all 0.3s ease;
    background: none;
    will-change: opacity, transform;
    display: block;
    image-rendering: auto;
    -webkit-image-rendering: auto;
}

.gallery-image[loading="lazy"] {
    opacity: 1;
    transform: scale(1);
}

.gallery-image.loaded {
    opacity: 1;
    transform: scale(1);
    animation: none;
    background: none;
}

/* Optimize image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: none;
    border-radius: 15px 15px 0 0;
    display: block;
    image-rendering: auto;
    -webkit-image-rendering: auto;
}

.gallery-overlay {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding-top: 0.5rem;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 380px;
        margin: 0 auto;
    }

    .hero-image-container {
        order: 1;
        display: flex;
        justify-content: center;
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        max-width: 100%;
        text-wrap: balance;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 28ch;
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
        text-justify: inter-word;
        text-align-last: center;
        hyphens: auto;
    }

    .hero-car {
        max-width: 480px;
        width: 120%;
        height: auto;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    .btn {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 600;
    }

    .btn-primary {
        width: 100%;
    }

    .floating-icons {
        height: 100%;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        align-items: center;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: auto;
        display: inline-block;
    }

    .logo-img {
        height: 85px;
    }

    /* On mobile keep images filling cards (cover) */
    .gallery-item img,
    .gallery-image {
        height: 250px;
        object-fit: cover;
        display: block;
    }
}

/* Small mobile optimization (360-430px) */
@media (max-width: 430px) {
    .hero-container {
        gap: 1.25rem;
        padding-top: 0.25rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 340px;
    }

    .hero-title {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        max-width: 100%;
        text-wrap: balance;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
        max-width: 24ch;
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
        text-justify: inter-word;
        text-align-last: center;
        hyphens: auto;
    }

    .hero-car {
        max-width: 320px;
        width: 125%;
    }

    .hero-buttons {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .btn {
        min-height: 44px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-container {
        gap: 1.5rem;
        padding-top: 0.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
        max-width: 26ch;
    }

    .hero-car {
        max-width: 350px;
        width: 120%;
    }

    .hero-buttons {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .btn {
        min-height: 44px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }

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

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

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

    .logo-img {
        height: 75px;
    }

}

/* Local SEO Content Section */
.local-seo-content {
    padding: 4rem 0;
    background: var(--background-light);
}

.local-seo-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
}

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

.content-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
}

.content-block h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-block p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .local-seo-content h2 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
}

/* About Page Styles */
.about-intro,
.about-services,
.about-location {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-orange);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
}

.contact-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.cta-buttons .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Services Page Styles */
.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.area-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.area-card p {
    color: var(--text-light);
    font-weight: 600;
}

/* References Page Styles */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-orange);
    background: transparent;
    color: var(--primary-orange);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-orange);
    color: var(--white);
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
}

/* Contact Page Styles */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-orange);
    text-decoration: none;
}

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

.business-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.business-info p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.business-info strong {
    color: var(--primary-blue);
}

.quick-contact {
    margin-top: 4rem;
    text-align: center;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quick-contact-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
}

.quick-contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.quick-contact-item p {
    color: var(--text-light);
    margin: 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
