/* Table of Contents
--------------------------------
1.  Global Styles & CSS Variables
2.  Typography
3.  Layout & Container
4.  Header & Navigation
5.  Footer
6.  Buttons & CTAs
7.  Forms
8.  Hero Section
9.  Services Section
10. About Us Section
11. ROI Calculator Section
12. Industry Section
13. Sample Report Section
14. Testimonials Section
15. CTA Section
16. Page Specific Styles (Contact, Legal)
17. Modal Styles
18. Animations & Scroll Effects
19. Responsive Design (Media Queries)
-------------------------------- */

/* 1. Global Styles & CSS Variables
-------------------------------- */
:root {
    --primary-dark: #1a2333; /* Dark blue/charcoal for header/footer */
    --secondary-dark: #243044;
    --primary-accent: #00aaff; /* A vibrant blue from logo */
    --secondary-accent: #00e5ff; /* A lighter cyan for highlights */
    --text-light: #f0f4f8;
    --text-medium: #a0b3d1;
    --text-dark: #1a2333;
    --background-light: #ffffff;
    --background-medium: #f8f9fa;
    --border-color: #3a4862;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 2. Typography
-------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.75em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-accent);
}

ul, ol {
    list-style-position: inside;
    padding-left: 0;
}

.highlight-text {
    color: var(--primary-accent);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
}

.animate-on-load .highlight-text::after {
    transform: scaleX(1);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-accent);
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* 3. Layout & Container
-------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

main {
    overflow-x: hidden;
}

section {
    padding: 6rem 0;
}

/* 4. Header & Navigation
-------------------------------- */
.site-header {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
}

.site-header.scrolled {
    background-color: rgba(26, 35, 51, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link .logo {
    height: 50px;
    filter: invert(1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    font-family: var(--font-primary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-speed) ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed) ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: all var(--transition-speed) ease-in-out;
}

/* Mobile Nav Open State */
.mobile-nav-toggle.open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-nav-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 5. Footer
-------------------------------- */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-medium);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-column h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-accent);
}

.footer-column.about .logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-column p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul a {
    color: var(--text-medium);
    transition: all var(--transition-speed) ease;
}

.footer-column ul a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.footer-column.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-column.contact-info .icon {
    color: var(--primary-accent);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* 6. Buttons & CTAs
-------------------------------- */
.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.4);
    color: var(--primary-dark);
}

.cta-button.secondary {
    background-color: transparent;
    border-color: var(--primary-accent);
    color: var(--primary-accent);
}

.cta-button.secondary:hover {
    background-color: var(--primary-accent);
    color: var(--text-light);
}

.cta-button.header-cta {
    padding: 0.6rem 1.5rem;
    margin-left: 1.5rem;
}

.cta-button.large {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* 7. Forms
-------------------------------- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
}

textarea {
    resize: vertical;
}

/* 8. Hero Section
-------------------------------- */
.hero-section {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 12rem 0 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 750px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: var(--text-medium);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero background shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.1), rgba(0, 229, 255, 0.1));
    animation: float 15s infinite ease-in-out alternate;
}

.hero-bg-shapes .shape-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -15%;
}

.hero-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    bottom: 5%;
    left: 10%;
    animation-duration: 20s;
}

.hero-bg-shapes .shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 40%;
    animation-duration: 10s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(50px) rotate(45deg); }
}

/* 9. Services Section
-------------------------------- */
.services-section {
    background-color: var(--background-medium);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--background-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-bottom-color: var(--primary-accent);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 50px;
    height: 50px;
    color: var(--primary-accent);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* 10. About Us Section
-------------------------------- */
.about-section {
    background-color: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text .section-header h2::after {
    left: 0;
    transform: translateX(0);
}

.why-choose-us-list {
    list-style: none;
    margin-top: 1.5rem;
}

.why-choose-us-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-icon {
    color: var(--primary-accent);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

/* 11. ROI Calculator Section
-------------------------------- */
.roi-calculator-section {
    background-color: var(--secondary-dark);
    color: var(--text-light);
}

.roi-calculator-section .section-header h2 {
    color: var(--text-light);
}
.roi-calculator-section .section-header p {
    color: var(--text-medium);
}
.roi-calculator-section .section-header h2::after {
    background-color: var(--secondary-accent);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    background: var(--primary-dark);
    padding: 3rem;
    border-radius: 12px;
}

#roi-calculator {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#roi-calculator label {
    color: var(--text-medium);
}

#roi-calculator input {
    background-color: var(--secondary-dark);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 1.1rem;
}
#roi-calculator input:focus {
    border-color: var(--secondary-accent);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
}

.results-panel {
    background-color: var(--secondary-dark);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.results-panel h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.result-label {
    color: var(--text-medium);
}

.result-value {
    font-weight: 700;
    color: var(--text-light);
}

.result-item.total-roi {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.result-item.total-roi .result-value {
    color: var(--secondary-accent);
    font-size: 1.8rem;
}

.results-panel .disclaimer {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-top: auto;
    text-align: center;
}

/* 12. Industry Section
-------------------------------- */
.industry-section {
    background-color: var(--background-medium);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    padding: 2rem;
    text-align: center;
    background: var(--background-light);
    border-radius: 12px;
    transition: all var(--transition-speed) ease;
}
.industry-card:hover {
    transform: scale(1.05);
    background-color: var(--primary-accent);
}
.industry-card:hover h3,
.industry-card:hover p,
.industry-card:hover .industry-icon {
    color: var(--text-light);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: color var(--transition-speed) ease;
}

/* 13. Sample Report Section
-------------------------------- */
.sample-report-section {
    background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1184&q=80') no-repeat center center/cover;
    color: var(--text-light);
    position: relative;
    text-align: center;
}
.sample-report-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 51, 0.85);
}
.sample-report-section .container {
    position: relative;
    z-index: 2;
}
.report-content {
    max-width: 800px;
    margin: 0 auto;
}
.report-content h3 {
    color: var(--secondary-accent);
    font-weight: 500;
}
.report-content h2 {
    color: var(--text-light);
    font-size: 3rem;
}
.report-content p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}


/* 14. Testimonials Section
-------------------------------- */
.testimonials-section {
    background-color: var(--background-light);
}

.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform var(--transition-speed) ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 2.5rem;
    background-color: var(--background-medium);
    border-radius: 12px;
    text-align: center;
    border-left: 5px solid var(--primary-accent);
    display: none;
}
.testimonial-slide.active {
    display: block;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #444;
    margin-bottom: 2rem;
}
.testimonial-text::before {
    content: '“';
    font-size: 4rem;
    color: var(--primary-accent);
    line-height: 0;
    position: relative;
    top: 25px;
    margin-right: 5px;
}

.testimonial-author {
    font-weight: 600;
}

.author-name {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.author-title {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 400;
}

.slider-controls {
    text-align: center;
    margin-top: 2rem;
}

.slider-controls button {
    background: var(--primary-accent);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: background-color var(--transition-speed);
}
.slider-controls button:hover {
    background: var(--secondary-accent);
}

/* 15. CTA Section
-------------------------------- */
.cta-section {
    background-color: var(--primary-accent);
    text-align: center;
    color: var(--text-light);
}

.cta-section h2 {
    color: var(--text-light);
}

.cta-section p {
    color: var(--text-light);
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.cta-section .cta-button.primary {
    background: var(--background-light);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-section .cta-button.primary:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 16. Page Specific Styles (Contact, Legal)
-------------------------------- */
.page-header-section {
    padding: 10rem 0 4rem;
    background: var(--primary-dark);
    color: var(--text-light);
    text-align: center;
}
.page-header-section h1 {
    color: var(--text-light);
    font-size: 3rem;
}
.page-header-section p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* Contact Page */
.contact-section {
    padding: 6rem 0;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}
.contact-form-container, .contact-info-container {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}
.contact-form-container h2, .contact-info-container h2 {
    margin-top: 0;
}
.info-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.info-block .icon {
    font-size: 2rem;
    color: var(--primary-accent);
    margin-top: 0.25rem;
}
.info-block h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
}
.info-block p, .info-block a {
    margin: 0;
    font-size: 1rem;
    color: #555;
}
.map-placeholder {
    width: 100%;
    height: 250px;
    background-color: #e9ecef;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6c757d;
    font-weight: 500;
}

/* Legal Pages */
.legal-page {
    background-color: #f8f9fa;
}
.legal-content-section {
    padding: 4rem 0;
}
.legal-content-section .container {
    max-width: 800px;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}
.legal-content-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-accent);
    padding-bottom: 0.5rem;
}
.legal-content-section h2:first-of-type {
    margin-top: 0;
}
.legal-content-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}
.legal-content-section ul li {
    margin-bottom: 0.5rem;
}


/* 17. Modal Styles
-------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition-speed) ease;
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}
.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
}
.report-body h3 {
    text-align: center;
}
.metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}
.metric-card {
    background-color: var(--background-medium);
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
}
.metric-card h4 {
    margin-bottom: 0.5rem;
}
.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-accent);
    display: block;
}
.report-body ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}
.report-disclaimer {
    font-size: 0.9rem;
    text-align: center;
    color: #888;
    margin-top: 2rem;
}

/* 18. Animations & Scroll Effects
-------------------------------- */
.animate-on-load {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}
.animate-on-load:nth-child(1) { animation-delay: 0.2s; }
.animate-on-load:nth-child(2) { animation-delay: 0.4s; }
.animate-on-load:nth-child(3) { animation-delay: 0.6s; }

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add staggered delay for grid items */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 19. Responsive Design
-------------------------------- */

/* Tablets (up to 992px) */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .hero-content h1 { font-size: 3.5rem; }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image {
        order: -1;
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile Nav Breakpoint (up to 768px) */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform var(--transition-speed) ease-in-out;
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .nav-links a {
        font-size: 1.2rem;
    }

    .header-cta { display: none; }
    .mobile-nav-toggle { display: block; }
    
    .hero-content {
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-column.contact-info p {
        justify-content: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .metric-grid {
        grid-template-columns: 1fr;
    }
}

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    .container {
        padding: 0 1rem;
    }
    h1 { font-size: 2.5rem; }
    .hero-content h1 { font-size: 2.5rem; }
    
    .contact-form-container, .contact-info-container {
        padding: 2rem 1.5rem;
    }
    
    .legal-content-section .container {
        padding: 2rem 1.5rem;
    }
    
    .nav-links {
        width: 90%;
    }
}