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

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-black: #2a2a2a;
    --primary-gold: #d4af37;
    --secondary-gold: #f4d03f;
    --light-gold: #f7dc6f;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --text-light: #e9ecef;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin: 0;
}

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

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

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('IMG_6648.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Mobile hero background fixes */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 100vh;
        transform: none !important; /* Prevent any transform issues on mobile */
        position: relative;
    }
    
    /* Ensure smooth transitions between sections */
    section {
        position: relative;
        z-index: 1;
    }
    
    .about {
        position: relative;
        z-index: 2;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
}

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

.hero-title {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-gold);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000000;
    box-shadow: var(--shadow-gold);
    font-weight: 700;
    text-shadow: none;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    color: #000000;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-gold);
    position: relative;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 1rem auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--secondary-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.feature {
    background: linear-gradient(135deg, var(--secondary-black) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.feature i {
    color: var(--primary-gold);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.feature h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    background-color: var(--accent-black);
    border-radius: 15px;
    min-height: 400px; /* Ensure minimum height even if image fails to load */
}

/* Fallback for missing images */
.about-image img:not([src]),
.about-image img[src=""] {
    background: linear-gradient(135deg, var(--accent-black) 0%, var(--secondary-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    text-align: center;
}

.about-image img:not([src])::after,
.about-image img[src=""]::after {
    content: "Image Loading...";
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    background: var(--primary-black);
}

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

.service-card {
    background: var(--secondary-black);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.service-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--secondary-black) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-black);
    font-size: 2rem;
}

.service-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
}

.service-duration {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.service-note {
    text-align: center;
    padding: 1.5rem;
    background: var(--accent-black);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.service-note p {
    color: var(--text-light);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-note i {
    color: var(--primary-gold);
}

/* Gallery Section */
.gallery {
    background: var(--secondary-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
    display: block;
    background-color: var(--accent-black);
}

.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;
}

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

.gallery-overlay i {
    color: var(--primary-gold);
    font-size: 2rem;
}

/* Hours Section */
.hours {
    background: var(--primary-black);
}

.hours-content {
    max-width: 600px;
    margin: 0 auto;
}

.hours-grid {
    background: var(--secondary-black);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--accent-black);
}

.hours-day:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.time {
    color: var(--text-light);
    font-size: 1.1rem;
}

.hours-note {
    text-align: center;
    padding: 1.5rem;
    background: var(--accent-black);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.hours-note p {
    color: var(--text-light);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hours-note i {
    color: var(--primary-gold);
}

/* Contact Section */
.contact {
    background: var(--secondary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item:last-child {
    margin-bottom: 4.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

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

.contact-details a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-gold);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-map iframe:hover {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--accent-black);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-light);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-black);
}

.footer-bottom p {
    color: var(--dark-gray);
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mobile-First Responsive Design */

/* iPhone SE, iPhone 12 mini, small phones */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        height: 100vh;
        background-attachment: scroll; /* Better performance on mobile */
        background-position: center center;
        background-size: cover;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

    .gallery-item {
        aspect-ratio: 1;
    }

    /* About section mobile layout */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
        margin-bottom: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        order: 3;
        margin-top: 2rem;
    }

    .feature {
        padding: 1.5rem 1rem;
    }

    .feature i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature h4 {
        font-size: 1.2rem;
    }

    /* Contact section mobile layout */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map {
        order: 1;
        margin-bottom: 2rem;
    }

    .contact-info {
        order: 2;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .contact-details {
        text-align: center;
        width: 100%;
    }

    .contact-details h4 {
        text-align: center;
    }

    .contact-details p {
        text-align: center;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hours-day {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-logo {
        gap: 0.5rem;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .footer-logo-img {
        width: 50px;
        height: 50px;
    }

    .footer-social {
        justify-content: center;
    }

    /* Reduce section padding on mobile */
    section {
        padding: 2rem 0;
    }

    /* Specific section spacing adjustments */
    .hero {
        padding: 0;
        margin: 0;
    }

    .about {
        padding: 2rem 0;
    }

    .services {
        padding: 2rem 0;
    }

    .gallery {
        padding: 2rem 0;
    }

    .hours {
        padding: 2rem 0;
    }

    .contact {
        padding: 2rem 0;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    /* Remove extra margins from section headers */
    .section-header {
        margin-bottom: 2rem;
    }
}

/* iPhone 12, iPhone 13, iPhone 14, Samsung Galaxy S21/S22 */
@media (min-width: 376px) and (max-width: 428px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

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

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hours-day {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* About section mobile layout for larger phones */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
        margin-bottom: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        order: 3;
        margin-top: 2rem;
    }

    /* Contact section mobile layout for larger phones */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map {
        order: 1;
        margin-bottom: 2rem;
    }

    .contact-info {
        order: 2;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .contact-details {
        text-align: center;
        width: 100%;
    }

    .contact-details h4 {
        text-align: center;
    }

    .contact-details p {
        text-align: center;
    }

    /* Reduce section padding */
    section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

/* iPhone 12 Pro Max, iPhone 13 Pro Max, iPhone 14 Plus, Samsung Galaxy S21+/S22+ */
@media (min-width: 429px) and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .btn {
        flex: 1;
        min-width: 140px;
        max-width: 200px;
    }

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

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

/* Tablets - iPad, iPad Mini, Samsung Galaxy Tab */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }

    .btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature {
        padding: 2rem 1.5rem;
    }

    .feature i {
        font-size: 2.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-item {
        flex-direction: row;
        text-align: left;
    }

    .hours-day {
        flex-direction: row;
        text-align: left;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Large Tablets - iPad Pro, Samsung Galaxy Tab S */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.8rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Desktop and larger screens */
@media (min-width: 1025px) {
    .hero {
        background-attachment: fixed;
    }

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

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

    /* Desktop-specific hover effects */
    .service-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    }

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

    .gallery-item:hover img {
        filter: brightness(1.1);
    }

    .contact-item:hover .contact-icon {
        transform: scale(1.1);
    }

    .footer-social a:hover {
        transform: translateY(-5px) scale(1.1);
    }

    /* Enhanced desktop navigation */
    .nav-link:hover {
        color: var(--primary-gold);
        transform: translateY(-2px);
    }

    /* Desktop button enhancements */
    .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    }

    .btn-secondary:hover {
        background: var(--primary-gold);
        color: var(--primary-black);
        border-color: var(--primary-gold);
    }
}

/* Large Desktop Screens (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0 60px;
    }

    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 3.5rem;
    }

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

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

    .about-content {
        gap: 6rem;
    }

    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Ultra-wide screens (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 80px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }

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

    section {
        padding: 7rem 0;
    }
}

/* Navigation Mobile Optimizations */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding: 5rem 0 2rem;
        z-index: 1000;
    }

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

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

    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
        display: block;
    }

    /* Hamburger animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Touch-friendly optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px; /* Apple's recommended touch target size */
        min-width: 44px;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-item {
        cursor: pointer;
    }

    .service-card:hover {
        transform: none; /* Disable hover effects on touch devices */
    }

    .gallery-item:hover {
        transform: none;
    }
}

/* High DPI displays (Retina, etc.) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('IMG_6648.jpeg');
        background-size: cover;
        background-position: center;
    }
}

/* Landscape orientation optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1rem 20px;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Dark mode support for mobile browsers */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-black: #000000;
        --secondary-black: #111111;
        --accent-black: #222222;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero {
        background-attachment: scroll;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}
