:root {
    --primary-blue: #0a2b4e;
    --primary-electric: #1e4b8f;
    --primary-orange: #f97316;
    --accent-glow: #ffedd5;
    --dark-bg: #020617;
    --glass-bg: rgba(255, 255, 255, 0.92);
    --text-dark: #1e293b;
    --text-soft: #334155;
    --text-light: #f8fafc;
    --bg-light: #f1f5f9;
    --border-glow: rgba(249, 115, 22, 0.3);
    --shadow-sm: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.full-width {
    max-width: 800px;
    margin: 0 auto;
}

/* Badges - 90° corners */
.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(249, 115, 22, 0.05));
    color: var(--primary-orange);
    border-radius: 0px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
    backdrop-filter: blur(2px);
}

.white-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

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

.logo {
    height: 44px;
    width: auto;
    transition: transform 0.2s ease;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-accent {
    font-weight: 800;
    color: var(--primary-orange);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 26px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 0px;
    transition: all 0.3s;
}

/* Buttons - 90° corners */
.btn {
    padding: 0.7rem 1.8rem;
    border-radius: 0px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(105deg, var(--primary-orange), #fd7e2e);
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
    border: 1.5px solid var(--primary-electric);
    color: var(--primary-electric);
    background: white;
}

.btn-secondary:hover {
    background: var(--primary-electric);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    /* Dark overlay + custom background image from assets folder */
    background: linear-gradient(rgba(10, 43, 78, 0.85), rgba(2, 6, 23, 0.92)), url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(249, 115, 22, 0.2);
    filter: blur(40px);
    animation: float 12s infinite alternate;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: -50px;
    animation-duration: 8s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 40%;
    animation-duration: 14s;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); opacity: 0.4; }
    100% { transform: translateY(-40px) translateX(30px); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1.2rem;
    border-radius: 0px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316, #ffb347);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About - 90° corners */
.about {
    padding: 5rem 0;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.about-stats {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 0px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.2s;
    border-left: 4px solid var(--primary-orange);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    display: inline-block;
}

/* Benefits - 90° corners */
.benefits {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-blue);
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 0px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(249,115,22,0.2);
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}

.benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

/* Features - 90° corners */
.features {
    padding: 5rem 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.feature-image {
    flex: 1;
    border-radius: 0px;
    overflow: hidden;
    transition: transform 0.4s;
}

.feature-image img {
    width: 100%;
    display: block;
}

.feature-image:hover {
    transform: scale(1.02);
}

.text-center-feature {
    justify-content: center;
}

/* Contact - 90° corners */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: flex;
    gap: 2rem;
    background: white;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    padding: 3rem;
    background: linear-gradient(145deg, var(--primary-blue), #0f3b66);
    color: white;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin: 1rem 0;
}

.info-items {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.info-item .icon {
    font-size: 1.8rem;
}

.contact-form {
    flex: 1.5;
    padding: 3rem;
}

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

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

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0px;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

/* Footer - 90° corners */
footer {
    background: var(--dark-bg);
    color: #94a3b8;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.logo-footer {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}


/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }


/* WhatsApp Float Button with Custom Image */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.08) rotate(5deg);
    background: #1ebc59;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

/* Alternative if you want the button without green background (just the image) */
.whatsapp-float.image-only {
    background: transparent;
    box-shadow: none;
    width: 60px;
    height: 60px;
}

.whatsapp-float.image-only:hover {
    transform: scale(1.08);
    background: transparent;
    box-shadow: none;
}

.whatsapp-float.image-only img {
    width: 60px;
    height: 60px;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s;
        z-index: -1;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        z-index: 999;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .feature-row, 
    .feature-row.reverse {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Small desktop adjustments */
@media (max-width: 992px) {
    .feature-row {
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}