/* assets/css/style.css */

:root {
    --color-primary: #0EA5E9;
    --color-corporate: #00ADEF;
    --color-corporate-dark: #008dba;
    --color-bg-light: #FDFDFD;
    --color-bg-alt: #F8FAFC;
    --color-text-main: #0F172A;
    --color-text-muted: #64748B;
    --color-white: #ffffff;
    
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --border-radius-sm: 0.75rem;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2.5rem;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --container-max-width: 1280px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-corporate { color: var(--color-corporate); }
.text-muted { color: var(--color-text-muted); }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }

.bg-alt { background-color: var(--color-bg-alt); }

.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: var(--shadow-lg); }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn-primary, .btn-corporate {
    background-color: var(--color-corporate);
    color: var(--color-white);
}

.btn-primary:hover, .btn-corporate:hover {
    background-color: var(--color-corporate-dark);
    transform: translateY(-2px);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 3rem; font-size: 1.1rem; }

.btn-link {
    color: var(--color-corporate);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}
.btn-link:hover { opacity: 0.8; }

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-muted);
    transition: color 0.3s;
}
.icon-btn:hover { color: var(--color-corporate); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem; /* Inner padding of glass pill */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--color-corporate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon span { color: white; font-size: 1.2rem; }

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--color-text-main);
}
.logo-text span { color: var(--color-corporate); }

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
}
.nav-link:hover, .nav-link.active {
    color: var(--color-corporate);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu */
.hidden-mobile { display: block; }
.visible-mobile { display: none; }
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    justify-content: flex-end;
}
.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu-content {
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: white;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}
.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.close-menu { align-self: flex-end; }

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg, .hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 800px;
}
.hero-title {
    font-size: 3.5rem; /* Default for desktop */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Sections General */
.section {
    padding: 6rem 0;
}

/* About Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}
.about-img {
    border-radius: var(--border-radius-xl); /* Big round corners */
    box-shadow: var(--shadow-xl);
    border: 8px solid white;
    position: relative;
    z-index: 2;
}
.about-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E0F2FE; /* Sky 100 */
    border-radius: 50%;
    transform: scale(0.9) translate(-10px, -10px);
    z-index: 1;
}

.satisfaction-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}
.badge-icon {
    width: 3rem;
    height: 3rem;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.badge-text { display: flex; flex-direction: column; font-size: 0.8rem; line-height: 1.2;}
.badge-text strong { font-size: 1.2rem; }

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Services */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.card:hover .card-image img { transform: scale(1.1); }

.card-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-corporate);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.custom-icon-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lg-icon { font-size: 3rem; }
.bg-emerald-50 { background-color: #ecfdf5; }
.text-emerald-500 { color: #10b981; }
.bg-amber-50 { background-color: #fffbeb; }
.text-amber-500 { color: #f59e0b; }

.card-body { padding: 1.5rem; }
.card-body h4 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.card-body p { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.5; }

/* Partners */
.partners-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.5s;
}
.partners-flex:hover { opacity: 1; filter: grayscale(0%); }
.partner-logo { font-size: 1.5rem; font-weight: 700; color: #334155; }

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--color-bg-alt);
    border: 1px solid #f1f5f9;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}
.faq-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}
.faq-question { font-weight: 600; color: var(--color-text-main); }
.plus-icon { transition: transform 0.3s; }
.faq-item.active .plus-icon { transform: rotate(45deg); }

.support-avatar { width: 150px; height: 150px; margin: 1rem 0; border-radius: 50%; overflow: hidden; }

/* Activities */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.activity-card {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}
.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}
.activity-card:hover img { transform: scale(1.1); }
.activity-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}
.activity-overlay h4 { color: white; font-size: 1.5rem; }

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #f1f5f9;
    padding-top: 5rem;
    padding-bottom: 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}
.brand-col { max-width: 300px; }
.footer-col h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer-links li { margin-bottom: 0.75rem; color: var(--color-text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--color-corporate); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-links a {
    width: 36px; height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-text-muted);
}
.social-links a:hover { background: var(--color-corporate); color: white; border-color: var(--color-corporate); }

.newsletter-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: var(--color-bg-alt);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-legal { display: flex; gap: 2rem; }

/* Scroll Top */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--color-corporate);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
    z-index: 50;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { transform: translateY(-5px); }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: 2.5rem; }
    .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-wrapper { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .hidden-mobile { display: none; }
    .visible-mobile { display: block; }
    
    .navbar-container { padding: 0.5rem 1rem; }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 1rem; }
    
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }
}
