/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #231F20;
    overflow-x: hidden;
    margin-top: 60px; /* Fixed mobile-friendly margin */
}

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

/* Color Variables */
:root {
    --primary-gold: #C2A344;
    --primary-green: #8BC34A;
    --dark-gray: #231F20;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}


/* MOBILE-FIRST NAVIGATION - iOS/Android Compatible */

/* Navigation container */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(35, 31, 32, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    height: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.nav-logo {
    z-index: 10001;
}

.logo {
    height: 40px;
    width: auto;
}

/* HAMBURGER MENU - Mobile First */
.hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    position: relative;
    width: 40px;
    height: 40px;
    /* iOS/Android touch optimization */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* MOBILE MENU */
.nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(35, 31, 32, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    overflow-y: auto;
    /* iOS smooth scrolling */
    -webkit-overflow-scrolling: touch;
}

.nav-menu.active {
    left: 0;
}

/* Navigation links */
.nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 24px;
    margin: 8px 0;
    width: 90%;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    /* iOS/Android touch optimization */
    -webkit-tap-highlight-color: rgba(194, 163, 68, 0.2);
    min-height: 48px; /* iOS accessibility requirement */
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover,
.nav-link:focus {
    background: rgba(194, 163, 68, 0.2);
    color: #C2A344;
    transform: translateY(-2px);
}

.nav-link:active {
    transform: translateY(0);
    background: rgba(194, 163, 68, 0.3);
}

/* Special styling for report button */
.nav-report {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    margin-top: 20px !important;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3) !important;
}

.nav-report:hover,
.nav-report:focus {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4) !important;
}

.nav-report:active {
    transform: translateY(0) !important;
}

/* DESKTOP STYLES - Hidden on mobile by default */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        height: auto;
        width: auto;
        background: none;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding: 0;
        left: 0;
        top: auto;
    }
    
    .nav-link {
        width: auto;
        margin: 0 10px;
        padding: 8px 16px;
        font-size: 16px;
        min-height: auto;
        position: relative;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-gold);
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .nav-report {
        margin-top: 0 !important;
        margin-left: 20px !important;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .nav-menu {
        /* Fix for iOS Safari viewport height issues */
        height: calc(100vh - 60px - env(safe-area-inset-bottom));
    }
    
    .hamburger {
        /* Prevent iOS zoom on double tap */
        touch-action: manipulation;
    }
    
    .nav-link {
        /* Prevent iOS zoom on double tap */
        touch-action: manipulation;
    }
}

/* Android Chrome specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .nav-menu {
        /* Fix for Android Chrome address bar */
        height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hamburger span {
        /* Sharper lines on retina displays */
        height: 2px;
    }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
    .nav-menu {
        padding-top: 20px;
    }
    
    .nav-link {
        padding: 12px 24px;
        margin: 4px 0;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 14px 20px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c3e50 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-green));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(194, 163, 68, 0.3);
}

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

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

.hero-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Animation */
.hero-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.ai-circle {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: pulse 2s infinite;
    opacity: 0.6;
}

.pulse-ring.delay-1 {
    animation-delay: 0.5s;
    border-color: var(--primary-green);
}

.pulse-ring.delay-2 {
    animation-delay: 1s;
    border-color: var(--primary-gold);
}

.ai-core {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    z-index: 2;
    animation: rotate 10s linear infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(194, 163, 68, 0.2);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    animation: float var(--duration) ease-in-out infinite var(--delay);
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 20%;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 15%;
}

.floating-element:nth-child(4) {
    bottom: 10%;
    right: 20%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: var(--white);
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: var(--light-gray);
    transform: translateX(10px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.advantage-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.advantage-text p {
    color: #666;
    line-height: 1.6;
}

/* Rotating Benefits Animation */
.advantages-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

.rotating-benefits {
    position: relative;
    width: 300px;
    height: 300px;
}

.benefit-item {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-green));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    opacity: 0.3;
    transform: scale(0.8);
    transition: all 0.5s ease;
    cursor: pointer;
}

.benefit-item.active {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(194, 163, 68, 0.4);
}

.benefit-item[data-benefit="roi"] {
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
}

.benefit-item[data-benefit="roi"].active {
    transform: translateX(-50%) scale(1.1);
}

.benefit-item[data-benefit="certainty"] {
    top: 50%;
    right: 0;
    transform: translateY(-50%) scale(0.8);
}

.benefit-item[data-benefit="certainty"].active {
    transform: translateY(-50%) scale(1.1);
}

.benefit-item[data-benefit="detection"] {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
}

.benefit-item[data-benefit="detection"].active {
    transform: translateX(-50%) scale(1.1);
}

.benefit-item[data-benefit="time"] {
    top: 50%;
    left: 0;
    transform: translateY(-50%) scale(0.8);
}

.benefit-item[data-benefit="time"].active {
    transform: translateY(-50%) scale(1.1);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark-gray);
    color: var(--white);
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-form .btn {
    width: 100%;
    position: relative;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-section p {
    color: rgba(255, 255, 2/* Mobile Navigation - Hamburger Menu */
@media (max-width: 768px) {
    .hamburger {
        display: block !important; /* Show hamburger on mobile */
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 5px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(35, 31, 32, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        height: 70px; /* Fixed height for mobile navbar */
    }
    
    .nav-container {
        flex-direction: row; /* Keep logo and hamburger horizontal */
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(35, 31, 32, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
        color: #fff;
        text-decoration: none;
        text-align: center;
        width: 90%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease;
        margin: 5px 0;
        border-radius: 5px;
    }
    
    .nav-menu .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--primary-gold);
    }
    
    .nav-menu .nav-report {
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
        color: white !important;
        padding: 15px 20px !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
        margin: 20px 0 !important;
        width: 80% !important;
        text-align: center !important;
        border: none !important;
    }
    
    .nav-menu .nav-report:hover {
        background: linear-gradient(135deg, #e67e22 0%, #d35400 100%) !important;
        transform: none !important;
    }
    
    /* Adjust body margin for mobile */
    body {
        margin-top: 70px !important; /* Reset to normal navbar height */
    }
}.nav-link:hover {
        background-color: rgba(194, 163, 68, 0.2);
        color: #C2A344;
    }
    
    .nav-link:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    /* Fix header cut-off - Multiple approaches */
    .hero {
        padding-top: 220px !important; /* Increased padding for expanded mobile nav */
        min-height: calc(100vh - 220px);
        margin-top: 0; /* Remove margin to prevent double spacing */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 40px !important; /* Force additional padding */
    }
    
    .hero-title {
        font-size: 2.2rem; /* Slightly smaller but still prominent */
        margin-top: 20px !important; /* Reduced margin since we have more padding */
        padding-top: 10px; /* Reduced padding */
        line-height: 1.2; /* Better line spacing */
    }
    
    .hero-subtitle {
        margin-top: 10px;
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .rotating-benefits {
        width: 250px;
        height: 250px;
    }
    
    .benefit-item {
        width: 100px;
        height: 100px;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
    }
    
    .benefit-text {
        font-size: 0.8rem;
    }
}



/* Free Report Navigation Link */
.nav-report {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-report:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3) !important;
}

.nav-report::after {
    display: none !important;
}

/* Hero Weekly Note */
.hero-weekly-note {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.15) 0%, rgba(230, 126, 34, 0.15) 100%);
    border: 2px solid #f39c12;
    padding: 15px 25px;
    border-radius: 12px;
    margin: 20px 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
    font-weight: 500;
}

/* Weekly Subscription Info */
.weekly-subscription-info {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    border-left: 4px solid var(--primary-gold);
}

.weekly-subscription-info h4 {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: 18px;
}

.weekly-subscription-info p {
    color: #555;
    line-height: 1.6;
}

.weekly-subscription-info strong {
    color: var(--dark-gray);
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .nav-report {
        padding: 6px 12px !important;
        font-size: 14px !important;
    }
    
    .hero-weekly-note {
        padding: 10px 15px;
        font-size: 13px;
        margin: 10px 0;
    }
    
    .weekly-subscription-info {
        padding: 20px;
        margin-top: 20px;
    }
    
    .weekly-subscription-info h4 {
        font-size: 16px;
    }
}


/* AI Laws Section */
.ai-laws {
    padding: 80px 0;
    background: var(--light-gray);
}

.ai-laws-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.ai-laws-info h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.ai-laws-info p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.ai-laws-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.ai-law-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    font-weight: 500;
}

.ai-law-feature i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.ai-laws-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.ai-laws-buttons .btn {
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(194, 163, 68, 0.3);
}

.ai-laws-buttons .btn-primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-green));
    color: var(--white);
    border: none;
}

.ai-laws-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 163, 68, 0.4);
}

.ai-laws-buttons .btn-secondary {
    background: var(--white);
    color: var(--dark-gray);
    border: 2px solid var(--primary-gold);
}

.ai-laws-buttons .btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.ai-laws-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-laws-map {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c3e50 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.law-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.law-indicator.permissive .indicator-dot {
    background: var(--primary-green);
}

.law-indicator.restrictive .indicator-dot {
    background: var(--primary-gold);
}

.law-indicator.very-restrictive .indicator-dot {
    background: #e74c3c;
}

.ai-icon-large {
    font-size: 4rem;
    color: var(--primary-gold);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsiveness for AI Laws */
@media (max-width: 768px) {
    .ai-laws-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-laws-features {
        grid-template-columns: 1fr;
    }
    
    .ai-laws-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ai-laws-map {
        width: 250px;
        height: 250px;
    }
    
    .ai-icon-large {
        font-size: 3rem;
    }
}



/* Form Success/Error Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
    display: block;
}

.form-message.info {
    background-color: #d1ecf1;
    border: 2px solid #bee5eb;
    color: #0c5460;
    display: block;
}

/* Form submission overlay */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.form-overlay.show {
    display: flex;
}

.form-overlay-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-overlay-content h3 {
    color: #155724;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.form-overlay-content p {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.form-overlay-content .btn {
    background: var(--primary-gold);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.form-overlay-content .btn:hover {
    background: #a68b3a;
}

/* Loading state for forms */
.form-loading {
    position: relative;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.form-loading::before {
    content: 'Sending...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-weight: 600;
    z-index: 1;
}

