/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Variables - Premium Modern Theme */
:root {
    --primary-color: #17365c; /* navy from logo */
    --primary-light: #254d80;
    --primary-dark: #0f243c;
    --secondary-color: #438241; /* green from logo */
    --secondary-light: #52a14f;
    --accent-color: #f5b027;
    
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-inverse: #ffffff;
    
    --bg-color: #f8fafc;
    --surface-color: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.95);
    
    --border-color: #e2e8f0;
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glass: 0 15px 35px rgba(23, 54, 92, 0.15);
    
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* Base Typo */
h1, h2, h3, h4 { color: var(--primary-color); font-weight: 700; line-height: 1.2; }
h2 { font-size: 2.5rem; margin-bottom: 20px; }
p { color: var(--text-secondary); }

.sub-heading {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseBlob {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.6; }
}

.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky; top: 0; z-index: 100;
}

.header-container {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; min-height: 90px;
}

.logo-img { height: 110px; width: auto; object-fit: contain; }

.contact-info { display: flex; align-items: center; gap: 24px; }

.phone-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; color: var(--primary-color);
    text-decoration: none; font-size: 1.1rem;
    transition: var(--transition);
}
.phone-link:hover { color: var(--secondary-color); }
.phone-icon { color: var(--secondary-color); }

.header-btn { display: inline-block; }

/* Buttons */
.btn {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 12px 28px; font-weight: 600; font-family: 'Outfit';
    font-size: 1.05rem; border: none; border-radius: var(--border-radius-sm);
    cursor: pointer; text-decoration: none; transition: var(--transition);
}

.btn-primary {
    background-color: var(--secondary-color); color: var(--text-inverse);
    box-shadow: 0 4px 14px rgba(67, 130, 65, 0.3);
}
.btn-primary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(67, 130, 65, 0.4);
}

.btn-secondary {
    background-color: var(--primary-color); color: var(--text-inverse);
}
.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(23, 54, 92, 0.3);
}

.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1.15rem; }

/* Hero Section */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 100px 0 0;
    color: var(--text-inverse);
}

.hero-bg-gradients {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none;
}

.blob {
    position: absolute; filter: blur(80px); border-radius: 50%;
    animation: pulseBlob 8s infinite alternate;
}
.blob-1 {
    top: -100px; right: -100px; width: 500px; height: 500px;
    background: rgba(67, 130, 65, 0.4);
}
.blob-2 {
    bottom: 20%; left: -100px; width: 400px; height: 400px;
    background: rgba(245, 176, 39, 0.2); animation-delay: -4s;
}

.hero-container {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 60px; position: relative; z-index: 2;
}

.hero-content { flex: 1; padding-top: 20px; }

.badge {
    display: inline-block; background: rgba(255,255,255,0.1);
    color: var(--accent-color); padding: 6px 16px; border-radius: 20px;
    font-size: 0.9rem; font-weight: 600; margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-content h1 {
    font-size: 3.5rem; color: var(--text-inverse); margin-bottom: 24px;
    line-height: 1.15; letter-spacing: -1px;
}

.hero-content .subtitle {
    font-size: 1.25rem; color: rgba(255,255,255,0.85);
    margin-bottom: 40px; max-width: 500px; line-height: 1.5;
}

.features-list { display: flex; flex-direction: column; gap: 20px; }

.feature-card {
    display: flex; align-items: flex-start; gap: 16px;
    background: rgba(255,255,255,0.06); padding: 18px;
    border-radius: var(--border-radius); border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.feature-icon {
    font-size: 1.8rem; background: rgba(255,255,255,0.15);
    width: 45px; height: 45px; display: flex; align-items: center;
    justify-content: center; border-radius: 12px;
}

.feature-text strong {
    display: block; font-size: 1.15rem; color: var(--text-inverse);
    margin-bottom: 4px; border-left: none;
}
.feature-text p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.95rem; }

/* Booking Widget */
.booking-widget {
    background: var(--surface-glass); color: var(--text-primary);
    padding: 35px; border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-glass); width: 100%; max-width: 450px;
    backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.5);
    transform: translateY(20px); z-index: 10;
}

.widget-header { text-align: center; margin-bottom: 24px; }
.widget-header h2 { font-size: 1.8rem; margin-bottom: 6px; }
.widget-header p { font-size: 0.95rem; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }

.form-group label {
    display: block; font-size: 0.9rem; font-weight: 600;
    margin-bottom: 8px; color: var(--primary-color);
}

.modern-input {
    width: 100%; padding: 14px 16px; border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-sm); font-family: inherit;
    font-size: 1rem; color: var(--text-primary); transition: var(--transition);
    background-color: #f8fafc;
}
.modern-input:focus {
    outline: none; border-color: var(--secondary-color);
    background-color: var(--surface-color);
    box-shadow: 0 0 0 4px rgba(67, 130, 65, 0.1);
}

.file-upload-label {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px; background-color: #f1f5f9; border: 2px dashed #cbd5e1;
    border-radius: var(--border-radius-sm); cursor: pointer;
    font-size: 0.95rem; font-weight: 500; color: var(--text-secondary);
    transition: var(--transition); text-align: center;
}
.file-upload-label:hover {
    background-color: #e2e8f0; border-color: var(--primary-color); color: var(--primary-color);
}

.success-message {
    margin-top: 16px; padding: 14px; background-color: #ecfdf5;
    color: #059669; border: 1px solid #a7f3d0; border-radius: var(--border-radius-sm);
    display: flex; align-items: center; gap: 10px; font-weight: 500;
}
.success-icon {
    background: #059669; color: white; width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: 0.8rem;
}
.hide { display: none !important; }

/* Wave */
.wave-bottom { display: block; margin-top: -50px; z-index: 1; position: relative; }

/* Services Steps */
.services-info { padding: 60px 0 100px; background: var(--bg-color); }

.steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    margin-top: 50px;
}
.step-card {
    background: var(--surface-color); padding: 40px 30px;
    border-radius: var(--border-radius); box-shadow: var(--shadow-sm);
    text-align: center; transition: var(--transition);
    border: 1px solid var(--border-color);
}
.step-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }

.step-icon {
    width: 60px; height: 60px; background: var(--secondary-color);
    color: var(--text-inverse); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 1.5rem;
    font-weight: 800; margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(67, 130, 65, 0.2);
}

.step-card h3 { margin-bottom: 12px; font-size: 1.4rem; }

/* Forms Section */
.forms-section {
    padding: 100px 0; background: var(--primary-color);
    position: relative;
}
.forms-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05); padding: 40px;
    border-radius: var(--border-radius-lg); border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px); color: var(--text-inverse);
}
.glass-card .card-header p { color: rgba(255,255,255,0.7); }
.glass-card h2 { color: var(--text-inverse); margin-bottom: 5px; }
.glass-card label { color: var(--text-inverse); }
.glass-card .modern-input { background: rgba(255,255,255,0.9); border-color: transparent; }
.glass-card .modern-input:focus { background: #fff; }

/* FAQ Accordion */
.faq { padding: 100px 0; background: var(--surface-color); }
.faq-list { max-width: 800px; margin: 50px auto 0; }
.faq-item {
    background: var(--surface-color); border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm); margin-bottom: 16px;
    overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item summary {
    padding: 20px 24px; font-weight: 600; font-size: 1.1rem;
    color: var(--primary-color); cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.5rem; color: var(--secondary-color);
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-content {
    padding: 0 24px 24px; border-top: 1px solid transparent;
}

/* Bio Section */
.bio { padding: 80px 0; background: var(--bg-color); border-top: 1px solid var(--border-color); }
.bio-card {
    background: var(--surface-color); padding: 50px; border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm); position: relative;
    border: 1px solid var(--border-color);
}
.bio-avatar {
    width: 80px; height: 80px; background: var(--primary-color);
    color: white; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 2rem; font-weight: 800;
    margin: -90px auto 30px; border: 6px solid var(--surface-color);
    box-shadow: var(--shadow-sm);
}
.bio-quote { font-size: 1.3rem; font-style: italic; color: var(--text-primary); margin-bottom: 24px; }
.bio-author { font-weight: 700; color: var(--primary-color); font-size: 1.1rem; }
.bio-author span { color: var(--text-secondary); font-weight: 400; }

/* Footer */
footer { background: var(--primary-dark); color: var(--text-inverse); padding: 80px 0 0; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 60px; }
.footer-logo-img { height: 100px; background: white; padding: 10px 20px; border-radius: var(--border-radius-sm); object-fit: contain; }
.footer-contact { display: flex; gap: 60px; }
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 1.2rem; }
.footer-col p { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.footer-col a:hover { color: var(--secondary-color); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; text-align: center; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; align-items: center; text-align: center; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content .subtitle { margin: 0 auto 40px; }
    .feature-card { text-align: left; }
    .booking-widget { transform: translateY(0); }
}

@media (max-width: 768px) {
    .header-container { flex-direction: column; height: auto; gap: 15px; }
    .contact-info { width: 100%; justify-content: space-between; }
    .header-btn { display: none; }
    .steps-grid, .forms-grid { grid-template-columns: 1fr; }
    .footer-container { flex-direction: column; text-align: center; }
    .footer-contact { flex-direction: column; gap: 30px; width: 100%; align-items: center; }
    .hero-content h1 { font-size: 2.3rem; }
    .bio-card { padding: 40px 20px; }
}
