/* Baracuna Website Styles */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

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

/* Navigation */
.navbar {
    background-color: #16233b;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #4db6d0;
}

.cta-button {
    background-color: #4db6d0;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #3a9bb5;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #16233b 0%, #233555 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background-color: #4db6d0;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #3a9bb5;
}

/* Page Headers */
.page-header {
    background-color: #f3f4f6;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

.intro {
    background-color: white;
    text-align: center;
}

.intro .lead {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.services-overview {
    background-color: #f9fafb;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

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

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    color: #16233b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Stats Section */
.results {
    background-color: white;
}

.results h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: #4db6d0;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
}

/* Services Detail Page */
.services-detail {
    background-color: white;
}

.service-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.service-section:last-child {
    border-bottom: none;
}

.service-section h2 {
    color: #16233b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-section h3 {
    color: #374151;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-section ul {
    list-style-position: inside;
    margin-left: 1rem;
    margin-bottom: 1.5rem;
}

.service-section li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.differentiator {
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

/* Expertise Page */
.expertise-detail {
    background-color: white;
}

.expertise-section {
    margin-bottom: 3rem;
}

.expertise-section h3 {
    color: #16233b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Page */
.about-content {
    background-color: white;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    color: #111827;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-section ol {
    list-style-position: inside;
    margin-left: 1rem;
}

.about-section li {
    margin-bottom: 1rem;
}

.team-member {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.team-member h3 {
    color: #16233b;
    margin-bottom: 0.5rem;
}

.company-info {
    background-color: #f3f4f6;
    padding: 2rem;
    border-radius: 8px;
}

.company-info p {
    margin-bottom: 0.5rem;
}

.company-info .address {
    margin: 1rem 0;
}

/* Contact Section */
.contact {
    background-color: #f3f4f6;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.contact > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #6b7280;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
}

.contact-item h4 {
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #4db6d0;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4db6d0;
    box-shadow: 0 0 0 3px rgba(77, 182, 208, 0.1);
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background-color: #16233b;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.125rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .services-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
}
/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

/* Desktop styles - make sure nav is visible on desktop */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #16233b;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.5rem;
    }
    
    .cta-button {
        margin: 0.5rem;
    }
}