/* --- Variables --- */
:root {
    --primary: #0E76A8;       /* Deep Blue */
    --primary-light: #489BC4;
    --primary-dark: #095071;
    --secondary: #008080;     /* Teal */
    --secondary-light: #20B2AA;
    --accent: #E0F2F1;        /* Light Teal Accent */
    
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    
    --text-main: #1E293B;
    --text-secondary: #64748B;
    
    --border-color: #E2E8F0;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.bg-light { background-color: var(--bg-light); }
.bg-primary { background-color: var(--primary); }

/* --- Globals --- */
.section {
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.badge-light {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 40px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}
.btn-full {
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo img {
    height: 100px;
    object-fit: contain;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    margin: 5px 0;
    transition: var(--transition);
}

/* Mobile Nav */
.mobile-menu {
    position: fixed;
    top: 91px;
    left: 0;
    width: 100%;
    height: calc(100vh - 91px);
    background: #fff;
    z-index: 999;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.5rem;
}

/* --- Hero Section --- */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--accent) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--secondary-light);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Process Section --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-light);
}

.process-step {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 128, 128, 0.1); /* faded teal */
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.process-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.process-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    background: #fff;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: var(--secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question.active {
    color: var(--primary);
    background: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-secondary);
}

/* --- Testimonials --- */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.testimonial-card {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    color: #FCD34D;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.4;
}

.author {
    font-weight: 600;
    font-size: 1.1rem;
}

/* --- CTA Section --- */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* --- Contact Page Specific --- */
.contact-hero {
    background: linear-gradient(135deg, #095071 0%, #0E76A8 100%);
    color: #fff;
}
.contact-hero .hero-title, 
.contact-hero .hero-subtitle {
    color: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    margin-top: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.contact-detail-item h4 {
    margin-bottom: 5px;
    color: var(--text-main);
}
.contact-detail-item p,
.contact-detail-item a {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-detail-item a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 15px;
    text-align: center;
}

/* --- Footer --- */
.footer {
    background: var(--text-main);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 80px;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: #94A3B8;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: #94A3B8;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
    font-size: 0.9rem;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-contact {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .page-hero {
        padding: 140px 0 60px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}
