@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --primary: #0a192f;
    --primary-light: #112240;
    --accent: #233554;
    --secondary: #c0c0c0; /* Silver */
    --highlight: #0070f3;
    --text: #333333;
    --text-light: #666666;
    --bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px -10px rgba(2,12,27,0.1);
    --shadow-hover: 0 20px 40px -15px rgba(2,12,27,0.2);
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1.2;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: var(--primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}
.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--accent);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}
.loader-bar::after {
    content: '';
    position: absolute;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--secondary);
    animation: loadingBar 1.5s infinite ease-in-out;
}
@keyframes loadingBar {
    0% { left: -50%; }
    100% { left: 100%; }
}
.loader-text {
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
}

/* Disclosure Bar */
.disclosure-bar {
    background-color: var(--text);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--highlight);
}
.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(192,192,192,0.05) 0%, transparent 50%);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 25px;
}
.hero p {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background-color: var(--highlight);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 112, 243, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 112, 243, 0.6);
}
.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--secondary);
    margin-left: 15px;
}
.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}
.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* Main Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
}
.section-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

/* Floating Info Cards */
.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}
.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.info-card p {
    color: var(--text-light);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 60px 0;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
}
.trust-item svg {
    width: 24px;
    height: 24px;
    fill: var(--highlight);
}

/* Statistics */
.stats-section {
    background: var(--primary);
    color: var(--white);
    padding: 80px 20px;
    margin: 80px 0;
}
.stat-box {
    text-align: center;
}
.stat-box h3 {
    color: var(--secondary);
    font-size: 48px;
    margin-bottom: 10px;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}
.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.comparison-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}
.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px; left: 20px;
    font-size: 60px;
    color: rgba(0,0,0,0.05);
    font-family: Georgia, serif;
}
.testimonial-author {
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary);
}

/* FAQ Accordion */
.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
}
.faq-question:hover {
    background: #fafafa;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-light);
}
.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Order.php Special Box */
.quote-card {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border-top: 6px solid var(--highlight);
}

/* Editorial Content */
.editorial-content h2 { margin: 40px 0 20px; }
.editorial-content p { margin-bottom: 20px; font-size: 17px; color: #444; }
.editorial-content ul { margin: 20px 0 20px 40px; }
.editorial-content li { margin-bottom: 10px; }

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cookie-popup.show {
    bottom: 20px;
}
@media(min-width: 768px) {
    .cookie-popup { left: auto; right: 20px; max-width: 500px; }
}
.cookie-actions { display: flex; gap: 10px; margin-top: 15px; }
.cookie-btn { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-weight: 600; }
.cookie-accept { background: var(--highlight); color: white; }
.cookie-reject { background: transparent; color: var(--secondary); border: 1px solid var(--secondary); }

/* Footer */

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--white);
}


/* Responsive */
@media (max-width: 900px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 40px; }
}
@media (max-width: 768px) {
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .nav-links {
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        display: none;
    }
    .nav-links.active { display: flex; }
    .nav-links li { padding: 20px; text-align: center; border-top: 1px solid #f0f0f0; }
    .hamburger { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { display: flex; flex-direction: column; gap: 15px; }
    .btn-secondary { margin-left: 0; }
}

@media (max-width: 768px) {
    .btn-container { display: flex !important; flex-direction: column !important; gap: 15px !important; align-items: stretch !important; margin-top: 20px !important; }
    .btn-container .btn { margin: 0 !important; width: 100% !important; }
    .footer-grid { display: flex; flex-direction: column; gap: 30px; text-align: center; }
    
}
.btn-container { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
}
    .hero { padding: 60px 20px !important; }
    .info-card, .quote-card, .testimonial-card, .editorial-content { padding: 20px !important; }
    .hero h1 { font-size: 32px !important; }
    .stat-box h3 { font-size: 36px !important; }
    .btn { padding: 12px 20px !important; font-size: 14px !important; }
}

/* Fix CSS Grid Blowout on Mobile */
.grid-2, .grid-3, .cards-grid, .pros-cons, .footer-grid, .footer-inner, .features-grid {
    width: 100%;
    max-width: 100vw;
}
.grid-2 > *, .grid-3 > *, .cards-grid > *, .pros-cons > *, .footer-grid > *, .footer-inner > *, .features-grid > * {
    min-width: 0;
    word-wrap: break-word;
}
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Footer */
footer {
    background: var(--primary);
    padding: 100px 40px 60px;
    margin-top: 100px;
    color: var(--secondary);
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; }
.footer-inner h4 { color: var(--white); margin-bottom: 25px; font-size: 16px; font-weight: 600; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
.footer-owner { margin: 20px 0; font-size: 15px; color: var(--white); }
.footer-email { color: var(--highlight) !important; text-decoration: none; }
.footer-bio { color: var(--secondary); font-size: 15px; line-height: 1.7; }
.footer-inner ul { list-style: none; padding-left: 0; }
.footer-inner li { margin-bottom: 15px; }
.footer-inner a { color: var(--secondary); text-decoration: none; transition: all 0.3s; font-size: 15px; font-weight: 500; }
.footer-inner a:hover { color: var(--white); }
.footer-inner .logo { color: var(--white); font-size: 28px; font-weight: 800; font-family: 'Playfair Display', serif; display: block; margin-bottom: 10px; text-decoration: none; }
.copyright { text-align: center; color: var(--secondary); font-size: 14px; margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; } }
