/* General Styles */
:root {
    --primary-color: #6c757d;
    --secondary-color: #dc3545;
    --accent-color: #20c997;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #ecf0f1;
    --bg-dark: #2c3e50;
    --border-color: #bdc3c7;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block; 
    border-radius: 8px; /* Added for modern look */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-top: 40px;}
h3 { font-size: 1.8rem; }

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-color); /* Changed to accent on hover */
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-dark); /* Darker secondary */
    transform: translateY(-2px);
}

/* Header */
.main-header {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

/* Menu Styles */
.navbar-style-center .nav-links {
    flex-grow: 1; /* Allow nav-links to take available space */
    justify-content: center; /* Center the links */
}

.navbar-style-right .nav-links {
    flex-grow: 1;
    justify-content: flex-end; /* Align links to the right */
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    flex-shrink: 0; /* Prevent brand from shrinking */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px; /* Adjusted margin */
}

.nav-links a {
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    left: 0;
    bottom: -8px;
    transition: width 0.3s ease-out;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

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

/* Hero Section */
.hero-section, .page-hero {
    position: relative;
    height: 550px; /* Slightly taller hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-section::before, .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* Darker overlay */
    z-index: 1;
}

.hero-content, .page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    transform: translateY(0); /* For animations */
    opacity: 1;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.hero-section.loaded .hero-content,
.page-hero.loaded .page-hero-content {
    transform: translateY(0);
    opacity: 1;
}


.hero-content h1, .page-hero-content h1 {
    font-size: 4.8rem; /* Larger font */
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease-out forwards;
}

.hero-content p {
    font-size: 1.5rem; /* Larger font */
    margin-bottom: 40px;
    color: #f0f0f0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out forwards 0.3s; /* Delayed animation */
}

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

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

/* Sections */
.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Slower transition */
    opacity: 0; /* Hidden by default for JS fade-in */
    transform: translateY(30px); /* Larger initial Y translation */
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section:last-child {
    border-bottom: none;
}

.section h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px; /* More space for underline */
    color: var(--primary-color);
    font-size: 2.8rem;
}

.section h2::after {
    content: '';
    position: absolute;
    width: 100px; /* Longer underline */
    height: 5px; /* Thicker underline */
    background-color: var(--accent-color); /* Accent color for underline */
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 3px;
}

.bg-light {
    background-color: var(--bg-light);
}

.content-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px; /* Increased gap */
    margin-top: 40px;
    justify-content: center;
}

.content-flex p, .content-flex div:not(.price-list-container) {
    flex: 1;
    min-width: 350px; /* Minimum width for text content */
    font-size: 1.15em; /* Slightly larger text */
    color: var(--text-dark);
    text-align: justify;
}

.content-flex .section-image {
    flex: 1;
    min-width: 400px; /* Minimum width for images */
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 3px solid var(--border-color); /* Light border around image */
}

.content-flex .section-image:hover {
    transform: scale(1.03) translateY(-5px); /* More pronounced hover effect */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.content-flex.reverse {
    flex-direction: row-reverse;
}

/* Pricing specific */
.price-list-container {
    background-color: #fff;
    padding: 35px; /* More padding */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 6px solid var(--primary-color); /* Thicker border */
    font-size: 1.15em;
    line-height: 1.9;
    color: var(--text-dark);
}

.price-list-container h3 {
    color: var(--accent-color);
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Contact Form */
.contact-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* Increased gap */
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2em;
    color: var(--text-dark);
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-form {
    background-color: var(--bg-light); /* Form background light theme */
    padding: 50px; /* More padding */
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 750px; /* Wider form */
}

.form-group {
    margin-bottom: 30px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700; /* Bolder label */
    color: var(--text-dark);
    font-size: 1.1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px; /* More padding in inputs */
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1.05em;
    background-color: #fff;
    color: var(--text-dark);
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.25);
}

/* Footer */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 35px 0;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.25);
}

.main-footer p {
    margin: 0;
    font-size: 0.95em;
}

/* Loading Screen */
.loading-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 2.2em;
    z-index: 9999;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0; /* Start with hidden */
    transition: opacity 0.5s ease-out;
}

.loading-screen.active {
    display: flex;
    opacity: 1; /* Fade in */
}

.loading-screen .spinner {
    border: 12px solid rgba(255, 255, 255, 0.3);
    border-top: 12px solid var(--accent-color); /* Accent color for spinner */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1.5s linear infinite;
    margin-bottom: 35px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        padding-bottom: 10px;
    }
    .nav-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .nav-links li {
        margin: 0 12px 10px;
    }
    .navbar-brand {
        margin-bottom: 15px;
    }
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.3rem; }
    .content-flex {
        flex-direction: column;
        gap: 30px;
    }
    .content-flex.reverse {
        flex-direction: column;
    }
    .content-flex p, .content-flex .section-image {
        min-width: unset;
        width: 100%;
    }
    .section-image {
        margin-bottom: 20px; 
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .hero-content { padding: 15px; }
    .hero-content p { font-size: 1.1rem; }
    .hero-section, .page-hero { height: 450px; }
    .section { padding: 60px 0; }
    .contact-form { padding: 40px; }
}

@media (max-width: 576px) {
    .navbar-brand { font-size: 1.8em; }
    .nav-links li { margin: 0 8px 8px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .btn { padding: 10px 20px; font-size: 0.9em; }
    .section { padding: 40px 0; }
    .contact-form { padding: 25px; }
    .form-group label { font-size: 1em; }
    .form-group input, .form-group textarea { padding: 14px; font-size: 0.95em; }
}