:root {
    --primary-color: #5170ff;
    --primary-hover: #4058cc;
    --secondary-color: #ff66c4;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #fff;
    --primary-gradient: linear-gradient(135deg, #5170ff 0%, #ff66c4 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

img,
video,
iframe,
lottie-player {
    max-width: 100%;
    height: auto;
}

table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: var(--bg-light);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0 auto;
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0 auto;
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0 auto;
}

.container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 45px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.scrolled {
    padding: 10px 0;
}

.logo h1 {
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav .btn-primary {
    color: #fff;
}

.nav-header {
    display: none;
}

.nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dark);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:not(.btn-primary):hover {
    color: var(--primary-color);
}

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(81, 112, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mega Menu */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children>a::after {
    display: none;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #fff;
    width: 900px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    display: block !important;
    transition: all 0.3s ease;
}

.menu-item-has-children:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mega-menu-column {
    padding: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.mega-menu-column:last-child {
    border-bottom: none;
}

.mega-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-section-title i {
    font-size: 1rem;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 8px;
}

.mega-menu-column ul li a {
    display: block;
    padding: 6px 10px;
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mega-menu-column ul li a:hover {
    color: var(--primary-color);
    background: rgba(81, 112, 255, 0.08);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: var(--primary-gradient);
    opacity: 0.05;
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-gradient);
    opacity: 0.05;
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.05;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    text-align: left;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.hero-text .hero-subtitle {
    text-align: left;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-text .hero-buttons {
    justify-content: flex-start;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-section {
    width: 100%;
    padding: 40px 0;
    text-align: center;
}

.trust-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #777;
    margin-bottom: 35px;
}

.trust-section .trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-card {
    width: 260px;
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.trust-card img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.trust-content {
    text-align: left;
}

.trust-content h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.trust-content p {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

@media(max-width: 768px) {
    .trust-section {
        padding: 20px 0;
    }

    .trust-title {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .trust-section .trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .trust-card {
        width: auto;
        max-width: none;
        padding: 10px 14px;
        border-radius: 12px;
        gap: 10px;
        flex: 0 1 auto;
    }

    .trust-card img {
        width: 28px;
        height: 28px;
    }

    .trust-content h4 {
        font-size: 13px;
    }

    .trust-content p {
        font-size: 11px;
        margin-top: 2px;
    }
}

.hero-image {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image lottie-player,
.hero-image .lottie-hero {
    width: 100% !important;
    height: auto !important;
    max-width: 420px;
}

.hero-image {
    flex-shrink: 0;
    width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image lottie-player {
    width: 100%;
    height: auto;
}

@media (min-width: 1025px) {
    .hero-image {
        max-width: 600px;
    }
    .hero-image lottie-player,
    .hero-image .lottie-hero {
        max-width: 600px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trusted-by-bottom {
    text-align: center;
    margin-top: 50px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.logos-scroll {
    display: flex;
    gap: 40px;
    overflow: visible;
    padding: 30px 0;
    padding-left: 20px;
    width: 200%;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    white-space: nowrap;
    flex-shrink: 0;
}

.company-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.company-logo i {
    font-size: 1.6rem;
    color: var(--logo-color);
}

.company-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

/* Split Section */
.split-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: var(--white);
}

.split-container {
    display: flex;
    width: 100%;
    min-height: 50vh;
}

.split-left {
    flex: 1;
    position: relative;
    min-height: 350px;
}

.split-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(81, 112, 255, 0.4) 0%, rgba(255, 102, 196, 0.4) 100%),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1200') center/cover no-repeat;
}

.split-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(81, 112, 255, 0.3);
}

.split-foreground-image {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 700px;
    height: 400px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.split-foreground-image lottie-player {
    width: 100% !important;
    height: 100% !important;
}

.split-right {
    flex: 1;
    background: linear-gradient(135deg, #5170ff 0%, #ff66c4 100%);
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-content {
    max-width: 500px;
}

.split-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.split-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.7;
}

.split-cta {
    display: inline-block;
    padding: 14px 28px;
    background: #000;
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.split-cta:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

.split-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(81, 112, 255, 0.3);
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-content {
    display: flex;
    gap: 80px;
    align-items: start;
}

.services-left {
    flex: 1;
    position: sticky;
    top: 120px;
    min-height: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(81, 112, 255, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.services-right {
    flex: 1;
    width: 100%;
}

.services-accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    width: 100%;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-header:hover {
    background: rgba(81, 112, 255, 0.03);
}

.accordion-number {
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    margin-right: 20px;
}

.accordion-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-icon {
    color: var(--primary-color);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 55px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 55px 30px;
}

.accordion-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #5170ff 0%, #ff66c4 100%);
}

.why-us-content {
    display: flex;
    gap: 80px;
    align-items: stretch;
}

.why-us-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-us-text .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.why-us-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-us-image {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.feature-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(81, 112, 255, 0.15);
}

.feature-item i {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(81, 112, 255, 0.15);
}

.feature-item i {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.why-us-image {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(248, 249, 250, 0.8),
        0 10px 40px rgba(81, 112, 255, 0.1);
}

.why-us-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    border-radius: 20px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(81, 112, 255, 0.1);
}

.image-placeholder lottie-player {
    width: 100% !important;
    height: 100% !important;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.testimonials-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.testimonials-slider::before,
.testimonials-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.testimonials-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.testimonial-card {
    flex-shrink: 0;
    min-width: 300px;
    max-width: 300px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

@keyframes logos-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    min-width: 380px;
    max-width: 380px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(81, 112, 255, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(81, 112, 255, 0.15);
    border-color: rgba(81, 112, 255, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(81, 112, 255, 0.1);
}

.avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 18px;
    box-shadow: 0 8px 20px rgba(81, 112, 255, 0.25);
}

.client-info h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.client-info span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 18px;
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    padding-left: 20px;
}

.testimonial-card p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.portfolio-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1534430480872-3498386e7856?w=1920&q=80') center / cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.portfolio-section .container {
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.portfolio-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.portfolio-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15px 0;
    flex: 1;
}

.portfolio-slider-track .portfolio-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(81, 112, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 5px;
}

.slider-dots .dot:hover {
    background: var(--primary-color);
}

.portfolio-slider-track::-webkit-scrollbar {
    display: none;
}

.portfolio-slider-track .portfolio-item {
    min-width: 340px;
    max-width: 340px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(81, 112, 255, 0.3);
}

.slider-prev {
    left: -22px;
}

.slider-next {
    right: -22px;
}

.portfolio-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(81, 112, 255, 0.2);
}

.portfolio-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.06);
}

.portfolio-image i {
    font-size: 3rem;
    color: var(--text-light);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h1 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-map {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.footer-map h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-light);
}

.cta-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Blog Page */
.blog-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(81, 112, 255, 0.15);
}

.blog-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-content > a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-content > a:hover {
    color: var(--primary-hover);
}

.blog-meta-row {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-meta-row i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-category,
.blog-author {
    transition: color 0.3s ease;
}

.blog-category:hover,
.blog-author:hover {
    color: var(--primary-color);
}

.no-blogs {
    text-align: center;
    padding: 60px 20px;
}

.no-blogs h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.no-blogs p {
    color: var(--text-light);
}

/* Agencies Page */
.agencies-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #5170ff 0%, #ff66c4 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cta {
    padding: 100px 0;
    text-align: center;
    background: var(--white);
    color: var(--text-dark);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* About Page */
.about-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #5170ff 0%, #ff66c4 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Legal Pages (Terms, Privacy) */
.legal-content {
    padding: 80px 0;
}

.legal-text-block {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text-block h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-text-block p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-text-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.stats {
    padding: 80px 0;
    background: var(--bg-light);
}

.stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats .stat-item {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.stats .stat-item:hover {
    transform: translateY(-4px);
}

.stats .stat-item .gradient-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stats .stat-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Stats Section (Homepage) */
.stats-section {
    padding: 80px 0;
    background: var(--primary-gradient);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

@media (max-width: 768px) {

    .mobile-menu-btn {
        display: block;
    }

    .header .container {
        position: relative;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 25px 20px;
        gap: 25px;
        z-index: 10000;
        transition: right 0.35s ease;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-header-title {
        font-size: 1.3rem;
        font-weight: 700;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .nav-header-title a {
        color: inherit;
        text-decoration: none;
        background: inherit;
        -webkit-background-clip: inherit;
        -webkit-text-fill-color: inherit;
        background-clip: inherit;
    }

    .nav-header-title a::after {
        display: none;
    }

    .nav-close-btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-dark);
        padding: 5px;
    }

    .nav ul {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }

    .nav ul li {
        width: 100%;
    }

    .nav ul li a {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav ul li a::after {
        display: none;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-actions a {
        width: 100%;
        text-align: center;
    }

    .menu-item-has-children .mega-menu {
        display: none !important;
    }

    /* Hero Mobile */
    .hero {
        padding: 110px 0 40px;
    }

    .hero-content {
        flex-direction: column;
        gap: 20px;
    }

    .hero-text {
        order: -1;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        flex-shrink: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-image lottie-player,
    .hero-image .lottie-hero {
        width: 280px !important;
        height: 280px !important;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-text .hero-subtitle {
        text-align: center;
        font-size: 1rem;
    }

    .hero-text .hero-buttons {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .hero-text .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .trusted-by-bottom {
        margin-top: 30px;
        font-size: 0.8rem;
    }

    .logos-scroll {
        gap: 20px;
        padding: 20px 0;
        padding-left: 10px;
    }

    .company-logo {
        padding: 10px 16px;
        gap: 8px;
    }

    .company-logo i {
        font-size: 1.2rem;
    }

    .company-name {
        font-size: 0.9rem;
    }

    /* Split Section Mobile */
    .split-container {
        flex-direction: column;
    }

    .split-left {
        height: 35vh;
        min-height: 250px;
    }

    .split-foreground-image {
        top: 70%;
        right: 85px;
        width: 60%;
        max-width: 300px;
        height: 180px;
    }

    .split-right {
        padding: 50px 25px;
    }

    .split-content h2 {
        font-size: 1.8rem;
    }

    .split-content p {
        font-size: 1rem;
    }

    .services-content {
        flex-direction: column;
        gap: 20px;
    }

    .services-right {
        display: none;
    }

    .services-section {
        padding: 50px 0;
    }

    .services-header {
        margin-bottom: 30px;
    }

    .services-header .section-title {
        font-size: 1.6rem;
    }

    .services-header .section-subtitle {
        font-size: 0.95rem;
    }

    .services-left {
        position: static;
        min-height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .service-icon i {
        font-size: 1.1rem;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .accordion-header {
        padding: 14px 0;
    }

    .accordion-number {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        margin-right: 12px;
    }

    .accordion-title {
        font-size: 0.95rem;
    }

    .accordion-content {
        padding: 0 38px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 38px 18px;
    }

    .feature-list li {
        font-size: 0.85rem;
    }

    .why-us-section {
        padding: 60px 0;
    }

    .why-us-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .why-us-text .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .why-us-text>p {
        text-align: center;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 25px 20px;
    }

    .feature-item i {
        font-size: 2.2rem;
    }

    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta .cta-buttons {
        flex-direction: column;
    }

    .cta .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .why-us-image {
        min-height: 300px;
    }

    .image-placeholder {
        min-height: 300px;
    }

    .portfolio-section {
        padding: 50px 0;
    }

    .portfolio-header {
        margin-bottom: 30px;
    }

    .portfolio-header .section-title {
        font-size: 1.6rem;
    }

    .portfolio-header .section-subtitle {
        font-size: 0.95rem;
    }

    .portfolio-slider-wrapper {
        padding: 0 20px;
    }

    .portfolio-slider-track {
        gap: 15px;
        padding: 10px 0;
    }

    .portfolio-slider-track .portfolio-item {
        min-width: 240px;
        max-width: 240px;
    }

    .portfolio-image {
        height: 170px;
    }

    .portfolio-info {
        padding: 16px;
    }

    .portfolio-info h3 {
        font-size: 1rem;
    }

    .portfolio-info p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .slider-prev {
        left: -6px;
    }

    .slider-next {
        right: -6px;
    }

    .slider-dots {
        margin-top: 20px;
        gap: 8px;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }

    .slider-dots .dot.active {
        width: 22px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials-header .section-title {
        font-size: 1.8rem;
    }

    .testimonials-header .section-subtitle {
        font-size: 1rem;
    }

    .testimonials-slider::before,
    .testimonials-slider::after {
        width: 60px;
    }

    .testimonials-track {
        animation: scroll 20s linear infinite;
    }

    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        padding: 20px;
    }

    .avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .client-info h4 {
        font-size: 1rem;
    }

    .client-info span {
        font-size: 0.85rem;
    }

    .testimonial-card p {
        font-size: 0.95rem;
        padding-left: 15px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo h1 {
        font-size: 1.3rem;
    }

    .footer-links {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .footer-links:last-child {
        border-bottom: none;
    }

    .footer h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .map-wrapper iframe {
        height: 220px;
    }

    .footer ul li {
        margin-bottom: 8px;
    }

    .footer a {
        font-size: 0.85rem;
    }

    .footer-social {
        width: 100%;
        padding-top: 10px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Page Hero Mobile */
    .page-hero {
        padding: 110px 0 50px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* Portfolio Grid Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* About Content Mobile */
    .about-content {
        padding: 50px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card {
        padding: 25px 20px;
    }

    .about-card h3 {
        font-size: 1.15rem;
    }

    .about-card p {
        font-size: 0.9rem;
    }

    /* About Stats Mobile */
    .stats {
        padding: 50px 0;
    }

    .stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stats .stat-item {
        padding: 25px 15px;
    }

    .stats .stat-item .gradient-text {
        font-size: 1.8rem;
    }

    .stats .stat-item p {
        font-size: 0.85rem;
    }

    /* Legal Pages Mobile */
    .legal-content {
        padding: 50px 0;
    }

    .legal-text-block h2 {
        font-size: 1.25rem;
        margin-top: 30px;
    }

    .legal-text-block p {
        font-size: 0.9rem;
    }
}

/* ============================
   QUOTE / CONTACT SECTION
   ============================ */
.quote-section {
    padding: 140px 0 100px;
    background: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-left {
    padding-top: 20px;
}

.quote-left .small-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.quote-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quote-left h2 .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-left>p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.trust-badges {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.trust-badge span {
    font-weight: 500;
    color: var(--text-dark);
}

.testimonial-card-mini {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(81, 112, 255, 0.08);
}

.testimonial-card-mini>p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-card-mini>p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author .avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(81, 112, 255, 0.25);
    margin-right: 0;
}

.testimonial-author .info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author .info span {
    font-size: 0.85rem;
    color: var(--primary-color);
}

.quote-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(81, 112, 255, 0.08);
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quote-form .form-group {
    margin-bottom: 22px;
}

.quote-form .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(81, 112, 255, 0.1);
}

.quote-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload {
    border: 2px dashed #d0d0d0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: var(--primary-color);
    background: rgba(81, 112, 255, 0.03);
}

.file-upload i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.file-upload p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.browse-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.file-upload:hover .browse-btn {
    background: var(--primary-color);
    color: white;
}

.legal-text {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.checkbox-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(81, 112, 255, 0.3);
}

/* Quote Section Responsive */
@media (max-width: 1024px) {
    .quote-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quote-left h2 {
        font-size: 2rem;
    }

    .quote-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .quote-section {
        padding: 110px 0 60px;
    }

    .quote-left h2 {
        font-size: 1.75rem;
    }

    .quote-left>p {
        font-size: 1rem;
    }

    .trust-badges {
        gap: 20px;
        flex-wrap: wrap;
    }

    .quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-form-wrapper {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .quote-section {
        padding: 100px 0 50px;
    }

    .quote-left h2 {
        font-size: 1.5rem;
    }

    .quote-form-wrapper {
        padding: 20px 15px;
    }

    .submit-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .file-upload {
        padding: 20px;
    }

    .testimonial-card-mini {
        padding: 20px;
    }

    .portfolio-slider-track {
        gap: 15px;
    }

    .portfolio-slider-track .portfolio-item {
        min-width: 240px;
        max-width: 240px;
    }

    .slider-btn {
        width: 42px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 20px;
    }

    .split-content h2 {
        font-size: 1.4rem;
    }

    .split-right {
        padding: 35px 20px;
    }

    .split-foreground-image {
        width: 85%;
        height: 150px;
    }

    .testimonial-card {
        min-width: 240px;
        max-width: 240px;
        padding: 18px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .cta-buttons a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Landscape mobile adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero-content {
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 1.4rem;
    }

    .hero-image {
        max-width: 200px;
    }

    .split-left {
        height: 200px;
    }

    .split-foreground-image {
        height: 140px;
        margin-top: -30px;
    }

    .services-section,
    .why-us-section,
    .testimonials,
    .stats-section,
    .cta-section,
    .portfolio-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch-friendly tap targets */
@media (max-width: 1024px) {

    button,
    .nav a,
    .accordion-header,
    .feature-item,
    .service-card {
        min-height: 44px;
    }

    a,
    button {
        touch-action: manipulation;
    }

    .btn-primary,
    .btn-secondary {
        -webkit-tap-highlight-color: transparent;
    }

    /* Mobile Animation Optimizations */
    .hero-image .lottie-hero {
        width: 340px !important;
        height: 340px !important;
    }

    .hero-image lottie-player {
        width: 340px !important;
        height: 340px !important;
    }

    .split-foreground-image lottie-player {
        width: 100% !important;
        height: 100% !important;
    }

    .why-us-image lottie-player {
        width: 100% !important;
        height: 100% !important;
    }

    .image-placeholder lottie-player {
        width: 100% !important;
        height: 100% !important;
    }
}

/* Small mobile hero lottie override */
@media (max-width: 768px) {
    .hero-image lottie-player,
    .hero-image .lottie-hero {
        width: 280px !important;
        height: 280px !important;
    }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Thank You Page */
.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    text-align: center;
    background: var(--bg-light);
}

.thank-you-content {
    max-width: 500px;
    margin: 0 auto;
}

.thank-you-icon i {
    font-size: 4rem;
    color: #25d366;
    margin-bottom: 20px;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.thank-you-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.thank-you-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .thank-you {
        padding: 120px 0 60px;
        min-height: 60vh;
    }

    .thank-you-icon i {
        font-size: 3rem;
    }

    .thank-you-content h1 {
        font-size: 1.8rem;
    }

    .thank-you-text {
        font-size: 1rem;
    }

    .thank-you-buttons {
        flex-direction: column;
    }

    .thank-you-buttons a {
        width: 100%;
        text-align: center;
    }
}