/* ==================================================
   © 2025 BetterLife Consulting | All rights reserved
   Cybersecurity & Digital Investigation: Protecting Your Digital Assets Worldwide
   Protect What Matters Most & Live Better.
   Complete CSS with Premium Color Scheme.
   ================================================== */
   
/* ==================================================
   Complete CSS with Premium Color Scheme & Improvements
   ================================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ===== COLOR VARIABLES ===== */
:root {
    /* Cybersecurity Elite Palette */
    --primary-teal: #005A7D;      /* Your chosen deep teal */
    --security-red: #E11D48;      /* Alerts & warnings */
    --electric-cyan: #22D3EE;     /* Tech highlights & links */
    --premium-violet: #8B5CF6;    /* Premium features */
    --foundation-dark: #111827;   /* Dark backgrounds */
    --foundation-light: #F9FAFB;  /* Light backgrounds */
    
    /* Supporting colors */
    --text-primary: #FFFFFF;
    --text-secondary: #E5E7EB;
    --text-muted: #9CA3AF;
    --text-dark: #1F2937;
    --accent-bg: #0A0F1C;        /* Slightly lighter dark */
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background: var(--foundation-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #005A7D;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    /* Add cyan border line at bottom */
    border-bottom: 2px solid rgba(34, 211, 238, 0.4);
    box-shadow: 0 2px 10px rgba(0, 90, 125, 0.3);
}

.nav-container {
    max-width: none;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo img {
    height: clamp(50px, 4.0vw, 100px);
    width: auto;
}

.nav-menu {
    font-size: 1.1rem;
    display: flex;
    list-style: none;
    gap: 3.5rem;
    
    /* ORBITRON CYBERSECURITY STYLING */
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.nav-menu a {
    color: #E5E7EB;
    text-decoration: none;
    font-weight: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--electric-cyan);
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
    color: white;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(34, 211, 238, 0.4);
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 1.0rem;
    
    /* ORBITRON STYLING */
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 1.2px;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px rgba(34, 211, 238, 0.4),
        0 0 40px rgba(0, 90, 125, 0.3),
        0 0 60px rgba(34, 211, 238, 0.2),
        0 8px 25px rgba(0, 90, 125, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.cta-short { 
    display: none; 
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(0, 90, 125, 0.8), rgba(139, 92, 246, 0.7), rgba(34, 211, 238, 0.6)),
        url('https://mcdn.wallpapersafari.com/medium/49/54/QLuE7S.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 2rem auto 0 7rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 3;
}

.hero-content {
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 90, 125, 0.3);
    max-width: 730px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== ENHANCED BUTTON STYLES ===== */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
    color: white;
    padding: 0.7rem 4rem;
    border: 1px solid rgba(34, 211, 238, 0.4);
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1.0rem;
    
    /* ORBITRON STYLING */
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 1.2px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px rgba(34, 211, 238, 0.4),
        0 0 40px rgba(0, 90, 125, 0.3),
        0 0 60px rgba(34, 211, 238, 0.2),
        0 8px 25px rgba(0, 90, 125, 0.4);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--electric-cyan);
    padding: 0.7rem 3rem;
    border: 2px solid var(--electric-cyan);
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 1.0rem;
    
    /* ORBITRON STYLING */
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 1.2px;
}

.btn-secondary:hover {
    background: var(--electric-cyan);
    color: var(--foundation-dark);
    box-shadow: 
        0 0 20px rgba(34, 211, 238, 0.4),
        0 0 40px rgba(0, 90, 125, 0.3),
        0 8px 25px rgba(0, 90, 125, 0.4);
    transform: translateY(-2px);
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 4rem 2rem;
    background: var(--foundation-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 1rem;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 2rem;
    background: var(--accent-bg);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    background: url('https://wallpapercave.com/wp/wp2691477.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    border: 2px solid rgba(0, 90, 125, 0.4);
    transition: all 1.0s ease;
    cursor: pointer;
    opacity: 1.0;
}

.about-image:hover {
    transform: scale(1.05);
    border-color: rgba(0, 90, 125, 0.8);
    box-shadow: 0 10px 30px rgba(0, 90, 125, 0.3);
}

.about-content {
    color: var(--text-primary);
}

.about-badge {
    background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
    color: white;
    padding: 0.5rem 6rem;
    border-radius: 3px;
    font-size: 1.0rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    
    /* ORBITRON STYLING */
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 1.2px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.about-features li::before {
    content: '✓';
    color: var(--electric-cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 2rem;
    background: var(--foundation-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
    color: white;
    padding: 0.5rem 6rem;
    border-radius: 3px;
    font-size: 1.0rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    
    /* ORBITRON STYLING */
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 1.2px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--accent-bg);
    border: 1px solid rgba(0, 90, 125, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 90, 125, 0.05), rgba(34, 211, 238, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 90, 125, 0.5);
    box-shadow: 0 20px 40px rgba(0, 90, 125, 0.2);
}

/* ===== CLICKABLE SERVICE IMAGES ===== */
.service-image {
    --overlay-intensity: 0.4;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 1.0s ease;
    background-image: linear-gradient(45deg, rgba(0, 90, 125, 0.3), rgba(34, 211, 238, 0.3));
    cursor: pointer; /* Make it clear it's clickable */
}

.service-image:hover {
    transform: scale(1.02);
    border-radius: 8px;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 90, 125, var(--overlay-intensity, 0.4)), 
        rgba(34, 211, 238, var(--overlay-intensity, 0.4))
    );
    border-radius: 8px;
    z-index: 1;
    transition: all 1.0s ease;
}

.service-image:hover::before {
    background: linear-gradient(
        135deg, 
        rgba(225, 29, 72, 0.6),
        rgba(139, 92, 246, 0.6)
    );
}

/* Service Image Backgrounds */
.service-image.financial-crime { background-image: url('https://wallpapercave.com/wp/wp6781566.jpg'); }
.service-image.digital-forensics { background-image: url('https://wallpapercave.com/wp/wp6781505.jpg'); }
.service-image.osint { background-image: url('https://wallpapercave.com/wp/wp2691422.jpg'); }
.service-image.data-removal { background-image: url('https://wallpapercave.com/wp/wp2691519.jpg'); }
.service-image.identity-theft { background-image: url('https://wallpapercave.com/wp/wp6781166.jpg'); }
.service-image.elder-fraud { background-image: url('https://wallpapercave.com/wp/wp2691425.jpg'); }
.service-image.social-media { background-image: url('https://wallpapercave.com/wp/wp1912997.jpg'); }
.service-image.email-security { background-image: url('https://mcdn.wallpapersafari.com/medium/94/21/DwBsoY.png'); }
.service-image.phishing-training { background-image: url('https://wallpapercave.com/wp/wp14895444.webp'); }
.service-image.computer-security { background-image: url('https://wallpapercave.com/wp/wp2691585.jpg'); }
.service-image.incident-response { background-image: url('https://wallpapercave.com/wp/wp6781361.jpg'); }
.service-image.software-setup { background-image: url('https://wallpapercave.com/wp/wp1867872.jpg'); }
.service-image.insurance-fraud { background-image: url('https://globaltraining.unic.ac.cy/wp-content/uploads/2022/02/shutterstock_1254546673-scaled.jpeg'); }
.service-image.reputation-management { background-image: url('https://wallpapercave.com/wp/wp1912987.jpg'); }
.service-image.cybersecurity-training { background-image: url('https://wallpapercave.com/wp/wp12320891.jpg'); }

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--electric-cyan);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.service-link:hover {
    color: var(--premium-violet);
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: 
        linear-gradient(rgba(17, 24, 39, 0.9), rgba(10, 15, 28, 0.9)),
        url('https://mcdn.wallpapersafari.com/medium/72/4/IJhNWg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid rgba(0, 90, 125, 0.3);
    border-radius: 20px;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    background: linear-gradient(45deg, var(--primary-teal), var(--premium-violet));
    padding: 2rem;
    position: relative;
}

.modal-header h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 1px;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: 60vh;
}

.modal-body h3 {
    color: var(--electric-cyan);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-body ul {
    color: var(--text-secondary);
    margin: 1rem 0 1.5rem 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.modal-body strong {
    color: var(--text-primary);
}

/* ===== CONTACT FORM STYLES ===== */
.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group.half {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: var(--electric-cyan);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(0, 90, 125, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-cyan);
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    padding: 0.5rem 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: rgba(17, 24, 39, 0.8);
    border: 2px solid rgba(0, 90, 125, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
    border-color: var(--electric-cyan);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 16px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
    color: white;
    padding: 1rem 2rem;
    border: 1px solid rgba(34, 211, 238, 0.4);
    border-radius: 3px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    
    /* ORBITRON STYLING */
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 1.2px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px rgba(34, 211, 238, 0.4),
        0 0 40px rgba(0, 90, 125, 0.3),
        0 8px 25px rgba(0, 90, 125, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--security-red), var(--electric-cyan));
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.btn-white {
    background: var(--foundation-light);
    color: var(--foundation-dark);
    padding: 1rem 2rem;
    border: 1px solid rgba(34, 211, 238, 0.4);
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    
    /* ORBITRON STYLING */
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 1.2px;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px rgba(34, 211, 238, 0.4),
        0 0 40px rgba(0, 90, 125, 0.3),
        0 8px 25px rgba(0, 90, 125, 0.4);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 2rem;
    background: var(--accent-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item {
    background: var(--foundation-dark);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 90, 125, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    border-color: rgba(0, 90, 125, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 90, 125, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.contact-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-muted);
}

/* ===== PHONE NUMBER PROTECTION STYLES ===== */
.phone-reveal {
    margin-top: 1rem;
    text-align: center;
}

.reveal-phone-btn {
    background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
    color: white;
    border: 1px solid rgba(34, 211, 238, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    
    /* ORBITRON STYLING */
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 1px;
}

.reveal-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 15px rgba(34, 211, 238, 0.4),
        0 0 25px rgba(0, 90, 125, 0.3),
        0 5px 15px rgba(0, 90, 125, 0.3);
}

.phone-number {
    margin-top: 1rem;
    transition: all 0.5s ease;
}

.phone-number.hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
}

.phone-number.visible {
    opacity: 1;
    height: auto;
}

.phone-number a {
    display: block;
    color: var(--electric-cyan);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.phone-number a:hover {
    color: var(--premium-violet);
}

.phone-number small {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
}

#phone-contact {
    transition: all 1.0s ease;
}

#phone-contact:hover {
    transform: translateY(-5px);
}

/* ===== SECURE MESSAGING PLATFORM STYLES ===== */
.messaging-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.platform-card {
    background: linear-gradient(145deg, var(--foundation-dark), var(--accent-bg));
    border: 2px solid rgba(0, 90, 125, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.platform-card:hover {
    border-color: rgba(0, 90, 125, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 90, 125, 0.2);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.platform-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.security-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--electric-cyan), #0891b2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.security-badge.popular {
    background: linear-gradient(45deg, #22c55e, #16a34a);
}

.security-badge.secure {
    background: linear-gradient(45deg, var(--premium-violet), #9333ea);
}

.platform-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.platform-btn {
    background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
    color: white;
    border: 1px solid rgba(34, 211, 238, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    text-transform: uppercase;
    font-size: 0.9rem;
    
    /* ORBITRON STYLING */
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 1px;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 15px rgba(34, 211, 238, 0.4),
        0 0 25px rgba(0, 90, 125, 0.3),
        0 5px 15px rgba(0, 90, 125, 0.3);
}

.platform-note {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
}

.platform-note p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.platform-note strong {
    color: var(--electric-cyan);
}

.platform-icon i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Brand Colors */
.platform-card[data-platform="signal"] .platform-icon i {
    color: #3a76f0;
}

.platform-card[data-platform="whatsapp"] .platform-icon i {
    color: #25d366;
}

.platform-card[data-platform="viber"] .platform-icon i {
    color: #665cac;
}

.platform-card[data-platform="discord"] .platform-icon i {
    color: #5865f2;
}



/* ===== VPN FALLBACK MODAL STYLES ===== */
.vpn-contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.vpn-option {
    background: linear-gradient(145deg, var(--foundation-dark), var(--accent-bg));
    border: 2px solid rgba(0, 90, 125, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vpn-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 90, 125, 0.1), rgba(34, 211, 238, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vpn-option:hover {
    border-color: var(--electric-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 90, 125, 0.3);
}

.vpn-option:hover::before {
    opacity: 1;
}

.vpn-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 2;
}

.vpn-option h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.vpn-option p {
    color: var(--electric-cyan);
    font-weight: 500;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.vpn-option small {
    color: var(--text-muted);
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
}

/* VPN Modal specific styling */
#modal-vpn-fallback .modal-content {
    max-width: 700px;
    width: 95%;
}

#modal-vpn-fallback .modal-header {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

#modal-vpn-fallback .modal-header h2 {
    font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
    letter-spacing: 1px;
    font-size: 1.5rem;
}

/* Slide-in animation for notifications */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced contact section with VPN warning */
.contact-vpn-notice {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.contact-vpn-notice p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.contact-vpn-notice strong {
    color: #f59e0b;
}

/* Mobile responsive for VPN options */
@media (max-width: 768px) {
    .vpn-contact-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vpn-option {
        padding: 1rem;
    }
    
    .vpn-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .vpn-option h3 {
        font-size: 1.1rem;
    }
    
    #modal-vpn-fallback .modal-header h2 {
        font-size: 1.2rem;
        padding-right: 3rem;
    }
}







/* ===== FOOTER ===== */
.footer {
    background: var(--foundation-dark);
    padding: 2rem;
    border-top: 1px solid rgba(0, 90, 125, 0.2);
    text-align: center;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 90, 125, 0.1);
    border: 2px solid rgba(0, 90, 125, 0.3);
    border-radius: 50%;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
    border-color: var(--electric-cyan);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 90, 125, 0.4);
}

/* Individual platform colors on hover */
.footer-social a[title="LinkedIn"]:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

.footer-social a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #e4405f, #833ab4);
    border-color: #e4405f;
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.4);
}

.footer-social a[title="Facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.footer-social a[title="X (Twitter)"]:hover {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.footer-social a[title="YouTube"]:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.footer-social a[title="GitHub"]:hover {
    background: #333333;
    border-color: #333333;
    box-shadow: 0 8px 20px rgba(51, 51, 51, 0.4);
}

.footer-social .fab.fa-twitter {
    font-family: sans-serif;
}

.footer-social .fab.fa-twitter::before {
    content: "𝕏";
    font-size: 1.2em;
    font-weight: bold;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 90, 125, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(34, 211, 238, 0.7));
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== UTILITY CLASSES ===== */
.accent-red { color: var(--security-red); }
.accent-cyan { color: var(--electric-cyan); }
.accent-violet { color: var(--premium-violet); }
.accent-teal { color: var(--primary-teal); }

.bg-accent-red { background: var(--security-red); }
.bg-accent-cyan { background: var(--electric-cyan); }
.bg-accent-violet { background: var(--premium-violet); }
.bg-accent-teal { background: var(--primary-teal); }

/* ===== MOBILE NAVIGATION ELEMENTS ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(145deg, var(--foundation-dark), var(--accent-bg));
    z-index: 1000;
    transition: right 0.3s ease;
    padding-top: 80px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== ENHANCED MOBILE REDESIGN ===== */
@media (max-width: 768px) {
    
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
        background: #005A7D;
        border-bottom: 2px solid rgba(34, 211, 238, 0.4);
    }
    
    .nav-container {
        padding: 0 1rem;
        position: relative;
    }
    
    .logo img {
        /* Logo now auto-adjusts perfectly - no manual sizing needed */
        opacity: 0.9 !important;
        border-radius: 6px;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .cta-nav {
        display: none !important;
    }
    
    /* Mobile Menu Elements - ENSURE VISIBILITY */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger-line {
        width: 24px;
        height: 3px;
        background: var(--text-primary);
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
        display: block;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .mobile-menu {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(145deg, var(--foundation-dark), var(--accent-bg));
        z-index: 1000;
        transition: right 0.3s ease;
        padding-top: 80px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-list li {
        border-bottom: 1px solid rgba(0, 90, 125, 0.1);
    }
    
    .mobile-nav-list a {
        display: block;
        padding: 1.2rem 1.5rem;
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        
        /* ORBITRON MOBILE STYLING */
        font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
        letter-spacing: 1.2px;
        text-transform: uppercase;
    }
    
    .mobile-nav-list a:hover {
        background: rgba(0, 90, 125, 0.1);
        color: var(--electric-cyan);
        padding-left: 2rem;
    }
    
    .mobile-cta {
        margin: 2rem 1.5rem 1rem;
    }
    
    .mobile-cta-btn {
        display: block;
        width: 100%;
        background: linear-gradient(45deg, var(--primary-teal), var(--electric-cyan));
        color: white;
        padding: 1rem;
        border: 1px solid rgba(34, 211, 238, 0.4);
        border-radius: 3px;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        text-transform: uppercase;
        font-size: 0.9rem;
        transition: all 0.4s ease;
        
        /* ORBITRON MOBILE CTA */
        font-family: 'Orbitron', 'Arial Black', 'Arial', sans-serif;
        letter-spacing: 1px;
    }
    
    .mobile-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 
            0 0 20px rgba(34, 211, 238, 0.4),
            0 0 40px rgba(0, 90, 125, 0.3),
            0 8px 25px rgba(0, 90, 125, 0.4);
    }
    
    /* Hero Section */
    .hero {
        background-attachment: scroll !important;
    }
    
    .hero-container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 6rem 1rem 2rem !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .hero-content {
        background: rgba(17, 24, 39, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        padding: 2rem 1.5rem !important;
        border-radius: 20px !important;
        border: 1px solid rgba(0, 90, 125, 0.4) !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 2rem !important;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        text-align: center !important;
        display: block !important;
    }
    
    /* Mobile Service Images - Enhanced clickability */
    
    /* Stats Section */
    .stats {
        padding: 3rem 1rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .stat-item h3 {
        font-size: 2.2rem !important;
    }
    
    /* About Section */
    .about {
        padding: 4rem 1rem !important;
    }
    
    .about-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .about-image {
        height: 250px !important;
    }
    
    .about-badge {
        padding: 0.5rem 2rem !important;
        font-size: 0.9rem !important;
    }
    
    .about-content h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    /* Services Section */
    .services {
        padding: 4rem 1rem !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .service-card {
        padding: 2rem 1.5rem !important;
    }
    
    .service-image {
        height: 180px !important;
    }
    
    .section-badge {
        padding: 0.5rem 2rem !important;
        font-size: 0.9rem !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 4rem 1rem !important;
    }
    
    .cta-content h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .btn-white {
        width: 100% !important;
        max-width: 300px !important;
    }
    
    /* Contact Section */
    .contact {
        padding: 4rem 1rem !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .contact-item {
        padding: 1.5rem !important;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 1rem !important;
    }
    
    .footer-social {
        gap: 1rem !important;
    }
    
    .footer-social a {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    /* Modal Responsive */
    .modal-content {
        width: 95% !important;
        max-height: 95vh !important;
    }
    
    .modal-header {
        padding: 1.5rem !important;
    }
    
    .modal-header h2 {
        font-size: 1.5rem !important;
        padding-right: 3rem !important;
    }
    
    .modal-body {
        padding: 1.5rem !important;
        max-height: 70vh !important;
    }
    
    /* Form Responsive */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .form-group.half {
        margin-bottom: 1.5rem !important;
    }
    
    /* Platforms Responsive */
    .messaging-platforms {
        grid-template-columns: 1fr !important;
    }
}

/* LANDSCAPE ORIENTATION - MOBILE DEVICES */
@media (max-width: 768px) and (orientation: landscape) {
    /* Force hamburger menu in landscape mode */
    .nav-menu {
        display: none !important;
    }
    
    .cta-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }
    
    /* Ensure hamburger lines show properly in landscape */
    .hamburger-line {
        width: 24px;
        height: 3px;
        background: var(--text-primary);
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
        display: block;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Ensure mobile menu works in landscape */
    .mobile-menu {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(145deg, var(--foundation-dark), var(--accent-bg));
        z-index: 1000;
        transition: right 0.3s ease;
        padding-top: 80px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Adjust hero section for landscape */
    .hero-container {
        padding: 5rem 1rem 1rem !important;
    }
    
    .hero-content {
        padding: 1.5rem !important;
    }
    
    .hero-content h1 {
        font-size: 1.5rem !important;
    }
    
    .hero-buttons {
        flex-direction: row !important;
        gap: 0.5rem !important;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto !important;
        flex: 1 !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

/* LANDSCAPE ORIENTATION - WIDER SCREENS */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    /* Adjust navigation for tablets in landscape */
    .nav-menu {
        font-size: 1.1rem;
        gap: 2.5rem;
    }
    
    .cta-nav {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }
}

/* ADDITIONAL MOBILE LANDSCAPE SUPPORT */
@media (max-height: 500px) and (orientation: landscape) {
    /* For very short landscape screens */
    .nav-menu {
        display: none !important;
    }
    
    .cta-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
}

/* VERY SMALL PHONES */
@media (max-width: 375px) {
    .logo img {
        /* Logo auto-adjusts perfectly - no manual override needed */
        border-radius: 5px;
    }
    
    .hero-content {
        padding: 1.5rem 1rem !important;
    }
    
    .hero-content h1 {
        font-size: 1.6rem !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
        max-width: 200px !important;
    }
}