/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.scroll-top-link {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.scroll-top-link.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-link:hover {
    transform: scale(1.1);
}

.scroll-top-link svg {
    display: block;
    width: 32px;
    height: 32px;
    stroke: white;
}

.scroll-top-link svg path {
    stroke: white;
}


/* Header Styles */
header {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #333;
}

header h1 {
    font-size: 2rem;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

header h1 img {
    height: 4rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

header h1 img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    transform: scale(1.05);
}

header nav {
    display: flex;
    gap: 30px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

header nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

header nav a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

header nav a:hover::before {
    left: 100%;
}

header nav a:hover::after {
    width: 100%;
    height: 100%;
}

header nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

header nav a:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    header {
        overflow-x: hidden;
    }

    header nav {
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: hidden;
        justify-content: center;
        max-width: 100%;
    }

    header nav a {
        font-size: 1rem;
        padding: 14px 20px;
        white-space: nowrap;
        flex-shrink: 1;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #888;
    margin-top: 20px;
    margin-bottom: 0;
    border-top: 2px solid #333;
    position: relative;
    width: 100%;
}

.booking-page footer {
    margin-top: 0;
    padding: 30px 0;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

footer p {
    margin: 0;
    padding: 10px 0;
}

/* Footer Content Layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.footer-contact {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-contact div {
    text-align: left;
}

.footer-contact h4 {
    margin: 0 0 5px;
    font-size: 0.9rem;
    color: #fff;
}

.footer-contact p {
    margin: 0;
    font-size: 0.8rem;
    color: #ccc;
}

.footer-contact .footer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
    min-width: 180px;
}

.footer-contact .footer-item .text {
    text-align: left;
}

.footer-contact .icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.footer-contact .icon svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

.footer-contact .footer-item h4 {
    margin: 0;
    font-size: 0.85rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact .footer-item p {
    margin: 0;
    color: #ccc;
    font-size: 0.78rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.social-links a {
    color: #888;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.5)), 
    url('Images/background.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-copy {
    max-width: 720px;
    margin: 0 auto 25px;
    color: rgba(255,255,255,0.87);
    font-size: 1.05rem;
    line-height: 1.7;
    letter-spacing: 0.4px;
    font-weight: 300;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

/* About Section Styles */
.about-section {
    padding: 100px 10%;
    background-color: #1a1a1a;
    color: #fff;
}

.about-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    max-width: 800px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.subtitle {
    font-size: 1rem;
    letter-spacing: 5px;
    color: #ff6b6b;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-text h3 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 25px;
    font-weight: 300;
}


/* Stats Layout */
.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

/* Services Section Layout */
.services-section {
    padding: 80px 5%;
    background-color: #060606;
    text-align: center;
}

.services-header {
    margin-bottom: 60px;
}

.services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-top: 10px;
}

.services-header p {
    max-width: 760px;
    margin: 20px auto 0;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
}

/* The Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Card Styles */
.service-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Individual Backgrounds */
.wedding { background-image: url('Images/bg10.jpeg'); }
.portrait { background-image: url('Images/bg1.jpeg'); }
.lifestyle { background-image: url('Images/bg2.jpeg'); }

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    text-align: left;
    transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: scale(1.02);
}

/* Service Text */
.service-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.service-overlay p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-overlay a {
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px solid #fff;
    width: fit-content;
    padding-bottom: 5px;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
}

.image-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

/* Booking Form Styles */
.booking-page {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('Images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 0 20px 40px 20px;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

.form-container {
    max-width: 650px;
    width: min(95%, 650px);
    margin: 35px auto;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden; /* Prevent content overflow */
    word-wrap: break-word; /* Ensure text breaks properly */
}

.form-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.price-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.price-box:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.price-box h3 {
    margin-bottom: 15px;
    color: #ffd700;
    font-size: 1.3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.price-box p {
    margin: 8px 0;
    font-size: 1rem;
    color: #ccc;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.price-box p:hover {
    color: #fff;
}

.form-container form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.form-container label {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.form-container input, 
.form-container select, 
.form-container textarea {
    width: 100%;
    padding: 15px;
    margin-top: 5px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box; /* Include padding in width calculation */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.form-container input::placeholder,
.form-container textarea::placeholder {
    color: rgba(255,255,255,0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 20px rgba(255,107,107,0.3);
    transform: translateY(-2px);
}

.form-container select {
    cursor: pointer;
    text-overflow: ellipsis; /* Handle long text in select */
}

.form-container select option {
    background: #1a1a1a;
    color: #fff;
    white-space: normal; /* Allow text to wrap in options */
    word-wrap: break-word;
}

.form-container textarea {
    resize: vertical; /* Allow vertical resize only */
    min-height: 100px;
    max-height: 300px; /* Prevent excessive height */
}

.form-container button {
    margin-top: 30px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap; /* Prevent button text wrapping */
    text-overflow: ellipsis; /* Add ellipsis if text is too long */
    box-sizing: border-box;
}

.form-container button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.form-container button:hover::before {
    left: 100%;
}

.form-container button:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 90, 36, 0.4);
}

.form-container button:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-container {
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Header Responsive */
    header {
        flex-direction: column;
        text-align: center;
        padding: 12px 15px;
        position: relative;
        align-items: center;
    }
    
    header h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        flex-shrink: 0;
    }
    
    header h1 img {
        height: 3.5rem;
    }
    
    header nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        margin-top: 0;
        width: 100%;
    }
    
    header nav a {
        font-size: 0.7rem;
        padding: 6px 10px;
        border-radius: 15px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Hero Responsive */
    .hero {
        height: 60vh;
        padding: 20px;
        background-attachment: scroll;
        background-position: center center;
    }
    
    .hero h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    /* About Section Responsive */
    .about-section {
        padding: 60px 5%;
    }
    
    .about-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .stats {
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    /* Services Section Responsive */
    .services-section {
        padding: 60px 5%;
    }
    
    .services-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        height: 400px;
    }
    
    .service-overlay {
        padding: 30px;
    }
    
    .service-overlay h3 {
        font-size: 1.8rem;
        font-weight: 700;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        letter-spacing: 1px;
        line-height: 1.3;
    }

    .service-overlay p {
        display: none;
    }
    
    .services-section {
        overflow-x: hidden;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 8px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .image-grid img {
        width: 100%;
        height: 90px;
        object-fit: contain;
        border-radius: 8px;
        background: #1a1a1a;
    }
    
    /* Booking Form Responsive */
    .booking-page {
        padding: 20px 15px;
        overflow-x: hidden;
    }
    
    .form-container {
        margin: 30px auto;
        padding: 30px 20px;
        max-width: 100%;
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .form-container h2 {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.2;
    }
    
    .price-box {
        padding: 20px;
        overflow: hidden;
    }
    
    .price-box h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }
    
    .price-box p {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .form-container input,
    .form-container select,
    .form-container textarea {
        padding: 12px;
        font-size: 0.95rem;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .form-container button {
        padding: 15px;
        font-size: 1rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        box-sizing: border-box;
    }
    
    /* Footer Responsive */
    footer {
        padding: 30px 0;
        font-size: 0.8rem;
    }

    footer::before {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Header Mobile */
    header {
        padding: 10px 15px;
    }
    
    header h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    header h1 img {
        height: 3.5rem;
    }
    
    header nav {
        gap: 1px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        justify-content: center;
    }
    
    header nav a {
        font-size: 0.5rem;
        padding: 2px 4px;
        border-radius: 6px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Hero Mobile */
    .hero {
        height: auto;
        min-height: 50vh;
        background-attachment: scroll;
        background-position: top center;
        padding: 20px 15px;
    }
    
    .hero h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
    
    /* About Mobile */
    .about-section {
        padding: 40px 3%;
    }
    
    .about-text {
        padding: 20px;
    }
    
    .subtitle {
        font-size: 0.75rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .about-text p {
        font-size: 0.8rem;
    }
    
    .stats {
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .stat-item p {
        font-size: 0.6rem;
    }
    
    /* Services Mobile */
    .services-section {
        padding: 30px 3%;
    }
    
    .services-header {
        margin-bottom: 30px;
    }
    
    .subtitle {
        font-size: 0.7rem;
    }
    
    .services-header h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        height: 350px;
        border-radius: 10px;
    }
    
    .service-overlay {
        padding: 20px 15px;
    }
    
    .service-overlay h3 {
        font-size: 1.5rem;
        font-weight: 700;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
        letter-spacing: 0.5px;
    }
    
    .service-overlay p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .service-overlay a {
        font-size: 0.7rem;
        padding-bottom: 5px;
    }
    
    /* Image Grid Mobile */
    .image-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .image-grid img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 10px;
    }
    
    /* Booking Mobile */
    .booking-page {
        padding: 0 10px 25px 10px;
        overflow-x: hidden;
    }
    
    .form-container {
        margin: 15px auto;
        padding: 20px 12px;
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .form-container h2 {
        font-size: 1.4rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.2;
    }
    
    .price-box {
        padding: 12px;
        margin-bottom: 15px;
        overflow: hidden;
    }
    
    .price-box h3 {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }
    
    .price-box p {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .form-container label {
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .form-container input,
    .form-container select,
    .form-container textarea {
        padding: 8px;
        font-size: 0.85rem;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .form-container button {
        padding: 10px;
        font-size: 0.85rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        box-sizing: border-box;
    }
    
    /* Contact Mobile */
    .contact-section {
        padding: 40px 3%;
    }

    .contact-container {
        max-width: 95%;
        margin: 0 auto;
        border-radius: 12px;
        padding: 12px;
        box-sizing: border-box;
    }

    .contact-container h2 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .contact-container p {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .contact-details {
        flex-direction: column;
        gap: 8px;
    }

    .contact-details > div {
        padding: 10px;
        min-height: 80px;
    }

    .contact-details h3 {
        font-size: 0.85rem;
        gap: 6px;
    }

    .contact-details h3 svg {
        width: 16px;
        height: 16px;
    }

    .contact-details p {
        font-size: 0.75rem;
    }

    .contact-form {
        gap: 10px;
    }

    .contact-form label {
        font-size: 0.7rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.8rem;
        padding: 8px 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .contact-form .btn {
        font-size: 0.75rem;
        padding: 8px 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Footer Mobile */
    footer {
        padding: 20px 0;
        font-size: 0.7rem;
    }
    
    .footer-contact {
        gap: 15px;
    }
    
    .footer-contact .footer-item {
        padding: 0.5rem 0.7rem;
        min-width: 140px;
        gap: 0.5rem;
    }
    
    .footer-contact .icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }
    
    .footer-contact .icon svg {
        width: 12px;
        height: 12px;
    }
    
    .footer-contact .footer-item h4 {
        font-size: 0.75rem;
    }
    
    .footer-contact .footer-item p {
        font-size: 0.7rem;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        font-size: 1rem;
    }
}

/* Landscape Mobile Adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 80vh;
    }
    
    .service-card {
        height: 300px;
    }
    
    .form-container {
        margin: 20px auto;
        padding: 25px 20px;
    }
}

/* Tablet Specific Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    header {
        padding: 15px 30px;
    }
    
    header h1 {
        font-size: 1.9rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop Adjustments */
@media (min-width: 1400px) {
    header {
        padding: 25px 70px;
    }
    
    header h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 4.5rem;
    }
    
    .about-container {
        max-width: 1400px;
    }
    
    .services-grid {
        max-width: 1400px;
    }
    
    .form-container {
        max-width: 600px;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.45));
    color: #fff;
    min-height: calc(100vh - 90px);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    padding: 40px;
}

.contact-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-container p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-details > div {
    flex: 1 1 220px;
    background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(0,0,0,0.28));
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    min-height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details > div:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 18px 38px rgba(0,0,0,0.47);
}

.contact-details h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details h3 svg {
    width: 20px;
    height: 20px;
    fill: #ffb347;
    display: block;
}

.contact-details p {
    margin: 0;
    color: #eee;
    font-size: 0.95rem;
}

.contact-form {
    display: grid;
    gap: 15px;
}

.contact-form label {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    color: #fff;
    padding: 12px 14px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    margin-top: 10px;
    padding: 0.85rem 1.8rem;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 4%;
    }

    .contact-container {
        padding: 25px;
    }

    .contact-container h2 {
        font-size: 2.3rem;
    }

    .contact-details {
        flex-direction: column;
    }

    .form-container,
    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }

    .booking-page .form-container {
        max-width: 100%;
        width: calc(100vw - 40px);
        margin: 20px auto;
        padding: 22px;
        border-radius: 14px;
        box-shadow: 0 12px 35px rgba(0,0,0,0.4);
        overflow: hidden;
        box-sizing: border-box;
    }

    .booking-page .form-container h2 {
        font-size: 2rem;
        margin-bottom: 22px;
    }

    .booking-page .form-container .price-box {
        padding: 18px;
    }

    .booking-page .form-container input,
    .booking-page .form-container select,
    .booking-page .form-container textarea {
        padding: 12px;
        font-size: 0.95rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        overflow: hidden;
    }
}


