/* Contemporary Riverfront Style */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:wght@400;600&display=swap');

:root {
    --soft-white: #f7faf9;
    --light-stone: #dfe7e5;
    --deep-teal: #1f5f6b;
    --slate-blue: #4f6d7a;
    --charcoal-text: #111827;
    --radius: 18px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--soft-white);
    color: var(--charcoal-text);
    line-height: 1.8;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

/* Header */
header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-teal);
    text-decoration: none;
    letter-spacing: 1px;
}

nav a {
    text-decoration: none;
    color: var(--slate-blue);
    margin-left: 30px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--deep-teal);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(31, 95, 107, 0.6), rgba(17, 24, 39, 0.4));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-phone {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: white;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--deep-teal);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--deep-teal);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-curve svg {
    display: block;
    width: 100%;
    height: 60px;
    fill: var(--soft-white);
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 120px 0;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--deep-teal);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-stone);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--soft-white), transparent);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--deep-teal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    color: var(--deep-teal);
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-us {
    padding: 120px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    gap: 20px;
    align-items: center;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Portfolio Gallery */
.portfolio {
    padding: 100px 0;
}

.masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.masonry-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

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

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--light-stone);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    border-left: 5px solid var(--deep-teal);
}

/* Contact Section */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding: 120px 0;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--deep-teal);
}

.contact-form {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

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

input, textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--deep-teal);
}

#form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--deep-teal);
    color: white;
    border-radius: var(--radius);
}

/* Map */
.map {
    width: 100%;
    height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 120px;
}

/* Footer */
footer {
    background: var(--deep-teal);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--light-stone);
}

.footer-col p, .footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.5rem; }
    .about, .why-grid, .contact, .footer-grid, .masonry { grid-template-columns: 1fr; }
}
