@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-color: #b91c1c;
    --text-primary-dark: #ffffff;
    --text-secondary-dark: #e5e5e5;
    --primary-light: #ffffff;
    --secondary-light: #f5f5f5;
    --text-primary-light: #171717;
    --text-secondary-light: #525252;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-light);
    color: var(--text-primary-light);
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: 0.01em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.mobile-menu-open, body.modal-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.3; letter-spacing: -0.02em; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Navigation */
.main-nav { position: fixed; top: 0; left: 0; width: 100%; padding: 1.75rem 0; z-index: 1000; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0, 0, 0, 0.1); transition: all 0.3s ease; }
.nav-scrolled { padding: 1.25rem 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.875rem; text-decoration: none; color: var(--text-primary-light); font-weight: 700; font-size: 1.35rem; }
.logo-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--accent-color); color: white; font-weight: bold; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link { color: var(--text-primary-light); text-decoration: none; font-weight: 500; transition: color 0.3s ease; position: relative; font-size: 1.05rem; cursor: pointer; }
.nav-link:hover { color: var(--accent-color); }
.nav-link::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--accent-color); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* Theme Toggle & Mobile Menu Toggle */
.theme-toggle, .mobile-menu-toggle { background: none; border: none; cursor: pointer; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.1); transition: all 0.3s ease; }
.theme-toggle:hover, .mobile-menu-toggle:hover { background: rgba(0, 0, 0, 0.2); }
.theme-icon, .mobile-menu-icon { width: 22px; height: 22px; color: var(--text-primary-light); }

/* Mobile Menu */
.mobile-menu-toggle { display: none; }
.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary-light); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.mobile-menu.active { transform: translateX(0); }
.mobile-nav-link { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; text-decoration: none; color: var(--text-primary-light); transition: color 0.3s ease; cursor: pointer; }
.mobile-nav-link:hover { color: var(--accent-color); }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 8rem 0 5rem; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 50%, rgba(245, 245, 245, 0.8) 0%, rgba(255, 255, 255, 1) 70%); z-index: -1; transition: all 0.3s ease; }
.hero-content { text-align: center; max-width: 880px; padding: 0 2rem; }
.hero-logo { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.hero-logo-icon { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--accent-color); color: white; font-weight: bold; font-size: 2rem; }
.hero-title { font-size: 4rem; margin-bottom: 1.5rem; line-height: 1.1; }
.hero-description { font-size: 1.6rem; margin-bottom: 3rem; opacity: 0.9; max-width: 700px; margin: 0 auto 3rem; line-height: 1.5; }

.cta-button { display: inline-block; padding: 1.25rem 3rem; background: var(--accent-color); color: white !important; text-decoration: none; font-weight: 600; border-radius: 4px; transition: all 0.3s ease; border: 2px solid var(--accent-color); font-size: 1.15rem; cursor: pointer; }
.cta-button:hover { background: transparent; color: var(--accent-color) !important; transform: translateY(-2px); box-shadow: 0 12px 25px rgba(185, 28, 28, 0.15); }

.cta-button-outline { background: transparent; border: 2px solid var(--accent-color); color: var(--accent-color) !important; }
.cta-button-outline:hover { background: rgba(185, 28, 28, 0.1); color: var(--accent-color) !important; }

.button-group { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.scroll-indicator { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; color: var(--text-secondary-light); font-size: 0.95rem; }
.scroll-arrow { width: 28px; height: 28px; animation: bounce 2s infinite; }

/* Shared Section Styles */
.section-header { text-align: center; margin-bottom: 4rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.section-title { font-size: 2.8rem; margin-bottom: 1.5rem; }
.section-subtitle { font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 300; opacity: 0.8; line-height: 1.6; }

/* Section Specifics */
.operations-section, .testimonials-section { padding: 6rem 0; background-color: var(--primary-light); }
.certainty-section, .clientele-section, .final-cta-section { padding: 6rem 0; background-color: var(--secondary-light); }

.threats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.threat-card { background: var(--primary-light); padding: 2.5rem 2rem; border-radius: 8px; border: 1px solid rgba(0, 0, 0, 0.1); text-align: center; transition: all 0.3s ease; }
.threat-card.clickable-card { cursor: pointer; }
.threat-card:hover { transform: translateY(-8px); border-color: var(--accent-color); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); }

.card-icon { margin-bottom: 1.5rem; }
.card-icon svg { width: 48px; height: 48px; color: var(--accent-color); margin: 0 auto; }
.card-title { font-size: 1.75rem; margin-bottom: 1rem; }
.card-description { font-size: 1.05rem; opacity: 0.8; line-height: 1.6; }

.operations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-bottom: 4rem; }
.operation-card { position: relative; padding: 2rem; padding-left: 2.5rem; border-left: 3px solid var(--accent-color); }
.operation-number { position: absolute; top: -0.5rem; left: -1rem; font-size: 4rem; font-weight: 700; font-family: 'Cormorant Garamond', serif; color: rgba(0, 0, 0, 0.05); z-index: 1; user-select: none; }
.operation-card .card-title, .operation-card .card-description { position: relative; z-index: 2; }
.cta-container { text-align: center; }

.clientele-section .section-subtitle, .final-cta-section .section-subtitle { margin-bottom: 2.5rem; }

/* Testimonials Section */
.testimonials-section { position: relative; overflow: hidden; }
.testimonials-slider { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.testimonial-slide { text-align: center; }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-style: italic; line-height: 1.4; margin-bottom: 2rem; }
.testimonial-attribution { font-size: 1.1rem; font-weight: 500; opacity: 0.9; }

/* Swiper Carousel Customization */
.swiper-button-prev, .swiper-button-next { color: var(--text-primary-light); }
.swiper-button-prev:hover, .swiper-button-next:hover { color: var(--accent-color); transform: scale(1.1); }
.swiper-pagination-bullet { background-color: rgba(0, 0, 0, 0.3); }
.swiper-pagination-bullet-active { background-color: var(--accent-color); }

/* Modals (General) */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.85); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease; padding: 2rem; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--primary-light); padding: 3.5rem; border-radius: 12px; width: 90%; max-width: 800px; position: relative; transform: translateY(20px); transition: all 0.3s ease; max-height: 90vh; overflow-y: auto; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-primary-light); transition: color 0.3s ease; z-index: 2001; }
.modal-title { font-size: 2.5rem; margin-bottom: 2rem; color: var(--accent-color); text-align: center; }
.modal-body-content { font-size: 1.1rem; line-height: 1.8; text-align: left; }
.modal-body-content p { margin-bottom: 1.5rem; }
.modal-body-content h4 { font-size: 1.25rem; color: var(--accent-color); margin-top: 2rem; margin-bottom: 1rem; }
#greeting-modal.modal-overlay { align-items: flex-start; padding-top: 5vh; }

/* Discover Modal Specifics */
.benefits-list { margin: 2.5rem 0; padding-left: 1.5rem; list-style: none; }
.benefits-list li { margin-bottom: 1.2rem; position: relative; padding-left: 1.5rem; }
.benefits-list li:before { content: "•"; color: var(--accent-color); font-weight: bold; position: absolute; left: 0; font-size: 1.5rem; line-height: 1; }
.quote-section { background: var(--secondary-light); padding: 2rem; border-left: 4px solid var(--accent-color); margin: 2.5rem 0; font-style: italic; }
.understand-button { display: block; margin: 2.5rem auto 0; padding: 1rem 2.5rem; background: var(--accent-color); color: white; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; transition: background 0.3s ease; font-size: 1.1rem; }
.understand-button:hover { background: #991b1b; }

/* Form Styles (Shared) */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.95rem; opacity: 0.8; }
.form-input, .form-select { width: 100%; background: var(--secondary-light); border: 1px solid rgba(0, 0, 0, 0.15); color: var(--text-primary-light); padding: 0.875rem 1rem; border-radius: 4px; font-size: 1rem; transition: all 0.3s ease; }
.form-input:focus, .form-select:focus { outline: none; border-color: var(--accent-color); box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.3); }
.form-submit-btn { width: 100%; padding: 1rem; background: var(--accent-color); color: white; border: none; border-radius: 4px; font-weight: 600; font-size: 1.1rem; cursor: pointer; transition: all 0.3s ease; }
.form-submit-btn:hover { background: #991b1b; transform: translateY(-2px); }
#current-local-time { font-size: 0.8rem; font-weight: 400; opacity: 0.7; font-style: italic; margin-left: 0.5rem; }
.form-note { font-size: 0.9rem; opacity: 0.8; text-align: center; margin-top: 2rem; margin-bottom: 1.5rem; max-width: 400px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.form-group-checkbox { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; }
.form-checkbox { width: 1.15em; height: 1.15em; accent-color: var(--accent-color); }
.form-label-checkbox { font-size: 0.95rem; opacity: 0.9; }

/* Contact Info Modal */
#contact-modal .modal-content { max-width: 600px; text-align: center; }
.contact-details { border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 8px; padding: 2rem; margin-top: 1.5rem; }
.contact-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: center; margin-bottom: 2rem; }
.live-clock-display span { display: block; font-size: 1.5rem; font-weight: 500; color: var(--text-primary-light); }
.live-clock-display small { font-size: 0.85rem; opacity: 0.7; }
.contact-info { margin-top: 1.5rem; }
.contact-info p { margin-bottom: 0.5rem; font-size: 1.1rem; }
.contact-info a { color: var(--text-primary-light); text-decoration: none; transition: color 0.3s ease; }
.contact-info a:hover { color: var(--accent-color); }
.contact-note { font-size: 0.9rem; opacity: 0.8; line-height: 1.6; margin-top: 2rem; }

/* Greeting Modal */
#greeting-modal .modal-content { max-width: 650px; text-align: center; }
.founder-image { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.5rem; border: 3px solid var(--accent-color); }
.founder-signature { margin-top: 1.5rem; font-style: italic; }
.founder-signature p { margin-bottom: 0.25rem !important; line-height: 1.4; }
.founder-signature span { font-size: 0.9rem; opacity: 0.8; }

/* Footer */
.site-footer {
    background-color: var(--primary-light);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary-light);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-col .logo { margin-bottom: 1rem; }
.footer-copyright { opacity: 0.7; max-width: 280px; }
.footer-heading { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.25rem; color: var(--text-primary-light); }
.footer-link-list { list-style: none; padding: 0; margin: 0; }
.footer-link-list li { margin-bottom: 0.75rem; }
.footer-link-list a { text-decoration: none; color: var(--text-secondary-light); transition: color 0.3s ease; }
.footer-link-list a:hover { color: var(--accent-color); }
.footer-col-action { text-align: right; }
.back-to-top { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--text-secondary-light); transition: color 0.3s ease; }
.back-to-top:hover { color: var(--accent-color); }
.back-to-top svg { width: 20px; height: 20px; }

/* --- DARK MODE OVERRIDES --- */
body.dark-mode { background-color: var(--primary-dark); color: var(--text-primary-dark); }
body.dark-mode .main-nav { background: rgba(10, 10, 10, 0.9); border-bottom-color: rgba(255, 255, 255, 0.1); }
body.dark-mode .logo, body.dark-mode .nav-link, body.dark-mode .theme-icon, body.dark-mode .mobile-menu-icon { color: var(--text-primary-dark); }
body.dark-mode .theme-toggle, body.dark-mode .mobile-menu-toggle { background: rgba(255, 255, 255, 0.1); }
body.dark-mode .theme-toggle:hover, body.dark-mode .mobile-menu-toggle:hover { background: rgba(255, 255, 255, 0.2); }
body.dark-mode .mobile-menu { background: var(--primary-dark); }
body.dark-mode .mobile-nav-link { color: var(--text-primary-dark); }
body.dark-mode .hero::before { background: radial-gradient(circle at 50% 50%, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 1) 70%); }
body.dark-mode .scroll-indicator { color: var(--text-secondary-dark); }
body.dark-mode .operations-section, body.dark-mode .testimonials-section { background-color: var(--primary-dark); }
body.dark-mode .certainty-section, body.dark-mode .clientele-section, body.dark-mode .final-cta-section { background-color: var(--secondary-dark); }
body.dark-mode .threat-card { background: var(--primary-dark); border-color: rgba(255, 255, 255, 0.1); }
body.dark-mode .threat-card:hover { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); }
body.dark-mode .operation-number { color: rgba(255, 255, 255, 0.05); }
body.dark-mode .swiper-button-prev, body.dark-mode .swiper-button-next { color: var(--text-primary-dark); }
body.dark-mode .swiper-pagination-bullet { background-color: rgba(255, 255, 255, 0.5); }
body.dark-mode .modal-content { background: var(--primary-dark); }
body.dark-mode .modal-close { color: var(--text-primary-dark); }
body.dark-mode .quote-section { background: var(--secondary-dark); }
body.dark-mode .form-input, body.dark-mode .form-select { background: var(--secondary-dark); border-color: rgba(255, 255, 255, 0.15); color: var(--text-primary-dark); }
body.dark-mode .contact-details { border-color: rgba(255, 255, 255, 0.1); }
body.dark-mode .live-clock-display span { color: var(--text-primary-dark); }
body.dark-mode .contact-info a { color: var(--text-primary-dark); }
body.dark-mode .site-footer { background-color: var(--primary-dark); border-top-color: rgba(255, 255, 255, 0.1); color: var(--text-secondary-dark); }
body.dark-mode .footer-heading { color: var(--text-primary-dark); }
body.dark-mode .footer-link-list a { color: var(--text-secondary-dark); }
body.dark-mode .back-to-top { color: var(--text-secondary-dark); }

@media (max-width: 992px) {
    .nav-links, .nav-actions .cta-button { display: none; }
    .mobile-menu-toggle { display: flex; }
    .threats-grid, .operations-grid { grid-template-columns: 1fr; } 
    .footer-grid { grid-template-columns: 1fr 1fr; } 
    .footer-col-action { grid-column: 1 / -1; text-align: center; margin-top: 2rem; } 
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-description { font-size: 1.4rem; }
    .section-title { font-size: 2.2rem; }
    .section-subtitle { font-size: 1.1rem; }
    .certainty-section, .operations-section, .clientele-section, .testimonials-section, .final-cta-section { padding: 4rem 0; }
    .modal-content { padding: 2.5rem 1.5rem; }
    .modal-title { font-size: 2rem; }
    .testimonial-quote { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col { display: flex; flex-direction: column; align-items: center; }
    .footer-col-action { text-align: center; }
    .contact-details-grid { grid-template-columns: 1fr; }
}

@keyframes bounce { 
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 
    40% { transform: translateY(-10px); } 
    60% { transform: translateY(-5px); } 
}

