/* Variables & Reset */
:root {
    --bg-color: #001F3F;
    /* Navy Blue */
    --bg-color-light: #002b55;
    /* Slightly lighter navy for cards */
    --text-color: #F0F0F0;
    /* Off-white */
    --accent-color: #D4AF37;
    /* Gold */
    --accent-hover: #b5932a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    width: 100%;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn-outline {
    border: 1px solid var(--text-color);
    color: var(--text-color);
    margin-top: 2rem;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 31, 63, 0.75), rgba(0, 31, 63, 0.9)), url('../assets/images/Copia_de_logoTheOhmsWay.svg') center center no-repeat #FFFFFF;
    /* Fallback/Overlay */
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 50%;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    /* White text on dark bg for contrast */
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Philosophy Section */
.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.philosophy-text h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.pillars {
    margin-top: 2rem;
}

.pillar {
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
}

.pillar h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.team-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.caption {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
    opacity: 0.7;
}

/* Services Section */
.services {
    background-color: var(--bg-color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-color);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item .icon {
    font-size: 1.5rem;
    margin-right: 20px;
    color: var(--accent-color);
}

.gold-link {
    color: var(--accent-color);
    font-weight: 600;
}

.feedback-box {
    background: var(--bg-color-light);
    padding: 30px;
    border-radius: 4px;
}

.simple-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.simple-form input,
.simple-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    color: var(--text-color);
    font-family: var(--font-body);
    border-radius: 2px;
}

.simple-form input:focus,
.simple-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.simple-form textarea {
    height: 120px;
    resize: vertical;
}

.hidden {
    display: none;
}

#form-message {
    margin-top: 15px;
    color: var(--accent-color);
    text-align: center;
    font-weight: 600;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .philosophy-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        /* Simple mobile hide for now */
    }

    .navbar .container {
        justify-content: center;
    }
}