/*
 * Digital Marketing Agency Theme
 * Author: Your Name
 * Version: 1.0
 */

/* ===================================================================
   01. CSS Variables & Global Styles
   =================================================================== */

:root {
    --primary-color: #FF3B30;
    --secondary-color: #34C759;
    --dark-bg: #0D0D0D;
    --light-bg: #1E1E1E;
    --text-light: #F5F5F5;
    --text-medium: #A1A1A1;
    --text-dark: #1C1C1C;
    --border-color: #2C2C2C;
    --white-color: #FFFFFF;
    --font-primary: 'Urbanist', sans-serif;
    --header-height: 80px;
    --border-radius: 12px;
    --transition-speed: 0.3s ease;
    --box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    --box-shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.6);
}


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white-color);
}

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: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-alt {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* ===================================================================
   02. Utility Classes
   =================================================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-speed) ease;
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0060c0;
    border-color: #0060c0;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 132, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* ===================================================================
   03. Header
   =================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-speed) ease;
}

.site-header.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    border-bottom-color: var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    height: var(--header-height);
}

.logo a {
    display: inline-block;
}

.logo img {
    height: 40px;
    transition: transform var(--transition-speed) ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 2px;
    background-color: var(--white-color);
    transition: all 0.2s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--white-color);
    transition: all 0.2s ease-in-out;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-open .hamburger {
    background-color: transparent;
}

.nav-open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-open .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}


/* ===================================================================
   04. Hero Section
   =================================================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #121212, #0a2f4d, #121212, #4d1c3e);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===================================================================
   05. Services Section
   =================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-dark);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(10, 132, 255, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all var(--transition-speed) ease;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    color: var(--text-light);
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.service-card:hover .service-link::after {
    width: 100%;
}

/* ===================================================================
   06. Process Section
   =================================================================== */

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.process-step {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.process-step:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 60px;
}

.process-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--light-bg);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.process-step:nth-child(odd) .process-icon {
    right: -30px;
}

.process-step:nth-child(even) .process-icon {
    left: -30px;
}

.process-content {
    padding: 20px 30px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.process-title {
    color: var(--primary-color);
}

/* ===================================================================
   07. Interactive Report Section
   =================================================================== */

.report-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
}

.report-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.report-card.large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.report-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.kpi-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
}

.kpi-value.highlight {
    color: var(--primary-color);
}

.report-description {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: auto;
}

.chart-container {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.bar-chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    width: 100%;
    height: 250px;
    border-left: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    padding: 10px 0 0 10px;
}

.bar-item {
    width: 40px;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.animate-on-scroll.is-visible .bar-item {
    height: attr(data-value) !important;
}

.bar-item::before {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.bar-item:hover::before {
    opacity: 1;
}

.bar-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    color: var(--text-medium);
}

/* ===================================================================
   08. Testimonials Section
   =================================================================== */

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    background-color: var(--dark-bg);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-light);
}

.author-name {
    color: var(--white-color);
    margin-bottom: 0;
}

.author-title {
    color: var(--primary-color);
    font-weight: 500;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 0;
}

.slider-btn {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.slider-btn.prev {
    transform: translateX(-70px);
}

.slider-btn.next {
    transform: translateX(70px);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===================================================================
   09. Industries Section
   =================================================================== */

.industries-tabs-container {
    display: flex;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    width: 250px;
    flex-shrink: 0;
    border-right: 1px solid var(--border-color);
}

.tab-link {
    background: none;
    border: none;
    color: var(--text-medium);
    padding: 20px;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all var(--transition-speed) ease;
    border-left: 3px solid transparent;
}

.tab-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white-color);
}

.tab-link.active {
    background-color: rgba(10, 132, 255, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.tabs-content {
    padding: 40px;
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s;
}

.tab-pane h3 {
    color: var(--primary-color);
}

.tab-pane ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 20px;
}

.tab-pane ul li {
    margin-bottom: 10px;
    color: var(--text-medium);
}

/* ===================================================================
   10. CTA Section
   =================================================================== */

.cta-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    background-image: linear-gradient(45deg, var(--primary-color) 0%, #0056b3 100%);
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white-color);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .btn-primary {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--light-bg);
    color: var(--white-color);
    border-color: var(--light-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===================================================================
   11. Footer
   =================================================================== */

.site-footer {
    background-color: var(--light-bg);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-column.about p {
    color: var(--text-medium);
}

.footer-heading {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-column.links ul li {
    margin-bottom: 10px;
}

.footer-column.links a {
    color: var(--text-medium);
}

.footer-column.links a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.footer-column.contact p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.footer-column.contact a {
    color: var(--text-medium);
}

.footer-column.contact a:hover {
    color: var(--white-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-bg);
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ===================================================================
   12. Contact & Legal Pages
   =================================================================== */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background-color: var(--light-bg);
}

.page-title {
    font-size: 3rem;
}

.page-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.form-title,
.info-title {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.3);
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    flex-shrink: 0;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-content h4 {
    margin-bottom: 5px;
    color: var(--white-color);
}

.contact-content p,
.contact-content a {
    margin: 0;
    color: var(--text-medium);
}

.contact-content a:hover {
    color: var(--primary-color);
}

.legal-content {
    background-color: var(--light-bg);
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content ul {
    list-style: disc;
    padding-left: 25px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
    color: var(--text-medium);
}

/* ===================================================================
   13. Animations
   =================================================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.services-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.services-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.services-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.process-step.animate-on-scroll:nth-child(odd) {
    transform: translateX(-50px);
}

.process-step.animate-on-scroll:nth-child(even) {
    transform: translateX(50px);
}

.process-step.animate-on-scroll.is-visible {
    transform: translateX(0);
}

.process-step.animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.process-step.animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.process-step.animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.process-step.animate-on-scroll:nth-child(4) {
    transition-delay: 0.4s;
}


/* ===================================================================
   14. Responsive Design
   =================================================================== */

/* Tablets and smaller desktops */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--light-bg);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
    }

    .nav-open .main-nav {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }

    .nav-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }

    /* Hide quote button on mobile nav */

    .report-dashboard {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .report-card.large {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        min-height: 400px;
    }

    .industries-tabs-container {
        flex-direction: column;
    }

    .tabs-nav {
        flex-direction: row;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        overflow-x: auto;
    }

    .tab-link {
        flex-shrink: 0;
        border-left: none;
        border-bottom: 3px solid transparent;
        text-align: center;
    }

    .tab-link.active {
        border-left: none;
        border-bottom-color: var(--primary-color);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section-padding,
    .section-padding-alt {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .process-timeline::after {
        left: 30px;
        margin-left: 0;
    }

    .process-step {
        width: 100%;
        padding-left: 80px;
        padding-right: 10px;
        text-align: left !important;
    }

    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        left: 0;
    }

    .process-icon {
        left: 0 !important;
    }

    .process-step:nth-child(odd) .process-icon,
    .process-step:nth-child(even) .process-icon {
        left: 0px !important;
    }

    .slider-btn {
        display: none;
    }

    /* Hide arrows on mobile, rely on swipe (if implemented) or auto-play */
    .testimonial-slider {
        padding: 40px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column.about p {
        max-width: 400px;
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }
}