:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --bg-footer: #020617;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #f1f5f9;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-pink: #f43f5e;
    --accent-orange: #f97316;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Georgia', serif;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.4;
    overflow-x: hidden;
    font-weight: 300;
    font-size: 0.80rem;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h2 {
    font-family: var(--font-serif);
    font-weight: 600;
}

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

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

/* Navbar - FIXED FOR VISIBILITY */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: #0f172a !important;
    /* Solid dark background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff !important;
    letter-spacing: 0.5px;
}

.logo .bold {
    font-weight: 700;
}

.logo .light {
    font-weight: 200;
}

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

.nav-links a {
    color: #cbd5e1 !important;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ffffff !important;
}

.mobile-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero h1 span {
    color: #93c5fd;
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: white;
    color: var(--bg-dark);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #f8fafc;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* About Section - BOX DESIGN */
.about-section {
    padding: 50px 0;
    background: var(--bg-secondary);
}

.about-box {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--card-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.about-box h2 {
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin-bottom: 30px;
    text-align: center;
}

.about-box .lead {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.about-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Brands Section - White Cards on Light BG */
.brands-section {
    padding: 50px 0;
    background-color: var(--bg-secondary);
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin-bottom: 15px;
}

.section-header .subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.brand-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.brand-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.icon-pink {
    background: #fee2e2;
    color: var(--accent-pink);
}

.icon-green {
    background: #d1fae5;
    color: var(--accent-green);
}

.icon-orange {
    background: #ffedd5;
    color: var(--accent-orange);
}

.brand-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.brand-card .description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 40px;
    flex-grow: 1;
}

.card-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.card-footer .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.card-footer .focus {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Services Section - BOX DESIGN */
.services-section {
    padding: 50px 0;
    background: white;
}

.services-box {
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 60px;
    color: white;
}

.services-box h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-item p {
    color: #94a3b8;
    line-height: 1.8;
}

/* Global & Trust Section - BOX DESIGN */
.dark-section {
    background-color: var(--bg-dark);
    color: white;
    padding: 50px 0;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.text-blue {
    color: var(--accent-blue);
}

.text-green {
    color: var(--accent-green);
}

.info-box p {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.global-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.global-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dot-blue {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
}

.check-list li i {
    font-size: 1.2rem;
}

/* Contact Form Section */
.contact-section {
    padding: 50px 0;
    background: var(--bg-secondary);
}

.contact-box {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--card-shadow);
    max-width: 700px;
    margin: 0 auto;
}

.contact-box h2 {
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin-bottom: 15px;
    text-align: center;
}

.contact-box .subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--bg-footer);
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.brand-col p {
    color: #94a3b8;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--accent-blue);
}

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

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

.footer-links a {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: #64748b;
    font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-2-col,
    .footer-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .about-box,
    .contact-box,
    .services-box,
    .info-box {
        padding: 40px 30px;
    }
}

/* Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

/* CRITICAL NAVBAR FIX - Override everything */
nav.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background-color: #0f172a !important;
    z-index: 9999 !important;
    padding: 20px 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

nav.navbar .logo,
nav.navbar .logo i,
nav.navbar .nav-links a {
    color: #ffffff !important;
}

nav.navbar .logo i {
    color: #3b82f6 !important;
}

/* New About Section Design */
.about-section-new {
    background: white;
    padding: 50px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    color: var(--accent-blue);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.about-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.about-title .highlight {
    color: #64748b;
    font-style: italic;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-quote {
    border-left: 4px solid var(--accent-blue);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-primary);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* New Services Section Design */
.services-section-new {
    background: white;
    padding: 50px 0;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Footer Updates */
.footer-col .domain {
    margin-top: 15px;
}

.footer-col .domain a {
    color: var(--accent-blue);
    font-weight: 500;
}

.footer-col .domain a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Brand Name Styling */
.brand-name {
    display: inline;
}

.brand-eezy {
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
}

.brand-suffix {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    text-transform: lowercase;
}

/* Footer Brand Links */
.brand-link {
    display: inline;
}

.brand-link .brand-eezy {
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
}

.brand-link .brand-suffix {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    text-transform: lowercase;
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
}

.success-modal {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .success-modal {
    transform: scale(1);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    font-weight: bold;
}

.success-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.success-modal p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.modal-close-btn {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}