/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffd700;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --transition: all 0.3s ease;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    --nav-bg: #ffffff;
    --nav-text: #2c3e50;
    --nav-hover: #3a6cf6;
    --button-bg: hsl(0 0% 12%);
    --button-hover: hsl(0 0% 20%);
    --button-text: hsl(0 0% 100%);
    --button-border: hsl(0 0% 90%);
    --button-glow: hsl(0 0% 100% / 0.75);
}

@media (prefers-color-scheme: light) {
    :root {
        --button-bg: hsl(0 0% 95%);
        --button-hover: hsl(0 0% 85%);
        --button-text: hsl(0 0% 12%);
        --button-border: hsl(0 0% 80%);
        --button-glow: hsl(0 0% 0% / 0.75);
    }
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 0; /* Remove padding since we'll adjust hero section */
}

/* Header and Navigation */
header {
    background-color: var(--nav-bg);
    position: fixed;
    width: calc(100% - 40px);
    top: 20px;
    left: 20px;
    z-index: 1000;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
    object-fit: contain;
    transition: var(--transition);
}

.nav-brand:hover .nav-logo {
    transform: scale(1.1);
}

.logo {
    color: var(--nav-text);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--nav-text);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-right: 1rem;
}

.nav-link {
    color: var(--nav-text);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--nav-hover);
    transition: var(--transition);
}

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

.nav-contact {
    display: flex;
    align-items: center;
}

.nav-book {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    background-color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
}

.nav-book:hover {
    color: var(--secondary-color);
    background-color: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    header {
        width: calc(100% - 20px);
        left: 10px;
        top: 10px;
    }

    .navbar {
        padding: 0.8rem 4%;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
        padding: 0.5rem;
        margin-right: 0.5rem;
    }

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background-color: var(--nav-text);
        margin: 4px 0;
        transition: var(--transition);
        border-radius: 2px;
    }

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

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: auto;
        background-color: var(--nav-bg);
        flex-direction: column;
        padding: 4rem 1.5rem 1.5rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        visibility: hidden;
        opacity: 0;
        top: 70px;
        right: 10px;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 10px;
        visibility: visible;
        opacity: 1;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: left;
        gap: 0.8rem;
        display: flex !important;
        margin-right: 0;
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 0.6rem 0;
        font-size: 1.1rem;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-contact {
        margin-top: 1rem;
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active .nav-contact {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-book {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
        font-size: 1.1rem;
        margin: 0;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: -20px;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px; /* Height of nav area */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Animated Button Styles */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--button-text);
    text-decoration: none;
    transition: var(--transition);
    padding: 1rem 2rem;
    border-radius: 30px;
    background-color: var(--button-bg);
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--button-border);
}

.button:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.button:active {
    transform: translateY(0);
}

.button .scissors-icon {
    position: relative;
    z-index: 2;
    width: 1.8rem;
    height: 1.8rem;
    filter: brightness(0) invert(1); /* Makes the SVG white by default */
    transition: all 0.3s ease;
    transform: rotate(-15deg); /* Initial tilt */
}

/* Light mode adjustments */
@media (prefers-color-scheme: light) {
    .button .scissors-icon {
        filter: brightness(0) invert(0); /* Makes the SVG black in light mode */
    }
}

.button:hover .scissors-icon {
    transform: rotate(0deg); /* Straightens on hover */
}

.button:active .scissors-icon {
    transform: rotate(15deg); /* Rotates the other way on click */
}

.button .button-text {
    position: relative;
    z-index: 2;
    color: var(--button-text);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
    margin-left: 0.2rem; /* Add some space after the icon */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .button {
        padding: 0.8rem 1.8rem;
        gap: 0.6rem;
    }
    
    .button .button-text {
        font-size: 1.1rem;
    }
    
    .button .scissors-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-header {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    transition: background-color 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.service-header:hover {
    background-color: #2a2a2a;
}

.service-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
    text-align: center;
}

.service-content {
    padding: 1.5rem;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.service-description {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.service-icon {
    font-size: 1.5rem;
    color: #666;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: #1a1a1a;
}

.info-badge {
    display: inline-block;
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.book-appointment-btn {
    display: block;
    width: auto;
    padding: 0.2rem 0;
    margin: 0.5rem auto 0;
    background-color: transparent;
    color: #666;
    border: none;
    font-weight: 400;
    font-size: 0.8rem;
    font-style: italic;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 0.5px;
}

.book-appointment-btn:hover {
    color: #1a1a1a;
    text-decoration-color: #1a1a1a;
}

.book-appointment-btn:active {
    transform: translateY(0);
}

/* Carousel Styles */
@keyframes autoRun3d {
    0% {
        transform: perspective(800px) rotateY(-360deg);
    }
    100% {
        transform: perspective(800px) rotateY(0deg);
    }
}

@keyframes animateBrightness {
    10% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(0.5);
    }
    90% {
        filter: brightness(1);
    }
}

.card-3d {
    position: relative;
    width: 100%;
    height: 400px;
    transform-style: preserve-3d;
    transform: perspective(800px);
    animation: autoRun3d 12s linear infinite;
    will-change: transform;
    margin: 0 auto;
    max-width: 600px;
}

.card-3d .card {
    position: absolute;
    width: 220px;
    height: 330px;
    background-color: #1a1a1a;
    border: solid 2px rgba(0, 100, 255, 0.3);
    border-radius: 15px;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    animation: animateBrightness 12s linear infinite;
    transition-duration: 200ms;
    will-change: transform;
    box-shadow: 0 0 20px rgba(0, 100, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease, z-index 0s;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.card-content {
    width: 100%;
    height: 100%;
    padding: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-3d .card.active-card {
    transform: translate(-50%, -50%) scale(1.2) translateZ(250px) !important;
    box-shadow: 0 0 50px rgba(0, 150, 255, 0.8) !important;
    z-index: 10 !important;
    animation-play-state: paused !important;
}

/* Position cards */
.card-3d .card:nth-child(1) {
    transform: translate(-50%, -50%) rotateY(0deg) translateZ(250px);
    animation-delay: -0s;
}

.card-3d .card:nth-child(2) {
    transform: translate(-50%, -50%) rotateY(60deg) translateZ(250px);
    animation-delay: -3.33s;
}

.card-3d .card:nth-child(3) {
    transform: translate(-50%, -50%) rotateY(120deg) translateZ(250px);
    animation-delay: -6.66s;
}

.card-3d .card:nth-child(4) {
    transform: translate(-50%, -50%) rotateY(180deg) translateZ(250px);
    animation-delay: -10s;
}

.card-3d .card:nth-child(5) {
    transform: translate(-50%, -50%) rotateY(240deg) translateZ(250px);
    animation-delay: -13.33s;
}

.card-3d .card:nth-child(6) {
    transform: translate(-50%, -50%) rotateY(300deg) translateZ(250px);
    animation-delay: -16.66s;
}

/* Add animation for cards rotating to front */
@keyframes autoRun3d {
    0% {
        transform: perspective(800px) rotateY(-360deg);
    }
    100% {
        transform: perspective(800px) rotateY(0deg);
    }
}

.card-content i {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    color: #fff;
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card-content .price {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 0.5rem;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    display: inline-block;
    box-shadow: 0 0 10px rgba(0, 100, 255, 0.3);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .service-header h3 {
        font-size: 1.3rem;
    }

    .toggle-icon {
        font-size: 1.5rem;
    }

    .card-3d {
        height: 350px;
    }

    .card-3d .card {
        width: 200px;
        height: 300px;
    }

    .card-content {
        padding: 0;
        width: 100%;
        height: 100%;
    }

    .card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }

    .card-3d .card:nth-child(1) {
        transform: translate(-50%, -50%) rotateY(0deg) translateZ(200px);
    }
    
    .card-3d .card:nth-child(2) {
        transform: translate(-50%, -50%) rotateY(60deg) translateZ(200px);
    }
    
    .card-3d .card:nth-child(3) {
        transform: translate(-50%, -50%) rotateY(120deg) translateZ(200px);
    }
    
    .card-3d .card:nth-child(4) {
        transform: translate(-50%, -50%) rotateY(180deg) translateZ(200px);
    }
    
    .card-3d .card:nth-child(5) {
        transform: translate(-50%, -50%) rotateY(240deg) translateZ(200px);
    }
    
    .card-3d .card:nth-child(6) {
        transform: translate(-50%, -50%) rotateY(300deg) translateZ(200px);
    }

    .card-content i {
        font-size: 2.5rem;
    }

    .card-content h3 {
        font-size: 1.8rem;
    }

    .card-content p {
        font-size: 1rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .service-content .price {
        font-size: 1.2rem;
        padding: 0.3rem 0.7rem;
    }

    .info-badge {
        font-size: 0.85rem;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 3rem 1rem;
    }

    .service-header h3 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .service-content .price {
        font-size: 1.1rem;
    }

    .card-3d {
        height: 300px;
    }

    .card-3d .card {
        width: 180px;
        height: 260px;
    }

    .card-3d .card:nth-child(1) {
        transform: translate(-50%, -50%) rotateY(0deg) translateZ(200px);
    }
    
    .card-3d .card:nth-child(2) {
        transform: translate(-50%, -50%) rotateY(60deg) translateZ(200px);
    }
    
    .card-3d .card:nth-child(3) {
        transform: translate(-50%, -50%) rotateY(120deg) translateZ(200px);
    }
    
    .card-3d .card:nth-child(4) {
        transform: translate(-50%, -50%) rotateY(180deg) translateZ(200px);
    }
    
    .card-3d .card:nth-child(5) {
        transform: translate(-50%, -50%) rotateY(240deg) translateZ(200px);
    }
    
    .card-3d .card:nth-child(6) {
        transform: translate(-50%, -50%) rotateY(300deg) translateZ(200px);
    }

    .card-content {
        padding: 1rem;
    }

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

    .card-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 5rem 2rem;
    background-color: #fff;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

/* Gallery Preview Section */
.gallery-preview {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.gallery-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.gallery-background img.active {
    opacity: 1 !important;
    z-index: 2;
}

.gallery-background img.next {
    opacity: 0 !important;
    z-index: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 3;
    pointer-events: none;
}

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

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(90deg, #02010A 0%, #04052E 25%, #140152 50%, #22007C 75%, #0D00A4 100%);
    text-align: center;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #fff;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow:
        0 2px 8px 0 #04052E,
        0 4px 16px 0 #140152,
        0 8px 24px 0 #22007C,
        0 12px 32px 0 #0D00A4;
    border: none;
}

.contact-button.email {
    background-color: #fff;
    color: #04052E;
    border: 2px solid #04052E;
}

.contact-button.phone {
    background-color: #140152;
    color: #fff;
}

.contact-button:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 4px 16px 0 #04052E,
        0 8px 32px 0 #140152,
        0 16px 48px 0 #22007C,
        0 24px 64px 0 #0D00A4;
    filter: brightness(1.08);
}

.contact-button i {
    font-size: 1.4rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

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

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0D00A4;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }

    .hero p {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

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

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

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Mobile-only elements */
.mobile-only {
    display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: auto;
        background-color: var(--nav-bg);
        flex-direction: column;
        padding: 4rem 1.5rem 1.5rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        visibility: hidden;
        opacity: 0;
        top: 70px;
        right: 10px;
    }

    /* ... rest of existing mobile styles ... */
}

/* ... rest of existing styles ... */ 