:root {
    --primary: #003a8c;
    --primary-light: #1890ff;
    --secondary: #001529;
    --accent: #52c41a;
    --text-main: #262626;
    --text-muted: #595959;
    --white: #ffffff;
    --bg-light: #f5f7fa;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 58, 140, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

.section {
    padding: 6rem 0;
}

.grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    color: var(--secondary);
}

h2.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-light);
    margin-top: 10px;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 144, 255, 0.4);
}

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

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

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

header.scrolled .logo-text {
    color: var(--primary);
}

header.scrolled .logo-subtext {
    color: var(--secondary);
}

header.scrolled .nav-links a {
    color: var(--secondary);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo a {
    text-decoration: none;
}

.logo-img {
    height: 180px;
    width: auto;
    display: block;
    transition: var(--transition);
    margin: -45px 0;
}

.logo-dark {
    display: none;
}

header.scrolled .logo-light {
    display: none;
}

header.scrolled .logo-dark {
    display: block;
    height: 110px;
    margin: -25px 0;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--secondary);
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(0, 21, 41, 0.9) 0%, rgba(0, 58, 140, 0.7) 100%), 
                      url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=2072');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text-wrapper {
    max-width: 700px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(24, 144, 255, 0.2);
    border: 1px solid rgba(24, 144, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--primary-light);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-light);
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Services */
.services {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(24, 144, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

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

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

/* Partners */
.partners {
    padding: 4rem 0;
    text-align: center;
    background: var(--secondary);
    color: var(--white);
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    opacity: 0.6;
}

.partner {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Contact */
.contact-info {
    padding-right: 2rem;
}

.info-list {
    margin-top: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    color: var(--primary);
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Trust Info Section */
.trust-info {
    background-color: var(--white);
}

.trust-list {
    list-style: none;
    margin-top: 2rem;
}

.trust-list li {
    margin-bottom: 1.2rem;
    display: flex;
    gap: 1rem;
    font-size: 1.05rem;
}

.trust-list .blue-icon {
    flex-shrink: 0;
    color: var(--primary-light);
}

.mini-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.mini-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.mini-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    padding: 1.5rem 0;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

/* Legal Pages Styling */
.legal-page header {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    margin-top: 5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--secondary);
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.last-updated {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 58, 140, 0.2);
    aspect-ratio: 4/3;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.75rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        color: var(--white);
        font-size: 1.5rem;
    }

    header.scrolled .menu-toggle {
        color: var(--secondary);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 1001;
    }

    .nav-links.active a {
        display: block;
        color: var(--white) !important;
        font-size: 1.1rem;
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

.wa-contact-link {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.wa-contact-link:hover {
    color: var(--primary-light);
}

.wa-icon-inline {
    width: 18px;
    height: 18px;
    color: #25d366;
}

/* Scroll Reveal Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-show {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal states for specific elements */
.about-image.reveal-hidden {
    transform: translateX(-30px);
}

.about-text.reveal-hidden {
    transform: translateX(30px);
}

.about-image.reveal-show, .about-text.reveal-show {
    transform: translateX(0);
}
