/* Import fonts to match business card style */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Base styles and CSS Reset */
:root {
    /* Business card inspired color palette */
    --primary-color: #7DD3C0; /* Light teal from logo */
    --secondary-color: #4A9B8E; /* Medium teal from logo */
    --accent-color: #2D5F5A; /* Dark teal from logo */
    --navy-dark: #1A1F2E; /* Dark navy from business card background */
    --card-navy: #2A2F3E; /* Slightly lighter navy for cards */
    --text-color: #1A1F2E; /* Navy for light backgrounds */
    --text-light: #ffffff; /* White text for dark backgrounds */
    --text-secondary: #B8BCC8; /* Muted text color */
    --light-gray: #f8f9fa; /* Light background */
    --gray: #6b7280;
    --white: #ffffff;
    --max-width: 1200px;
    --transition: all 0.3s ease;
    /* Gradient combinations */
    --teal-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --dark-gradient: linear-gradient(135deg, var(--navy-dark), var(--card-navy));
    --card-gradient: linear-gradient(145deg, var(--card-navy), var(--navy-dark));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--navy-dark);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography - Business card inspired */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    font-weight: 600;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Header and Navigation */
.header {
    background: rgba(26, 31, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(125, 211, 192, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo Integration */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

    .logo-container img {
        height: 80px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

    .logo-text:hover {
        color: var(--primary-color);
    }

/* Legacy logo class for backwards compatibility */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

    .logo:hover {
        color: var(--primary-color);
    }

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

    .nav-links a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--teal-gradient);
            transition: width 0.3s ease;
        }

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

/* Hero Section - Business card inspired */
.hero {
    background: var(--dark-gradient);
    color: var(--text-light);
    padding: 10rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(125, 211, 192, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(74, 155, 142, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero h1 {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: var(--teal-gradient);
    color: var(--navy-dark);
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(125, 211, 192, 0.3);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 35px rgba(125, 211, 192, 0.4);
    }

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--navy-dark);
}

    .services h2 {
        color: var(--text-light);
        text-align: center;
        margin-bottom: 4rem;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-gradient);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(125, 211, 192, 0.1);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--teal-gradient);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 45px rgba(125, 211, 192, 0.15);
        border-color: rgba(125, 211, 192, 0.3);
    }

    .service-card h3 {
        color: var(--primary-color);
        margin-bottom: 1.5rem;
    }

    .service-card p {
        color: var(--text-secondary);
        line-height: 1.7;
    }

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--card-navy) 0%, var(--navy-dark) 100%);
}

    .about h2 {
        color: var(--text-light);
        text-align: center;
        margin-bottom: 4rem;
    }

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--navy-dark);
    color: var(--text-light);
}

    .contact h2 {
        color: var(--text-light);
        text-align: center;
        margin-bottom: 4rem;
    }

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.8rem;
        font-weight: 500;
        color: var(--text-light);
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 2px solid rgba(125, 211, 192, 0.3);
        border-radius: 10px;
        font-family: inherit;
        background-color: rgba(42, 47, 62, 0.8);
        color: var(--text-light);
        transition: var(--transition);
        font-size: 1rem;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(125, 211, 192, 0.2);
            background-color: rgba(42, 47, 62, 1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-secondary);
        }

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

.submit-button {
    background: var(--teal-gradient);
    color: var(--navy-dark);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(125, 211, 192, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

    .submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 35px rgba(125, 211, 192, 0.4);
    }

.contact-info {
    padding: 2.5rem;
    background: var(--card-gradient);
    border-radius: 15px;
    border: 1px solid rgba(125, 211, 192, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

    .contact-info h3 {
        color: var(--primary-color);
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }

    .contact-info p {
        margin-bottom: 1.2rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }

/* Footer */
.footer {
    background-color: var(--navy-dark);
    color: var(--text-light);
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(125, 211, 192, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.8rem;
    flex: 1;
}

    .footer-logo p {
        margin-top: 1rem;
        color: var(--text-secondary);
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        font-size: 1rem;
    }

/* Footer Logo Center Styling */
.footer-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

    .footer-logo-center img {
        height: 120px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        opacity: 0.9;
        transition: var(--transition);
    }

        .footer-logo-center img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

.footer-links {
    flex: 1;
    text-align: right;
}

    .footer-links ul {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--primary-color);
        }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(125, 211, 192, 0.1);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .logo-container img {
        height: 35px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        text-align: center;
    }

        .footer-links ul {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

    .footer-logo-center img {
        height: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 8rem 0 6rem;
    }

    .services,
    .about,
    .contact {
        padding: 6rem 0;
    }

    .logo-container img {
        height: 30px;
    }

    .footer-logo-center img {
        height: 40px;
    }
}
