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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

@media (max-width: 1240px) {
    .container {
        max-width: 95%;
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Header with Enhanced Styling */
header {
    background: linear-gradient(135deg, #1a2a4e 0%, #2a3a5e 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: fadeInDown 0.6s ease-out;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #d3d3d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s ease-out;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #d3d3d3, #fff);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

nav a:hover {
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Enhanced Hero Section with Parallax Effect */
.hero {
    min-height: 600px;
    height: 70vh;
    max-height: 800px;
    background-image: url('images/3556701970044693406.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 78, 0.7) 0%, rgba(128, 0, 32, 0.3) 100%);
    animation: fadeIn 1.5s ease-out;
}

.hero-overlay {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out 0.5s both;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #fff, #d3d3d3, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both, shimmer 3s linear infinite;
}

.hero-content p {
    font-size: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out 0.7s both;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Enhanced About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    animation: fadeIn 1s ease-out;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #800020, #1a2a4e, #800020);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2a4e;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #800020, #1a2a4e);
    border-radius: 2px;
}

.about-content {
    animation: fadeInUp 1s ease-out 0.2s both;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: #555;
}

.about-content ul li {
    animation: slideInLeft 0.6s ease-out both;
    transition: all 0.3s ease;
    padding-left: 2.5rem;
}

.about-content ul li:hover {
    transform: translateX(10px);
    color: #800020;
}

.about-content ul li:nth-child(1) { animation-delay: 0.3s; }
.about-content ul li:nth-child(2) { animation-delay: 0.4s; }
.about-content ul li:nth-child(3) { animation-delay: 0.5s; }
.about-content ul li:nth-child(4) { animation-delay: 0.6s; }
.about-content ul li:nth-child(5) { animation-delay: 0.7s; }
.about-content ul li:nth-child(6) { animation-delay: 0.8s; }

/* Enhanced Gallery Section - Horizontal Scrolling */
.gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    animation: fadeIn 1s ease-out;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a2a4e, #800020, #1a2a4e);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2a4e;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a2a4e, #800020);
    border-radius: 2px;
}

/* Scrolling Gallery Wrapper */
.gallery-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
    max-height: 300px;
}

.gallery-scroll-wrapper::before,
.gallery-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.gallery-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(249, 249, 249, 1), rgba(249, 249, 249, 0));
}

.gallery-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(249, 249, 249, 1), rgba(249, 249, 249, 0));
}

/* Scrolling Track */
.gallery-scroll-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    animation: scroll 60s linear infinite;
    width: fit-content;
    will-change: transform;
}

.gallery-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gallery Items */
.gallery-scroll-item {
    flex: 0 0 auto;
    width: 280px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: white;
}

.gallery-scroll-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.1), rgba(26, 42, 78, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 12px;
}

.gallery-scroll-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(128, 0, 32, 0.25);
}

.gallery-scroll-item:hover::before {
    opacity: 1;
}

.gallery-scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

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

/* Enhanced Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    animation: fadeIn 1s ease-out;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #800020, #1a2a4e, #800020);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2a4e;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #800020, #1a2a4e);
    border-radius: 2px;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #333;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-info p {
    margin: 0.5rem 0;
    transition: transform 0.3s ease;
}

.contact-info p:hover {
    transform: scale(1.05);
}

.contact-info strong {
    color: #800020;
    font-weight: 700;
}

.contact-info a {
    color: #1a2a4e;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #800020;
    transition: width 0.3s ease;
}

.contact-info a:hover {
    color: #800020;
}

.contact-info a:hover::after {
    width: 100%;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    animation: scaleIn 0.8s ease-out 0.4s both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 32, 0.05), transparent);
    transition: left 0.5s ease;
}

.contact-form:hover::before {
    left: 100%;
}

.contact-form:hover {
    box-shadow: 0 15px 60px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a2a4e;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: #800020;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d3d3d3;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #800020;
    box-shadow: 0 0 0 4px rgba(128, 0, 32, 0.1);
    transform: translateY(-2px);
    background: white;
}

.btn-submit {
    background: linear-gradient(135deg, #800020 0%, #a00025 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #a00025 0%, #c0002a 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.4);
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3);
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #1a2a4e 0%, #2a3a5e 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
    animation: fadeIn 1s ease-out;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #800020, #d3d3d3, #800020);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

footer p {
    margin: 0.5rem 0;
    transition: transform 0.3s ease;
}

footer p:hover {
    transform: scale(1.05);
}

footer a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #d3d3d3;
    transition: width 0.3s ease;
}

footer a:hover {
    color: #d3d3d3;
}

footer a:hover::after {
    width: 100%;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    animation: none !important;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    animation: none !important;
}

.scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    animation: none !important;
}

.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    animation: none !important;
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Image Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease-out;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    animation: scaleIn 0.3s ease-out;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    user-select: none;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #d3d3d3;
    transform: scale(1.1);
}

.gallery-scroll-item {
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .gallery-scroll-item {
        width: 260px;
        height: 200px;
    }

    .gallery-scroll-wrapper {
        max-height: 260px;
    }

    .gallery-scroll-wrapper::before,
    .gallery-scroll-wrapper::after {
        width: 60px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .logo {
        order: 1;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a2a4e 0%, #2a3a5e 100%);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        order: 4;
    }

    nav.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        align-items: center;
        padding: 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav a::after {
        display: none;
    }

    .hero {
        min-height: 400px;
        height: 50vh;
        max-height: 500px;
        background-attachment: scroll;
        background-position: center;
    }

    .hero-content h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .about h2,
    .gallery h2,
    .contact h2 {
        font-size: 2rem;
    }

    .about-content {
        padding: 2rem;
    }

    .gallery {
        padding: 3rem 0;
    }

    .gallery h2 {
        margin-bottom: 1.5rem;
    }

    .gallery-scroll-wrapper {
        padding: 0.75rem 0;
        max-height: 220px;
    }

    .gallery-scroll-track {
        gap: 1.2rem;
    }

    .gallery-scroll-item {
        width: 220px;
        height: 170px;
    }

    .gallery-scroll-wrapper::before,
    .gallery-scroll-wrapper::after {
        width: 40px;
    }

    .contact-info {
        font-size: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    /* Improved touch targets */
    .btn-submit {
        min-height: 48px;
        font-size: 1.1rem;
    }

    .contact-info a {
        display: inline-block;
        padding: 0.5rem;
        margin: 0.25rem;
        min-height: 44px;
        line-height: 2;
    }

    footer a {
        padding: 0.5rem;
        display: inline-block;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 0.75rem;
    }

    nav a {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }

    .hero {
        min-height: 350px;
        height: 45vh;
        max-height: 450px;
        background-position: center;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .gallery {
        padding: 2.5rem 0;
    }

    .gallery h2 {
        margin-bottom: 1.2rem;
        font-size: 1.8rem;
    }

    .gallery-scroll-wrapper {
        padding: 0.5rem 0;
        max-height: 180px;
    }

    .gallery-scroll-track {
        gap: 1rem;
        animation: scroll 40s linear infinite;
    }

    .gallery-scroll-item {
        width: 180px;
        height: 140px;
        border-radius: 10px;
    }

    .gallery-scroll-wrapper::before,
    .gallery-scroll-wrapper::after {
        width: 25px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .about-content {
        padding: 1.5rem;
    }

    .about-content p {
        text-align: left;
        font-size: 1rem;
        line-height: 1.6;
    }

    .about h2,
    .gallery h2,
    .contact h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .about {
        padding: 3rem 0;
    }

    .contact {
        padding: 3rem 0;
    }

    /* Better mobile form styling */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
    }

    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    /* Improved mobile button */
    .btn-submit {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        min-height: 52px;
    }

    /* Mobile-friendly contact info */
    .contact-info {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .contact-info p {
        margin: 1rem 0;
    }

    /* Footer adjustments */
    footer {
        padding: 2rem 1rem;
        font-size: 0.9rem;
    }

    footer p {
        margin: 0.75rem 0;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Better mobile scrolling */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* Remove hover effects on touch devices */
    @media (hover: none) {
        .about-content:hover,
        .gallery-scroll-item:hover,
        .contact-form:hover {
            transform: none;
        }
    }

    /* Mobile lightbox adjustments */
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
}

/* Landscape mobile improvements */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 350px;
        height: 90vh;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}
