/* ===================================================
   ZORVEXX STYLESHEET
   Responsive CSS for all pages
   =================================================== */

/* ========== VARIABLES & RESETS ========== */
:root {
    --primary-color: #1A1A2E;
    --secondary-color: #0F7B6C;
    --text-main: #2D2D2D;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    --font-dm-sans: 'DM Sans', sans-serif;
    --font-inter: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-dm-sans);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

h2 {
    font-size: 36px;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-main);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
    margin-bottom: 1rem;
}

ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ========== CONTAINER & LAYOUT ========== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
}

/* ========== HEADER / NAVIGATION ========== */
.header {
    background-color: var(--bg-white);
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
    height: 70px;
    display: flex;
    align-items: center;
}

.header-container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-dm-sans);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list li a {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.nav-list li a:hover {
    color: var(--secondary-color);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0;
    width: 30px;
    height: 30px;
    align-items: center;
}

.menu-toggle span {
    width: 25px;
    height: 2.5px;
    background-color: var(--primary-color);
    transition: var(--transition);
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        height: 60px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    padding: 120px 40px 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    color: var(--bg-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 80px 20px 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
        padding: 60px 16px 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-inter);
}

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

.btn-primary:hover {
    background-color: #0a5f54;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
}

/* ========== WHAT WE DO SECTION ========== */
.what-we-do {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.what-we-do h2 {
    text-align: center;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 60px;
}

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

.card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--bg-white);
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .what-we-do {
        padding: 60px 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========== WHY TRUST US SECTION ========== */
.why-trust-us {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.why-trust-us h2 {
    text-align: center;
    margin-bottom: 15px;
}

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

.pillar {
    text-align: center;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--bg-white);
}

.pillar-icon svg {
    width: 40px;
    height: 40px;
}

.pillar h3 {
    margin-bottom: 15px;
}

.pillar p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .why-trust-us {
        padding: 60px 20px;
    }
    
    .trust-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========== ABOUT SECTION ========== */
.about {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.about h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }
}

/* ========== AFFILIATE DISCLOSURE ========== */
.affiliate-disclosure {
    padding: 60px 40px;
    background-color: #FFF8F0;
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.affiliate-disclosure h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.affiliate-disclosure p {
    font-size: 15px;
    color: var(--text-main);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .affiliate-disclosure {
        padding: 40px 20px;
    }
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 40px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

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

.footer-section ul li:before {
    content: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========== LEGAL PAGES (Privacy, Terms) ========== */
.page-hero {
    color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    color: var(--bg-white);
    margin-bottom: 10px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.legal-content {
    padding: 80px 40px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal-content ul li {
    padding-left: 15px;
}

.alert-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    margin: 40px 0;
    border-radius: 4px;
}

.alert-box p {
    margin: 0;
}

.legal-content .container {
    max-width: 900px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 50px 20px;
    }
    
    .legal-content h2 {
        font-size: 24px;
    }
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-wrapper h2 {
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-item a {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 15px;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(15, 123, 108, 0.1);
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== UTILITIES ========== */
.section-intro {
    margin-bottom: 3rem;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Print Styles */
@media print {
    .header, .footer {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}