* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    height: 65px;
    width: 100%;
    background: transparent; /* Removed white background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

.logo {
    height: 45px; /* Adjusted to fit within the 65px header with some padding */
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
}

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

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5); /* Enhanced shadow for readability */
}

nav ul li a:hover {
    color: rgba(255, 255, 255, 0.8); /* Changed hover color */
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative; /* Changed back from fixed to relative */
    top: 0;
    left: 0;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Changed from 0.4 to 0.1 for a much lighter overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5); /* Enhanced shadow for readability */
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
footer {
    position: relative;
    width: 100%;
    background: #1e293b;
    color: white;
    padding: 3rem 2rem 2rem;
    z-index: 2;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    color: #3b82f6;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-social a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    color: #3b82f6;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 18px;
}

/* Testimonials Section */
.testimonials {
    background: #f8f9fa;
    padding: 4rem 0;
}

.testimonials h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 300;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-rating .star {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 2px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0;
    text-align: center;
}

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

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Mobile responsiveness for testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
}

/* Mobile responsiveness for footer social icons */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-social {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link i {
        font-size: 14px;
    }
}

.footer-section h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #bdc3c7;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Remove or modify main-content wrapper since we don't need it anymore */
.main-content {
    display: none; /* Or remove this class entirely from both CSS and HTML */
}

/* Gallery Section */
.gallery-section {
    width: 100%;
    padding: 0;
    background: white;
    flex-shrink: 0;
}

.gallery-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Always 4 columns */
    gap: 0;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Creates a square aspect ratio */
    overflow: hidden;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Responsive Gallery - Remove larger screen breakpoints */
/* Remove these media queries:
@media (min-width: 1600px) {...}
@media (min-width: 1900px) {...}
@media (min-width: 2200px) {...}
@media (min-width: 2500px) {...}
*/

/* Keep only mobile breakpoints */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 0 10px;
        margin-top: -8vh;
        transform: translateY(-15px);
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
        hyphens: none;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .cta-button {
        display: none;
    }
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

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

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        padding: 2rem;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li a {
        font-size: 1.5rem;
    }

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

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

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

    .hero-content {
        padding: 0 15px;
        max-width: 100%;
        overflow: hidden;
        margin-top: -10vh;
        transform: translateY(-20px);
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        hyphens: none;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        display: none;
    }
    
    /* Footer mobile adjustments */
    footer {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

.close-modal:hover {
    color: black;
}

.modal h2 {
    font-family: 'Times New Roman', serif;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #757575;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Specific styles for date input */
.form-group input[type="date"] {
    background-color: white;
    padding: 8px 10px;
    color: #333;
    min-height: 40px;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #ddd;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Style the date picker icon */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: #f8f8f8;
    padding: 5px;
    cursor: pointer;
    border-radius: 3px;
}

/* Make sure the date input text is visible before selection */
.form-group input[type="date"]:invalid {
    color: #757575;
}

/* Show placeholder for date input */
.form-group input[type="date"]:before {
    content: attr(placeholder);
    color: #757575;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    white-space: nowrap;  /* Prevent text from wrapping */
}

/* Hide placeholder when date is selected */
.form-group input[type="date"]:valid:before,
.form-group input[type="date"]:focus:before {
    display: none;
}

/* Ensure consistent styling across browsers */
@supports (-webkit-touch-callout: none) {
    .form-group input[type="date"] {
        min-height: 44px; /* Slightly taller on iOS */
    }
}

.form-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: black;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

#preferredContact::placeholder {
    font-size: 14px;  /* Reduced from default size */
} 