/* Table of Contents
--------------------------------
1.  Global Styles & Variables
2.  Utility Classes
3.  Header & Navigation
4.  Hero Section
5.  Section Base Styles
6.  Services Section
7.  Stats Section
8.  About Section
9.  Calculator Section
10. Testimonials Section
11. CTA Section
12. Footer Section
13. Contact Page Specific
14. Legal Pages Specific
15. Animations & Keyframes
16. Media Queries (Responsiveness)
-------------------------------- */

/* 1. Global Styles & Variables
-------------------------------- */
:root {
    --primary-color: #007BFF; /* A strong, trustworthy blue */
    --secondary-color: #00C9A7; /* A vibrant, modern teal/mint */
    --dark-color: #1a202c; /* A deep charcoal for backgrounds/text */
    --light-color: #f8f9fa; /* Off-white for light backgrounds */
    --text-color: #4a5568; /* A softer gray for body text */
    --white-color: #ffffff;
    --border-color: #e2e8f0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.25rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: #0056b3;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. Utility Classes
-------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-speed) ease;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: #0056b3;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.btn-secondary {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* 3. Header & Navigation
-------------------------------- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    padding: 15px 0;
}

#main-header.scrolled {
    background-color: var(--white-color);
    box-shadow: 0 4px 12px var(--shadow-color);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav-branding {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}
#main-header:not(.scrolled) .nav-branding {
    color: var(--white-color);
}

.logo {
    height: 45px;
    filter: brightness(0) invert(1); /* Makes logo white */
    transition: filter var(--transition-speed);
}
#main-header.scrolled .logo {
    filter: none; /* Reverts logo to its original colors on scroll */
}
#main-header.scrolled .nav-branding {
    color: var(--dark-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--white-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

#main-header.scrolled .nav-link {
    color: var(--text-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

#main-header.scrolled .nav-link:hover,
#main-header.scrolled .nav-link.active {
    color: var(--primary-color);
}

.header-cta {
    display: block;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all var(--transition-speed) ease-in-out;
    background-color: var(--white-color);
}

#main-header.scrolled .bar {
    background-color: var(--dark-color);
}

/* 4. Hero Section
-------------------------------- */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #3c4a6e 100%);
    color: var(--white-color);
    padding: calc(var(--header-height) + 120px) 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}
.shape-1 { width: 400px; height: 400px; top: -100px; right: -150px; animation-duration: 25s; }
.shape-2 { width: 250px; height: 250px; bottom: 50px; left: -100px; animation-duration: 18s; }
.shape-3 { width: 100px; height: 100px; bottom: 20%; right: 10%; animation-duration: 15s; }

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    flex: 1;
    max-width: 550px;
    perspective: 1000px;
}
.hero-image {
    border-radius: var(--border-radius);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease-out;
}
.hero-image-wrapper:hover .hero-image {
    transform: rotateY(0) rotateX(0);
}

/* 5. Section Base Styles
-------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tagline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* 6. Services Section
-------------------------------- */
.services-section {
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px var(--shadow-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px var(--shadow-color), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0) 70%);
    transition: opacity 0.5s ease;
    opacity: 0;
    transform: scale(0);
}
.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    background-color: #e6f2ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color var(--transition-speed) ease;
}
.service-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
    transition: fill var(--transition-speed) ease;
}
.service-card:hover .service-icon {
    background-color: var(--primary-color);
}
.service-card:hover .service-icon svg {
    fill: var(--white-color);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    color: var(--primary-color);
}

/* 7. Stats Section
-------------------------------- */
.stats-section {
    background: url('https://www.toptal.com/designers/subtlepatterns/uploads/double-bubble-outline.png'), linear-gradient(135deg, var(--dark-color), #3c4a6e);
    background-repeat: repeat, no-repeat;
    color: var(--white-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    padding: 20px;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}
.stat-number::after {
    content: '%';
}
.stat-item:nth-child(2) .stat-number::after,
.stat-item:nth-child(4) .stat-number::after {
    content: '+';
}
.stat-item:nth-child(3) .stat-number::after {
    content: '%';
}
.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* 8. About Section
-------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-container {
    position: relative;
}
.about-image {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 15px -3px var(--shadow-color);
}
.about-image-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-features-list {
    margin-bottom: 2rem;
}
.about-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.about-features-list svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary-color);
}

/* 9. Calculator Section
-------------------------------- */
.calculator-section {
    background-color: var(--light-color);
}

.calculator-wrapper {
    display: flex;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 15px -3px var(--shadow-color);
    overflow: hidden;
}
.calculator-form {
    flex: 2;
    padding: 40px;
}
.calculator-results {
    flex: 1;
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.form-group {
    margin-bottom: 2rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.form-control, .form-control-range {
    width: 100%;
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
}
.form-control-range {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}
.form-control-range:focus {
    outline: none;
}
/* Chrome, Safari, Opera, and Edge */
.form-control-range::-webkit-slider-runnable-track {
    background: #e2e8f0;
    height: 8px;
    border-radius: 4px;
}
.form-control-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -6px; /* Centers thumb on track */
    background-color: var(--primary-color);
    height: 20px;
    width: 20px;
    border-radius: 50%;
}
/* Firefox */
.form-control-range::-moz-range-track {
    background: #e2e8f0;
    height: 8px;
    border-radius: 4px;
}
.form-control-range::-moz-range-thumb {
    border: none;
    border-radius: 50%;
    background-color: var(--primary-color);
    height: 20px;
    width: 20px;
}

.result-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.result-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 10. Testimonials Section
-------------------------------- */
.testimonials-section {
    background-color: var(--white-color);
}
.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    text-align: center;
}
.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 20px;
}
.testimonial-text::before, .testimonial-text::after {
    content: '“';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    line-height: 1;
}
.testimonial-text::before { top: -10px; left: -10px; }
.testimonial-text::after { content: '”'; bottom: -30px; right: -10px; }

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info {
    text-align: left;
}
.author-name {
    margin-bottom: 0.25rem;
}
.author-title {
    font-size: 0.9rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}
.slider-controls button {
    pointer-events: all;
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 5px var(--shadow-color);
    transition: all var(--transition-speed) ease;
}
.prev-btn { margin-left: -22px; }
.next-btn { margin-right: -22px; }

.slider-controls button:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* 11. CTA Section
-------------------------------- */
.cta-section {
    background: linear-gradient(rgba(26, 32, 44, 0.8), rgba(26, 32, 44, 0.8)), url('https://via.placeholder.com/1920x500/333333/FFFFFF?text=Background+Image') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    color: var(--white-color);
}
.cta-content {
    max-width: 800px;
    margin: 0 auto;
}
.cta-title {
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* 12. Footer Section
-------------------------------- */
#main-footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h4 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1rem;
}
.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}
.footer-about p {
    font-size: 0.95rem;
}
.footer-links ul li, .footer-legal ul li {
    margin-bottom: 10px;
}
.footer-links ul li a, .footer-legal ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-speed) ease;
}
.footer-links ul li a:hover, .footer-legal ul li a:hover {
    color: var(--white-color);
    padding-left: 5px;
}
.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* 13. Contact Page Specific
-------------------------------- */
.page-header-section {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-color) 0%, #3c4a6e 100%);
    color: var(--white-color);
}
.page-header-section h1 {
    color: var(--white-color);
}
.page-header-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background-color: var(--white-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.contact-info-wrapper {
    padding: 40px;
    background-color: var(--light-color);
}
.contact-info-wrapper h3 {
    margin-bottom: 1.5rem;
}
.contact-details {
    margin-top: 2rem;
}
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}
.contact-icon {
    width: 45px;
    height: 45px;
    background-color: #e6f2ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary-color);
}
.contact-text h4 {
    margin-bottom: 0.25rem;
}

.contact-form-wrapper {
    padding: 40px;
}
#contact-form .form-row {
    display: flex;
    gap: 20px;
}
#contact-form .form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}
#contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
#contact-form input,
#contact-form select,
#contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}
#contact-form textarea {
    resize: vertical;
}

/* 14. Legal Pages Specific
-------------------------------- */
.legal-content-section .container {
    max-width: 800px;
}
.legal-text-wrapper h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}
.legal-text-wrapper h2:first-of-type {
    margin-top: 0;
}
.legal-text-wrapper p {
    margin-bottom: 1rem;
}
.legal-text-wrapper ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1rem;
}
.legal-text-wrapper ul li {
    margin-bottom: 0.5rem;
}

/* 15. Animations & Keyframes
-------------------------------- */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up {
    transform: translateY(50px);
}
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.slide-in-left {
    transform: translateX(-50px);
}
.slide-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.slide-in-right {
    transform: translateX(50px);
}
.slide-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* 16. Media Queries (Responsiveness)
-------------------------------- */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        justify-content: center;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-item {
        margin: 16px 0;
        width: 100%;
    }
    .nav-link {
        color: var(--white-color);
        font-size: 1.5rem;
    }
    #main-header.scrolled .nav-link {
        color: var(--white-color);
    }
    .nav-link:hover, .nav-link.active {
        color: var(--primary-color);
    }
    .nav-link::after { display: none; }
    
    .hamburger {
        display: block;
        z-index: 1001; /* Above nav menu */
    }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .hamburger.active .bar {
        background-color: var(--white-color);
    }

    .header-cta { display: none; }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        order: 2;
    }
    .hero-image-wrapper {
        order: 1;
        margin-bottom: 2rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image-container {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    h1, .hero-title { font-size: 2.5rem; }
    h2, .section-title { font-size: 2rem; }
    .section-padding { padding: 60px 0; }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-wrapper {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    #contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .slider-controls {
        display: none; /* Hide buttons on mobile, rely on swipe */
    }
    .contact-info-wrapper, .contact-form-wrapper {
        padding: 25px;
    }
}