/*
* Digital Marketing Agency Website Stylesheet
*
* Table of Contents:
* 1.  :root & Global Styles
* 2.  Typography & Base Elements
* 3.  Utility Classes
* 4.  Header & Navigation
* 5.  Footer
* 6.  Buttons & Forms
* 7.  Hero Section
* 8.  Trusted By Section
* 9.  Services Section (with 3D Card Flip)
* 10. About / Why Choose Us Section
* 11. Stats Counter Section
* 12. Testimonials Section (Slider)
* 13. Call to Action (CTA) Section
* 14. Page Header (for inner pages)
* 15. Legal Content Page Styles
* 16. Contact Page Styles
* 17. Popup Styles
* 18. Animation Keyframes & Scroll Effects
* 19. Responsive Design (Media Queries)
*/

/* 1. :root & Global Styles */
:root {
    --primary-color: #0052cc;
    /* A strong, professional blue */
    --primary-color-dark: #0041a3;
    --secondary-color: #4cceac;
    /* A vibrant, modern teal accent */
    --secondary-color-dark: #3aa88c;
    --dark-color: #121f3a;
    /* Dark blue for text and backgrounds */
    --text-color: #4a5568;
    /* Gray for body text */
    --light-gray-color: #f7fafc;
    --border-color: #e2e8f0;
    --white-color: #ffffff;
    --header-height: 80px;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --container-width: 1200px;
    --border-radius: 8px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    background-color: var(--white-color);
    line-height: 1.7;
    overflow-x: hidden;
}

/* 2. Typography & Base Elements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-color-dark);
}

ul,
ol {
    list-style-position: inside;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: var(--secondary-color);
}

/* 4. Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: background-color var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    align-items: center;
}

.header.scrolled {
    background-color: var(--dark-color);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 80px;
    margin-right: 12px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--white-color);
    font-family: var(--font-primary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-toggle,
.nav-close {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 1.5rem;
}

/* 5. Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col .logo {
    margin-bottom: 1.5rem;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col-title {
    color: white;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.75rem;
    transition: color var(--transition-speed), padding-left var(--transition-speed);
}

.footer-links ul li a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li a:hover {
    color: var(--white-color);
}

.footer-contact ul li i {
    margin-top: 5px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* 6. Buttons & Forms */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width var(--transition-speed);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    color: var(--white-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.hero-section .btn-secondary {
    color: var(--white-color);
    border-color: var(--white-color);
}

.hero-section .btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--dark-color);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.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(0, 82, 204, 0.2);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

/* 7. Hero Section */
.hero-section {
    background: linear-gradient(45deg, var(--dark-color), #2c3e50);
    color: var(--white-color);
    padding: calc(var(--header-height) + 120px) 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
}

.hero-visual-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translate(-50%, -50%) rotate(15deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.3;
    animation: blob-morph 10s infinite alternate;
}

.hero-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.hero-bg-shape {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--white-color);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
    z-index: 5;
}

.page-header-section .hero-bg-shape {
    background-color: var(--light-gray-color);
}

/* 8. Trusted By Section */
.trusted-by-section {
    padding: 50px 0;
    background-color: var(--white-color);
    position: relative;
    z-index: 6;
}

.trusted-by-title {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #a0aec0;
    margin-bottom: 2rem;
}

.trusted-by-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    font-size: 2.5rem;
    color: #cbd5e0;
}

.trusted-by-logos i {
    transition: color var(--transition-speed);
}

.trusted-by-logos i:hover {
    color: var(--text-color);
}

/* 9. Services Section (with 3D Card Flip) */
.services-section {
    background-color: var(--light-gray-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.5s, box-shadow 0.5s;
    transform-style: preserve-3d;
    min-height: 350px;
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: rotateY(180deg);
    box-shadow: var(--shadow-md);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.service-card-back {
    background-color: var(--dark-color);
    color: var(--white-color);
    transform: rotateY(180deg);
    border-radius: var(--border-radius);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-title {
    margin-bottom: 1rem;
}

.service-back-title {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card-back ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-card-back ul li {
    margin-bottom: 0.5rem;
}

/* 10. About / Why Choose Us Section */
.about-section {
    background-color: var(--white-color);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.about-image-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80%;
    height: 80%;
    background-color: var(--secondary-color);
    opacity: 0.2;
    border-radius: var(--border-radius);
    z-index: 1;
}

.about-content .section-title {
    font-size: 2.8rem;
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-content .section-subtitle {
    margin: 0 0 2rem 0;
    max-width: 100%;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.features-list li:not(:last-child) {
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
}

/* 11. Stats Counter Section */
.stats-section {
    background: linear-gradient(rgba(18, 31, 58, 0.9), rgba(18, 31, 58, 0.9)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2670&auto=format&fit=crop') center/cover no-repeat fixed;
    color: var(--white-color);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* 12. Testimonials Section (Slider) */
.testimonials-section {
    background-color: var(--light-gray-color);
}

.testimonial-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 250px;
    /* Adjust as needed */
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 40px 50px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateX(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3rem;
}

.testimonial-quote::before {
    content: '\f10d';
    /* Font Awesome quote-left icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.5;
}

.author-name {
    font-weight: 700;
}

.author-title {
    color: var(--text-color);
    font-size: 0.9rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: -80px;
    right: -80px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

/* 13. Call to Action (CTA) Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 80px 0;
}

.cta-container {
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.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: transparent;
    color: var(--white-color);
}

/* 14. Page Header (for inner pages) */
.page-header-section {
    background: linear-gradient(45deg, var(--dark-color), #2c3e50);
    color: var(--white-color);
    padding: calc(var(--header-height) + 80px) 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header-section h1 {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
    color: var(--white-color);
}

.breadcrumbs span,
.breadcrumbs i {
    color: var(--secondary-color);
}

/* 15. Legal Content Page Styles */
.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1.5rem;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--dark-color);
}

/* 16. Contact Page Styles */
.contact-page-section {
    background-color: var(--light-gray-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-info-panel h3 {
    margin-bottom: 1rem;
}

.contact-info-panel p {
    margin-bottom: 2rem;
}

.contact-details-list {
    list-style: none;
}

.contact-details-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-details-list li:not(:last-child) {
    margin-bottom: 2rem;
}

.contact-details-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-details-list h4 {
    margin-bottom: 0.25rem;
}

.contact-details-list p,
.contact-details-list a {
    margin: 0;
}

/* 17. Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed);
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform var(--transition-speed);
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.popup-content h3 {
    margin-bottom: 1rem;
}

.popup-content p {
    margin-bottom: 2rem;
}

/* 18. Animation Keyframes & Scroll Effects */
@keyframes blob-morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 60% 40% 30% 70% / 60% 70% 30% 40%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.animate-in {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-in.fade-in-up {
    transform: translateY(50px);
}

.animate-in.fade-in-left {
    transform: translateX(-50px);
}

.animate-in.fade-in-right {
    transform: translateX(50px);
}

.animate-in.zoom-in {
    transform: scale(0.9);
}

.animate-in.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* 19. Responsive Design (Media Queries) */
@media (max-width: 1200px) {
    .slider-controls {
        position: static;
        transform: none;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }

    .header {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--dark-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: right var(--transition-speed);
        z-index: 1001;
    }

    .nav-menu.show {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-toggle,
    .nav-close {
        display: block;
    }

    .nav-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
    }

    .header-actions .btn {
        display: none;
        /* Hide quote button on mobile nav trigger */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto 3rem;
    }

    .about-content .section-title,
    .about-content .section-subtitle {
        text-align: center;
    }

    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2,
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col .logo,
    .social-links,
    .footer-contact ul li {
        justify-content: center;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .header-actions .btn {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slider {
        padding: 30px 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-wrapper {
        padding: 20px;
    }

    .trusted-by-logos {
        gap: 2rem;
    }
}