/* --- General Styling & Variables --- */
:root {
    --primary-color: #00bcd4; /* A bright cyan */
    --secondary-color: #2c3e50; /* A dark slate blue */
    --background-color: #1e272e; /* A very dark grey */
    --text-color: #ecf0f1; /* A light grey/white */
    --card-bg-color: #2a3640;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* --- Reusable Components --- */
section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #0097a7;
    transform: translateY(-2px);
}

/* --- Header & Navigation --- */
header {
    background-color: var(--card-bg-color);
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* --- Hero Section --- */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 70px); /* Full screen height minus header */
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 10px 0;
}

.hero-content .location {
    font-size: 1rem;
    margin-bottom: 25px;
}

.hero-image {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.hero-image img {
    width: 100%;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.4);
}

/* --- About Section --- */
#about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* --- Services Section --- */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* --- Reviews Section --- */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--card-bg-color);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.rating {
    margin-bottom: 15px;
    color: #f39c12; /* Gold color for stars */
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 600;
    text-align: right;
}

/* --- Contact Section --- */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: var(--card-bg-color);
    padding: 40px;
    border-radius: 10px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.contact-info p i {
    color: var(--primary-color);
    margin-right: 10px;
}
.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info a:hover {
    color: var(--primary-color);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #555;
    background-color: #333;
    color: var(--text-color);
    border-radius: 5px;
    font-family: var(--font-family);
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--card-bg-color);
    margin-top: 40px;
}

/* --- Responsive Design for Mobile --- */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--card-bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease-in-out;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }

    #hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}