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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #001f3f; /* Navy Blue */
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Navigation */
.navbar {
    background-color: rgba(0, 31, 63, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 140px;
    width: auto;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s, transform 0.2s;
    text-transform: uppercase;
    padding: 8px 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4CAF50;
    transform: translateY(-2px);
}

.phone-number {
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
}

.phone-number a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
}

.phone-number a:hover {
    color: #4CAF50;
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -8px);
}

.hamburger:hover span {
    background-color: #4CAF50;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1.5;
    min-width: 300px;
    max-width: 800px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.cta-button {
    background-color: #4CAF50;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-features {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.hero-features h3 {
    margin-bottom: 15px;
    color: #4CAF50;
}

.hero-features ul {
    list-style: none;
    text-align: left;
}

.hero-features li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.hero-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #002d5c;
}

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

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

.about-text h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #4CAF50;
}

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

/* Services Preview */
.services-preview {
    padding: 80px 20px;
    background-color: #001f3f;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #ffffff;
}

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

.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.service-card h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.service-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

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

.btn-secondary {
    background-color: transparent;
    color: #4CAF50;
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid #4CAF50;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: #4CAF50;
    color: #ffffff;
}

/* Services Detail Page */
.page-header {
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
    padding: 60px 20px;
    text-align: center;
}

.page-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.page-header-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-header-image {
    flex: 1.5;
    min-width: 300px;
    max-width: 800px;
}

.page-header-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-header p {
    font-size: 1.2em;
    color: #e0e0e0;
}

.services-detail {
    padding: 80px 20px;
    background-color: #001f3f;
}

.service-detail-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-detail-card h2 {
    color: #4CAF50;
    font-size: 2em;
    margin-bottom: 20px;
}

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

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #e0e0e0;
    font-size: 1.05em;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2em;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background-color: #002d5c;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #ffffff;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e0e0e0;
    line-height: 1.8;
}

.testimonial-author {
    color: #4CAF50;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #001f3f;
}

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

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

.contact-main {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.contact-main h2 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 2em;
}

.contact-intro {
    color: #e0e0e0;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.phone-cta {
    margin-top: 30px;
}

.phone-button {
    background-color: #4CAF50;
    color: #ffffff;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 24px;
    transition: background-color 0.3s, transform 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.phone-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.phone-link {
    color: #4CAF50;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #45a049;
    text-decoration: underline;
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-container h2 {
    color: #4CAF50;
    margin-bottom: 30px;
    font-size: 2em;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.submit-button {
    background-color: #4CAF50;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #45a049;
}

.form-note {
    margin-top: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

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

.info-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h3 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.info-card p {
    color: #e0e0e0;
    margin-bottom: 10px;
    line-height: 1.8;
}

.info-card a {
    color: #4CAF50;
    text-decoration: none;
}

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

.licensed {
    color: #4CAF50 !important;
    font-weight: bold;
    margin-top: 15px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background-color: #001f3f;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(0, 47, 92, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

.gallery-overlay h3 {
    color: #4CAF50;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.gallery-overlay p {
    color: #e0e0e0;
    font-size: 0.95em;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background-color: #002d5c;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Footer */
.footer {
    background-color: #001529;
    padding: 60px 20px 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: #4CAF50;
    text-decoration: none;
}

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

.hours-table {
    width: 100%;
    color: #e0e0e0;
}

.hours-table td {
    padding: 5px 0;
}

.hours-table td:first-child {
    font-weight: bold;
    width: 50px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .logo {
        height: 80px;
        max-width: 250px;
    }

    .hero h1 {
        font-size: 1.5em;
    }

    .hero-subtitle {
        font-size: 0.9em;
    }

    .about-section h2,
    .services-preview h2,
    .testimonials h2,
    .page-header h1 {
        font-size: 1.6em;
    }

    .cta-button,
    .btn-secondary {
        font-size: 14px;
        padding: 10px 25px;
    }

    .phone-button {
        font-size: 16px;
        padding: 12px 25px;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .phone-number {
        font-size: 18px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .navbar {
        padding: 15px 0;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .logo-container {
        flex: 1;
    }

    .logo {
        height: 80px;
        max-width: 250px;
    }

    /* Hamburger Menu - Show on Mobile */
    .hamburger {
        display: flex;
        order: 3;
    }

    /* Hide phone number in nav on mobile (will show in menu) */
    .phone-number {
        display: none;
    }

    /* Mobile Menu - Hidden by default */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(0, 31, 63, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        font-size: 18px;
        display: block;
        padding: 15px 10px;
        width: 100%;
        text-align: left;
        min-height: 50px;
    }

    /* Show phone number in mobile menu */
    .nav-menu .phone-number-mobile {
        display: block;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        list-style: none;
    }

    .nav-menu .phone-number-mobile a {
        font-size: 20px;
        font-weight: bold;
        padding: 15px;
        text-align: center;
        display: block;
        color: #4CAF50;
    }

    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 40px 15px;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .cta-button {
        font-size: 16px;
        padding: 12px 30px;
        width: 100%;
        max-width: 300px;
    }

    .hero-features {
        margin-top: 30px;
        padding: 20px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 50px 15px;
    }

    .about-section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .about-text h3 {
        font-size: 1.5em;
    }

    .about-text p {
        font-size: 1em;
    }

    /* Services Preview Mobile */
    .services-preview {
        padding: 50px 15px;
    }

    .services-preview h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

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

    .service-card {
        padding: 25px;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 50px 15px;
    }

    .testimonials h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 50px 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content-static {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-main {
        padding: 30px 20px;
    }

    .contact-main h2 {
        font-size: 1.8em;
    }

    .phone-button {
        font-size: 18px;
        padding: 15px 30px;
        width: 100%;
        max-width: 100%;
    }

    .contact-info {
        gap: 20px;
    }

    .info-card {
        padding: 25px 20px;
    }

    /* Page Header Mobile */
    .page-header {
        padding: 40px 15px;
    }

    .page-header-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-header-text {
        width: 100%;
        max-width: 100%;
    }

    .page-header-image {
        width: 100%;
        max-width: 100%;
    }

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

    .page-header p {
        font-size: 1em;
    }

    /* Services Detail Mobile */
    .services-detail {
        padding: 50px 15px;
    }

    .service-detail-card {
        padding: 25px 20px;
    }

    .service-detail-card h2 {
        font-size: 1.6em;
    }

    .service-detail-card p {
        font-size: 1em;
    }

    /* Gallery Mobile */
    .gallery-section {
        padding: 50px 15px;
    }

    .gallery-filters {
        gap: 10px;
        margin-bottom: 30px;
    }

    .filter-btn {
        font-size: 14px;
        padding: 8px 15px;
    }

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

    /* CTA Section Mobile */
    .cta-section {
        padding: 50px 15px;
    }

    .cta-section h2 {
        font-size: 2em;
    }

    .cta-section p {
        font-size: 1em;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 15px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 1.2em;
    }

    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hamburger {
        display: none;
    }

    .menu-overlay {
        display: none !important;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        right: auto;
    }

    .nav-menu .phone-number-mobile {
        display: none;
    }

    .phone-number {
        display: block;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-content {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Enhancements */
@media (min-width: 1025px) {
    .hamburger {
        display: none;
    }

    .menu-overlay {
        display: none !important;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        right: auto;
    }

    .nav-menu .phone-number-mobile {
        display: none;
    }

    .nav-container {
        flex-wrap: nowrap;
    }

    .hero-container {
        flex-direction: row;
    }

    .page-header-content {
        flex-direction: row;
    }
}

