/* Reset & Global Styles - Inspired by Monzi */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); /* Modern Font like Monzi */

:root {
    --navy-blue: #003366;
    --accent-orange: #ff4500;
    --light-gray: #f8f9fa; /* Lighter gray for backgrounds */
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-color: #212529;
    --white: #ffffff;
    --gradient-button: linear-gradient(90deg, #ff4500 0%, #ff6347 100%); /* Example gradient */
    --gradient-button-hover: linear-gradient(90deg, #e03e00 0%, #ff4500 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1180px; /* Wider container */
    margin: 0 auto;
}

h1, h2, h3 {
    color: var(--navy-blue);
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--navy-blue);
}

/* Header - Minimalist & Sticky */
header {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
    padding: 1rem 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

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

.logo {
    height: 70px; /* Increased logo size by 40% from 50px */
    width: auto;
}

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

nav ul li {
    margin-left: 2.5rem; /* More spacing */
}

nav ul li a {
    color: var(--navy-blue);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--navy-blue); /* Keep navy, rely on underline */
}

/* Buttons - Gradient Style */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-button);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.2);
}

.btn-primary:hover {
    background: var(--gradient-button-hover);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.3);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--medium-gray);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    border-color: var(--dark-gray);
    color: var(--navy-blue);
}

/* Hero Section - Dynamic & Clean */
.hero {
    background-color: var(--white);
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.hero h1 {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    margin: 0 0.5rem;
}

/* Sections General Styling */
section {
    padding: 5rem 0;
    overflow: hidden; /* For animations */
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-gray);
    font-size: 1.05rem;
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-grid .placeholder-image {
    border-radius: 12px;
    background-color: var(--medium-gray);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
}

/* Services Section - Modern Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* About Page */
.about-content ul {
    list-style: none;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.about-content ul li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.about-content ul li::before { 
    content: '\2714'; /* Checkmark */
    color: var(--accent-orange);
    position: absolute; 
    left: 0; 
    font-size: 1.1em;
    font-weight: bold;
} 

/* Contact Page - Clean Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: flex-start;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--medium-gray);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.contact-info a {
    font-weight: 500;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--navy-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .btn-primary {
    width: 100%;
}

/* Footer - Simple & Clean */
footer {
    background-color: var(--navy-blue);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations - Subtle Fade-in on Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Placeholder Image */
.placeholder-image {
    border-radius: 12px;
    background-color: var(--medium-gray);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .intro-grid .placeholder-image {
        order: -1; /* Move image above text on mobile */
        height: 300px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: clamp(2rem, 6vw, 2.8rem); }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
    h3 { font-size: clamp(1.1rem, 4vw, 1.3rem); }

    section {
        padding: 4rem 0;
    }

    header {
        padding: 0.8rem 0;
    }
    header .container {
        flex-direction: column;
    }
    .logo {
        margin-bottom: 0.8rem;
    }
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem 1.5rem;
    }
    nav ul li {
        margin-left: 0;
    }
    .hero {
        padding: 4rem 0;
    }
    .hero .btn {
        display: block;
        margin: 1rem auto 0 auto;
        max-width: 250px;
    }
}



/* Language Switcher Styles */
.language-switch {
    margin-left: 15px;
    font-size: 0.9em;
}

.language-switch a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.language-switch a:hover {
    color: var(--accent-orange);
}

.current-lang {
    font-weight: bold;
    color: var(--accent-orange);
}

/* Responsive adjustments for language switcher */
@media (max-width: 768px) {
    .language-switch {
        margin-top: 10px;
        margin-left: 0;
    }
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust as needed */
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--medium-gray); /* Placeholder background */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container, might crop */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

