:root {
    --font-sans: "Poppins", ui-sans-serif, system-ui, sans-serif;
    --font-display: "Montserrat", sans-serif;
    --font-marquee: "Aclonica", sans-serif;
    --primary-orange: #ff6600;
    --primary-orange-light: #ff8c42;
    --primary-orange-lighter: #ffb380;
    --primary-orange-dark: #e65c00;
    --primary-orange-darker: #cc5200;
    --primary-orange-bg: #fff5ed;
    --primary-orange-bg-light: #fffaf5;
    --gold-accent: #ff6600;
    --dark-bg: #0a0a0a;
    --charcoal: #1a1a1a;
    --slate: #2d2d2d;
    --text-gray: #262626;
    --text-light: #8a8a8a;
    --light-gray: #f7f6f4;
    --off-white: #faf9f8;
    --white: #ffffff;
    --orange-grad: linear-gradient(135deg, #ff6600 0%, #ff6600 100%);
    --orange-grad-light: linear-gradient(135deg, #ff6600 0%, #ff6600 100%);
    --shadow-sm: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    --border-radius-card: 28px;
    --transition-smooth: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    
    /* Heading colors - solid only */
    --heading-primary: #1a1a1a;
    --heading-secondary: #2d2d2d;
    --heading-orange: #ff6600;
    --heading-orange-dark: #e65c00;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}
img:not([width]) {
    width: auto;
}
img:not([height]) {
    height: auto;
}
body {
    font-family: var(--font-sans);
    color: #202020;
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    line-height: 30px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.navbar-brand,
.nav-link,
.btn,
.section-badge,
.card-badge,
.learn-more-link {
    font-family: var(--font-sans);
}
.marquee-item {
    font-family: var(--font-marquee);
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
.preloader-logo {
    width: 100px;
    height: 100px;
    animation: pulse 1.2s infinite ease;
}
.preloader-logo img{max-width:100%;height:auto;}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}
.top-bar {
    background: var(--charcoal);
    color: #d1d1d1;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 500;
    font-family: var(--font-sans);
}
.top-bar a {
    color: #d1d1d1;
    text-decoration: none;
    transition: 0.2s;
}
.top-bar a:hover {
    color: var(--primary-orange);
}
.phone-icon-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.15);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
    color: var(--primary-orange);
}
.social-icon-round {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    transition: all 0.2s;
    color: #d1d1d1;
}
.social-icon-round:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}
.top-bar .center-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.top-bar .center-links a i {
    color: var(--primary-orange);
}
@media (max-width: 768px) {
    .top-bar .center-links,
    .top-bar .social-icons {
        display: none !important;
    }
    .top-bar .left-phone {
        justify-content: center;
        width: 100%;
        display: flex;
    }
}
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    padding: 8px 0;
    transition: var(--transition-smooth);
}
.navbar-brand img {
    height: 80px;
    width: auto;
    transition: 0.3s;
}
.navbar-nav {
    align-items: center;
}
.nav-item {
    position: relative;
    margin: 0 2px;
}
.nav-link {
    font-weight: 700;
    font-family: var(--font-sans);
    color: var(--charcoal) !important;
    padding: 12px 18px !important;
    transition: color 0.2s;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange) !important;
}
.btn-consult,
.btn-primary-glow {
    background: var(--orange-grad);
    border: none;
    color: white !important;
    box-shadow: 0 8px 18px rgba(255, 102, 0, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
}
.btn-consult:hover,
.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 102, 0, 0.4);
    background: var(--orange-grad-light);
}
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.2);
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}
.nav-item:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.simple-dropdown {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 102, 0, 0.15);
    padding: 8px 0;
}
.simple-dropdown li {
    list-style: none;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
    margin: 0 6px;
    border-radius: 16px;
}
.simple-dropdown li i {
    width: 24px;
    color: var(--primary-orange);
    font-size: 1.1rem;
}
.simple-dropdown li a {
    text-decoration: none;
    color: var(--charcoal) !important;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    letter-spacing: -0.01em;
    transition: color 0.2s;
}
.simple-dropdown li:hover {
    background: rgba(255, 102, 0, 0.08);
    transform: translateX(4px);
}
.simple-dropdown li:hover a {
    color: var(--primary-orange) !important;
}
.mega-menu {
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 1100px;
    padding: 24px 28px;
    background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
    border-radius: 32px;
    box-shadow: 0 35px 60px -20px rgba(0, 0, 0, 0.25);
}
.nav-item:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
}
.mega-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.mega-col {
    background: #ffffff;
    border-radius: 24px;
    padding: 18px 14px 20px 18px;
    transition: all 0.25s ease;
    border: 1px solid #f0eeeb;
}
.mega-col:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}
.mega-col h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-left: 3px solid var(--primary-orange);
    padding-left: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mega-col ul li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mega-col ul li i {
    width: 24px;
    color: var(--primary-orange);
}
.mega-col ul li a {
    text-decoration: none;
    color: var(--slate);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-sans);
}
.mega-col ul li:hover a {
    color: var(--primary-orange);
}
@media (max-width: 991px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
        background: white;
        border-radius: 20px;
        padding: 15px;
        margin-top: 15px;
    }
    .dropdown-menu-custom,
    .mega-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100%;
        display: none;
        background: var(--light-gray);
        margin-top: 8px;
        box-shadow: none;
        border: none;
    }
    .simple-dropdown li {
        padding: 10px 16px;
    }
    .mega-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .navbar-brand img {
        height: 55px;
        width: auto;
    }
}
.hero-slider-wrapper {
    margin-top: 0;
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    overflow: hidden;
}
.swiper-hero {
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}
.ken-burns-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
    transform: scale(1);
}
.swiper-slide-active .ken-burns-bg {
    transform: scale(1.08);
}
.slide-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 24px;
    color: white;
}
.index-hero-sub-large {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 650px;
    margin: 20px auto;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}
.index-slide-content h2 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}
.index-glow-text {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.index-highlight-gradient-hero {
    color: #ff6600;
    display: inline-block;
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.2);
}
.index-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.index-btn-primary-glow,
.index-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    min-height: 52px;
    box-sizing: border-box;
}
.index-btn-primary-glow {
    background: var(--orange-grad);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}
.index-btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    background: var(--orange-grad-light);
    color: #ffffff;
}
.index-btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}
.index-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}
.index-hero-services-tagline {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.index-hero-services-tagline span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.index-hero-services-tagline span i {
    color: var(--primary-orange);
    font-size: 0.8rem;
}
.index-hero-services-tagline span:hover {
    background: rgba(255, 102, 0, 0.15);
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}
.index-stats-marquee-section {
    background: #ffffff;
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.index-marquee-track {
    display: inline-flex;
    align-items: center;
    animation: indexMarqueeScrollRightToLeft 28s linear infinite;
}
.index-marquee-track:hover {
    animation-play-state: paused;
}
.index-marquee-item {
    font-family: var(--font-marquee);
    font-size: 46px;
    color: #0c0c20;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 70px;
    gap: 18px;
}
.index-marquee-item i {
    font-size: 44px;
    color: var(--primary-orange);
}
@keyframes indexMarqueeScrollRightToLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
.index-seo-h1-section {
    position: relative;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #faf9f8 0%, #fff5ed 100%);
    overflow: hidden;
}
.index-seo-h1-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.03"><path d="M0,400 L1200,200 L1200,600 L0,800 Z" fill="none" stroke="%23ff6600" stroke-width="2"/><circle cx="200" cy="150" r="40" fill="none" stroke="%23ff6600" stroke-width="1.5"/><circle cx="900" cy="650" r="60" fill="none" stroke="%23ff6600" stroke-width="1.5"/><path d="M300,500 L350,450 L400,500 L350,550 Z" fill="none" stroke="%23ff6600" stroke-width="1.5"/><path d="M800,200 L850,150 L900,200 L850,250 Z" fill="none" stroke="%23ff6600" stroke-width="1.5"/><line x1="500" y1="300" x2="700" y2="300" stroke="%23ff6600" stroke-width="1.5" stroke-dasharray="10 10"/><line x1="600" y1="250" x2="600" y2="350" stroke="%23ff6600" stroke-width="1.5" stroke-dasharray="10 10"/><path d="M400,600 Q500,550 600,600" fill="none" stroke="%23ff6600" stroke-width="1.5"/><path d="M700,500 Q800,450 900,500" fill="none" stroke="%23ff6600" stroke-width="1.5"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
}
.index-seo-h1-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}
.index-seo-h1-wrapper {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.index-seo-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.10);
    color: var(--primary-orange);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 102, 0, 0.15);
}
.index-seo-main-heading {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 35px;
    letter-spacing: -0.02em;
}
.index-seo-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}
/* ===== SEO SECTION BUTTONS - PROFESSIONAL GREY ===== */
.index-btn-seo-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2d2d2d;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}
.index-btn-seo-primary:hover {
    transform: translateY(-2px);
    background: #ff6600;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.30);
    color: #ffffff;
}

.index-btn-seo-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #6b6b6b;
    color: #4a4a4a;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
}
.index-btn-seo-secondary:hover {
    background: #ff6600;
    border-color: #ff6600;
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
}
.index-section-sub-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.index-highlight-point-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(77, 76, 76, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-bg);
    border: 1px solid rgba(59, 59, 59, 0.15);
    backdrop-filter: blur(2px);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}
.index-highlight-point-badge i {
    font-size: 0.9rem;
    color: var(--primary-orange);
}
.index-highlight-point-badge:hover {
    background: rgba(255, 102, 0, 0.12);
    border-color: rgba(255, 102, 0, 0.25);
    transform: translateY(-2px);
}
.index-about-heading-row {
    text-align: center;
    margin-bottom: 50px;
}
.index-about-heading-full {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    color: var(--charcoal);
}
.index-highlight-orange-full {
    color: var(--primary-orange);
    display: inline-block;
}
.index-about-highlight-points {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
    margin-top: 20px;
    justify-content: center;
}
.index-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
   
    border: 1px solid rgba(255, 102, 0, 0.12);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(77, 76, 76, 0.02);
    color: var(--dark-bg);
    transition: all 0.3s ease;
    cursor: pointer;
}
.index-highlight-badge i {
    font-size: 0.9rem;
    color: var(--primary-orange);
}
.index-highlight-badge:hover {
    background: rgba(255, 102, 0, 0.12);
    transform: translateY(-2px);
    border-color: rgba(255, 102, 0, 0.25);
}
.index-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.index-about-left {
    opacity: 0;
    transform: translateX(-30px);
    transition:
        opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1),
        transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.index-about-right {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition:
        opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1),
        transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transition-delay: 0.05s;
}
.index-about-agency.section-visible .index-about-left,
.index-about-agency.section-visible .index-about-right {
    opacity: 1;
    transform: translateX(0);
}
.index-about-description {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: justify;
}
.index-about-description a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}
.index-about-description a:hover {
    color: var(--primary-orange-dark);
    border-bottom-color: var(--primary-orange-dark);
}
.index-about-btn-wrapper {
    display: flex;
    justify-content: center;
}
.index-btn-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}
.index-btn-about:hover {
    background: var(--slate);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    color: white;
}
.index-service-google-ads {
    --card-accent: linear-gradient(135deg, #4285f4, #34a853);
    --card-border: rgba(66, 133, 244, 0.3);
    --icon-bg: #e8f0fe;
    --icon-border: rgba(66, 133, 244, 0.3);
    --icon-color: #4285f4;
    --icon-hover-bg: linear-gradient(135deg, #4285f4, #34a853);
    --title-grad-start: #4285f4;
    --title-grad-end: #34a853;
    --link-color: #4285f4;
    --link-hover: #1a73e8;
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
}
.index-service-meta-ads {
    --card-accent: linear-gradient(135deg, #1877f2, #e4405f);
    --card-border: rgba(24, 119, 242, 0.3);
    --icon-bg: #eff2ff;
    --icon-border: rgba(24, 119, 242, 0.3);
    --icon-color: #1877f2;
    --icon-hover-bg: linear-gradient(135deg, #1877f2, #e4405f);
    --title-grad-start: #1877f2;
    --title-grad-end: #e4405f;
    --link-color: #1877f2;
    --link-hover: #1266e0;
    background: linear-gradient(145deg, #ffffff, #f0f4ff);
}
.index-service-whatsapp-api {
    --card-accent: linear-gradient(135deg, #25d366, #128c7e);
    --card-border: rgba(37, 211, 102, 0.3);
    --icon-bg: #e8f5e9;
    --icon-border: rgba(37, 211, 102, 0.3);
    --icon-color: #25d366;
    --icon-hover-bg: linear-gradient(135deg, #25d366, #128c7e);
    --title-grad-start: #25d366;
    --title-grad-end: #128c7e;
    --link-color: #25d366;
    --link-hover: #20b859;
    background: linear-gradient(145deg, #ffffff, #f0fdf4);
}
.index-process-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(145deg, #ffffff 0%, #fefaf5 100%);
    overflow-x: hidden;
}
.index-process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 48px auto 0;
    max-width: 904px;
}
.index-process-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 40px 28px 34px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 0 0 280px;
    overflow: hidden;
}
.index-process-card:nth-child(1) {
    background: linear-gradient(145deg, #fff9f0, #fff5e6);
    border-bottom: 4px solid #f7931e;
}
.index-process-card:nth-child(2) {
    background: linear-gradient(145deg, #f0f5ff, #e8f0fe);
    border-bottom: 4px solid #2a73ff;
}
.index-process-card:nth-child(3) {
    background: linear-gradient(145deg, #effaf3, #e6f5ea);
    border-bottom: 4px solid #10b981;
}
.index-process-card:nth-child(4) {
    background: linear-gradient(145deg, #f9f0f5, #fce8f0);
    border-bottom: 4px solid #f43f5e;
}
.index-process-card:nth-child(5) {
    background: linear-gradient(145deg, #f5f0ff, #ede6fe);
    border-bottom: 4px solid #8b5cf6;
}
.index-process-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 55px -18px rgba(0, 0, 0, 0.15);
}
.index-step-badge {
    position: absolute;
    top: 16px;
    left: 20px;
    font-weight: 800;
    font-size: 2rem;
    font-family: var(--font-display);
    color: rgba(0, 0, 0, 0.08);
    background: transparent;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}
.index-process-card:hover .index-step-badge {
    color: rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}
.index-process-icon {
    font-size: 4.2rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
    color: var(--primary-orange);
}
.index-process-card:nth-child(2) .index-process-icon {
    color: #2a73ff;
}
.index-process-card:nth-child(3) .index-process-icon {
    color: #10b981;
}
.index-process-card:nth-child(4) .index-process-icon {
    color: #f43f5e;
}
.index-process-card:nth-child(5) .index-process-icon {
    color: #8b5cf6;
}
.index-process-card:hover .index-process-icon {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
}
.index-process-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: var(--font-display);
    color: #0f172a;
}
.index-process-card p {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 28px;
}
.index-step-arrow-indicator {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-weight: 700;
    font-size: 0.85rem;
    color: #f7931e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}
.index-process-card:nth-child(2) .index-step-arrow-indicator {
    color: #2a73ff;
}
.index-process-card:nth-child(3) .index-step-arrow-indicator {
    color: #10b981;
}
.index-process-card:nth-child(4) .index-step-arrow-indicator {
    color: #f43f5e;
}
.index-process-card:nth-child(5) .index-step-arrow-indicator {
    color: #8b5cf6;
}
.index-process-card:hover .index-step-arrow-indicator {
    gap: 14px;
}
.index-step-arrow-indicator i {
    transition: transform 0.2s;
}
.index-process-card:hover .index-step-arrow-indicator i {
    transform: translateX(5px);
}
.index-faq-premium-section {
    background: linear-gradient(145deg, #ffffff 0%, #f8f6f3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.index-faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.index-faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8e4e0;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.index-faq-item:hover {
    border-color: rgba(255, 102, 0, 0.2);
    box-shadow: 0 8px 25px -10px rgba(0, 0, 0, 0.06);
    background: #fefcfb;
}
.index-faq-item.active {
    border-color: var(--primary-orange);
    background: linear-gradient(145deg, #ffffff 0%, #fffaf5 100%);
    box-shadow: 0 12px 28px -12px rgba(255, 102, 0, 0.12);
}
.index-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}
.index-faq-question-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}
.index-faq-number {
    width: 38px;
    height: 38px;
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-orange);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.index-faq-item.active .index-faq-number {
    background: var(--orange-grad);
    border-color: var(--primary-orange);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.25);
}
.index-faq-question h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
    font-family: var(--font-display);
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}
.index-faq-item.active .index-faq-question h3 {
    color: var(--primary-orange);
}
.index-faq-toggle {
    width: 34px;
    height: 34px;
    background: rgba(255, 102, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    flex-shrink: 0;
    border: 1px solid rgba(255, 102, 0, 0.10);
}
.index-faq-toggle i {
    font-size: 0.85rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}
.index-faq-item:hover .index-faq-toggle {
    background: rgba(255, 102, 0, 0.10);
    border-color: rgba(255, 102, 0, 0.20);
}
.index-faq-item.active .index-faq-toggle {
    background: var(--orange-grad);
    border-color: var(--primary-orange);
    transform: rotate(90deg);
}
.index-faq-item.active .index-faq-toggle i {
    color: #ffffff;
}
.index-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 28px;
    background: transparent;
}
.index-faq-item.active .index-faq-answer {
    max-height: 800px;
    padding: 0 28px 26px 28px;
}
.index-faq-answer p {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--text-gray);
    margin-bottom: 18px;
    font-weight: 500;
}
.index-faq-benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 20px 0 5px;
}
.index-faq-benefits-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid rgba(255, 102, 0, 0.08);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-orange);
    transition: all 0.2s ease;
}
.index-faq-benefits-list li:hover {
    background: rgba(255, 102, 0, 0.10);
    border-color: rgba(255, 102, 0, 0.18);
    transform: translateY(-2px);
}
.index-faq-benefits-list li i {
    font-size: 0.85rem;
}
.index-faq-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin: 22px 0 18px;
}
.index-pricing-card-mini {
    background: #f8f6f3;
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
    border: 1px solid #e8e4e0;
    transition: all 0.3s ease;
}
.index-pricing-card-mini:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 102, 0, 0.25);
    background: #ffffff;
    box-shadow: 0 6px 14px -6px rgba(0, 0, 0, 0.05);
}
.index-pricing-card-mini h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.index-pricing-card-mini p {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 6px;
}
.index-pricing-card-mini span {
    font-size: 0.7rem;
    color: var(--text-light);
}
.index-faq-note {
    background: #fffaf5;
    border-left: 3px solid var(--primary-orange);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 18px;
    border: 1px solid rgba(255, 102, 0, 0.06);
}
.index-faq-note i {
    color: var(--primary-orange);
    margin-right: 8px;
}
.index-faq-note strong {
    color: var(--charcoal);
}
.index-why-choose-exact {
    padding: 80px 0;
    background: linear-gradient(145deg, #ffffff 0%, #fffaf5 100%);
    position: relative;
    overflow: hidden;
}
.index-cta-ignite {
    background: linear-gradient(125deg, var(--charcoal) 0%, var(--slate) 45%, var(--primary-orange-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.index-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.index-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border-radius: 64px;
    padding: 56px 58px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3);
}
.index-cta-text h3 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.index-cta-text .index-cta-highlight {
    color: var(--primary-orange);
    display: inline-block;
}
.index-cta-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 0;
    font-weight: 400;
}
.index-btn-cta-primary {
    background: white;
    color: var(--primary-orange);
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}
.index-btn-cta-primary:hover {
    transform: translateY(-4px);
    background: #fffaf5;
    color: var(--primary-orange-dark);
    gap: 16px;
}
.index-btn-cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.25s;
}
.index-btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-4px);
    gap: 16px;
}
@media (max-width: 768px) {
    .index-hero-sub-large {
        font-size: 1rem;
        padding: 0 15px;
    }
    .index-btn-primary-glow,
    .index-btn-outline-light {
        padding: 8px 18px;
        font-size: 0.85rem;
        min-height: 44px;
    }
    .index-hero-buttons {
        gap: 12px;
    }
    .index-hero-services-tagline {
        gap: 12px;
        margin-top: 20px;
    }
    .index-hero-services-tagline span {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    .index-slide-content h2 {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }
    .index-marquee-item {
        font-size: 26px;
        margin-right: 36px;
    }
    .index-marquee-item i {
        font-size: 26px;
    }
    .index-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .index-about-heading-full {
        font-size: 1.5rem;
    }
    .index-about-highlight-points {
        justify-content: center;
    }
    .index-highlight-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    .index-about-left {
        text-align: center;
    }
    .index-about-description {
        text-align: justify;
    }
    .index-process-section {
        padding: 75px 0;
    }
    .index-process-card {
        flex: 0 0 280px;
        padding: 32px 20px;
    }
    .index-process-icon {
        font-size: 3.2rem;
    }
    .index-step-badge {
        font-size: 1.6rem;
        top: 10px;
        left: 14px;
    }
    .index-faq-premium-section {
        padding: 60px 0;
    }
    .index-faq-question {
        padding: 16px 20px;
    }
    .index-faq-question-left {
        gap: 12px;
    }
    .index-faq-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    .index-faq-question h3 {
        font-size: 0.92rem;
        padding-right: 12px;
    }
    .index-faq-item.active .index-faq-answer {
        padding: 0 20px 20px 20px;
    }
    .index-faq-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .index-faq-benefits-list li {
        font-size: 0.72rem;
        padding: 5px 12px;
    }
    .index-why-choose-exact {
        padding: 55px 0;
    }
    .index-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
    .index-cta-text h3 {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    .index-faq-pricing-grid {
        grid-template-columns: 1fr;
    }
    .index-faq-benefits-list {
        flex-direction: column;
        align-items: center;
    }
    .index-faq-benefits-list li {
        width: 100%;
        justify-content: center;
    }
    .index-faq-question-left {
        flex-wrap: wrap;
    }
}
@media (max-width: 992px) {
    .index-about-grid {
        gap: 40px;
    }
    .index-about-heading-full {
        font-size: 1.8rem;
    }
}
.clients-marquee-section {
    background: #ffffff;
    padding: 90px 0 100px;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.client-marquee-container {
    width: 100%;
    overflow: hidden;
    margin-top: 48px;
    cursor: pointer;
}
.client-marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: scrollClients 28s linear infinite;
}
.client-marquee-container:hover .client-marquee-track {
    animation-play-state: paused;
}
.client-logo-item {
    flex: 0 0 auto;
    background: #ffffff;
    border-radius: 36px;
    padding: 1rem 2rem;
    box-shadow: 0 18px 35px -12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}
.client-logo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px -16px rgba(255, 102, 0, 0.12);
    border-color: rgba(255, 102, 0, 0.12);
}
.client-logo-item img {
    max-height: 68px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
}
@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.testimonials-premium {
    background: #f8f6f3;
    padding: 60px 0 0;
    margin: 0;
    position: relative;
}
.testimonials-premium .container {
    padding: 0 15px;
    margin: 0 auto;
}
.testimonials-premium .text-center {
    margin-bottom: 0;
}
.testimonials-slider {
    position: relative;
    padding: 0 40px;
    margin: 0;
}
.testimonials-premium .mt-5 {
    margin-top: 0 !important;
}
.testimonials-premium .testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 22px;
    margin: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 102, 0, 0.06);
    transition: all 0.3s ease;
    height: 325px;
    display: flex;
    flex-direction: column;
}
.testimonials-premium .testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.15);
    box-shadow: 0 15px 30px -10px rgba(255, 102, 0, 0.06);
}
.testimonial-stars {
    margin-bottom: 12px;
    display: flex;
    gap: 3px;
}
.testimonial-stars i {
    color: var(--gold-accent);
    font-size: 0.8rem;
}
.testimonial-stars i.far,
.testimonial-stars i.fa-star-o {
    color: #d1d1d1;
}
.testimonial-text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--slate);
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0eeeb;
}
.testimonial-profile img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 102, 0, 0.15);
    background: #fff;
}
.testimonial-info {
    flex: 1;
}
.testimonial-info h4 {
    font-weight: 700;
    color: var(--charcoal);
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.testimonial-info span {
    font-size: 0.65rem;
    color: var(--primary-orange);
    font-weight: 500;
    background: rgba(255, 102, 0, 0.06);
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
}


.rating-stars {
    margin-bottom: 12px;
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #FFB800;
    font-size: 0.8rem;
}

.rating-stars i.far {
    color: #e2e8f0;
}

.swiper-testimonials {
    overflow: visible;
    margin: 0;
    padding: 0;
}
.swiper-testimonials .swiper-button-prev,
.swiper-testimonials .swiper-button-next {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    color: var(--primary-orange);
    top: 50%;
    transform: translateY(-50%);
}
.swiper-testimonials .swiper-button-prev:after,
.swiper-testimonials .swiper-button-next:after {
    font-size: 0.9rem;
    font-weight: bold;
}
.swiper-testimonials .swiper-button-prev:hover,
.swiper-testimonials .swiper-button-next:hover {
    background: var(--orange-grad);
    color: #ffffff;
}
.testimonials-slider .swiper-pagination {
    display: none !important;
}
.swiper-testimonials .swiper-wrapper {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.swiper-testimonials .swiper-slide {
    height: auto;
}
.verified-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border-radius: 50px;
    padding: 4px 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
@media (max-width: 992px) {
    .testimonials-premium {
        padding: 50px 0 0;
    }
    .testimonials-premium .testimonial-card {
        height: 300px;
        padding: 20px 18px;
    }
    .testimonial-text {
        font-size: 0.85rem;
        -webkit-line-clamp: 5;
    }
}
@media (max-width: 768px) {
    .testimonials-premium {
        padding: 40px 0 0;
    }
    .testimonials-slider {
        padding: 0 30px;
    }
    .testimonials-premium .testimonial-card {
        height: auto;
        min-height: 260px;
        padding: 18px 16px;
    }
    .testimonial-text {
        font-size: 0.83rem;
        -webkit-line-clamp: 5;
    }
    .swiper-testimonials .swiper-button-prev,
    .swiper-testimonials .swiper-button-next {
        display: none;
    }
    .testimonial-profile img {
        width: 36px;
        height: 36px;
    }
    .testimonial-info h4 {
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .testimonials-premium {
        padding: 30px 0 0;
    }
    .testimonials-premium .testimonial-card {
        min-height: 250px;
    }
}
.testimonials-premium .swiper-wrapper {
    position: relative;
    width: 100%;
    height: auto !important;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}
.cta-ignite {
    background: linear-gradient(125deg, var(--charcoal) 0%, var(--slate) 100%, var(--primary-orange-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border-radius: 64px;
    padding: 56px 58px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3);
}
.cta-text h3 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.cta-text .cta-highlight {
    color: var(--primary-orange);
    display: inline-block;
}
.cta-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 0;
    font-weight: 400;
}
.btn-cta-primary {
    background: white;
    color: var(--primary-orange);
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}
.btn-cta-primary:hover {
    transform: translateY(-4px);
    background: #fffaf5;
    color: var(--primary-orange-dark);
    gap: 16px;
}
.btn-cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.25s;
}
.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-4px);
    gap: 16px;
}
@media (max-width: 900px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
    .cta-text h3 {
        font-size: 2rem;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: #25d366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    z-index: 99;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.25s ease;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    background: #20b859;
}
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 25px;
    background: var(--orange-grad);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 99;
}
.floating-enquiry {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: var(--orange-grad);
    color: var(--white, #ffffff);
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 10px;
    border-radius: 0 28px 28px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
}
.floating-enquiry i {
    writing-mode: horizontal-tb;
    font-size: 1.5rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.floating-enquiry span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}
.floating-enquiry:hover {
    left: 6px;
    background: var(--orange-grad-light);
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 12px 28px -5px rgba(255, 102, 0, 0.35);
    padding: 20px 12px;
}
@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.3);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}
.floating-enquiry {
    animation: softPulse 1.5s ease-out 1;
}
@media (max-width: 768px) {
    .floating-enquiry {
        padding: 14px 6px;
    }
    .floating-enquiry i {
        font-size: 1.2rem;
    }
    .floating-enquiry span {
        font-size: 0.7rem;
    }
}
.footer-premium {
    background: var(--charcoal);
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 102, 0, 0.04) 0%, rgba(0, 0, 0, 0) 80%);
    color: #cbd5e1;
    padding: 80px 0 40px;
    font-family: var(--font-sans);
    border-top: 1px solid rgba(255, 102, 0, 0.12);
    position: relative;
    overflow: hidden;
}
.footer-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}
.footer-col h4:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 2px;
}
.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    display: block;
}
.footer-col p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #94a3b8;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.footer-col ul li i.fas.fa-caret-right {
    color: var(--primary-orange);
    font-size: 0.75rem;
    margin-right: 8px;
    flex-shrink: 0;
}
.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-grow: 1;
}
.footer-col ul li a:hover {
    color: var(--primary-orange);
    transform: translateX(4px);
}
.footer-contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    word-break: break-word;
}
.footer-contact-info li i {
    color: var(--primary-orange);
    font-size: 1rem;
    margin-top: 3px;
    width: 20px;
    flex-shrink: 0;
}
.footer-contact-info li span,
.footer-contact-info li a {
    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.4;
}
.social-footer {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.social-footer a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: #cbd5e1;
    transition: 0.25s;
    font-size: 1.1rem;
}
.social-footer a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}
.footer-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin: 20px 0 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-cta-row .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 102, 0, 0.10);
    padding: 8px 20px;
    border-radius: 40px;
    transition: 0.25s;
    text-decoration: none;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 102, 0, 0.10);
}
.footer-cta-row .cta-badge:hover {
    background: rgba(255, 102, 0, 0.20);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.12);
}
.footer-cta-row .cta-badge img {
    height: 38px;
    width: auto;
    display: block;
    transition: transform 0.3s;
}
.footer-cta-row .cta-badge img:hover {
    transform: scale(1.05);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
}
.footer-bottom .legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.2s;
}
.footer-bottom a:hover {
    color: var(--primary-orange);
}
.footer-links-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0 30px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-links-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}
.footer-links-col h4:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 2px;
}
.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-col ul li {
    margin-bottom: 12px;
}
.footer-links-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links-col ul li a:hover {
    color: var(--primary-orange);
    transform: translateX(4px);
}
@media (max-width: 991px) {
    .footer-links-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}
@media (max-width: 768px) {
    .footer-grid {
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-cta-row {
        gap: 18px;
    }
    .footer-cta-row .cta-badge img {
        height: 32px;
    }
}
@media (max-width: 576px) {
    .footer-links-row {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-links-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links-col ul li a {
        justify-content: center;
    }
}
.premium-services {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(145deg, #faf9f8 0%, #ffffff 100%);
    overflow: hidden;
}
.premium-services .bg-blob-1,
.premium-services .bg-blob-2 {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: floatBlob 14s infinite alternate ease-in-out;
}
.premium-services .bg-blob-1 {
    top: -15%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.06) 0%, rgba(255, 102, 0, 0) 70%);
}
.premium-services .bg-blob-2 {
    bottom: -10%;
    right: -3%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.04) 0%, rgba(255, 102, 0, 0) 70%);
    animation-duration: 18s;
    animation-direction: alternate-reverse;
}
@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, 20px) scale(1.1);
    }
}
.section-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.08);
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 1rem;
    padding: 6px 22px;
    border-radius: 60px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 102, 0, 0.10);
    font-family: var(--font-sans);
}
.gradient-headline {
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-family: var(--font-display);
}
.highlight-gradient {
    /* color: var(--primary-orange); */
    color: var(--charcoal);
    /* background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange)); */
    -webkit-background-clip: text;
    background-clip: text;
    /* color: transparent; */
}
.section-sub {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 1100px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
    font-family: var(--font-sans);
}
.premium-services .section-sub {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 920px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
    font-family: var(--font-sans);
}
.service-glass-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 40px;
    padding: 2.2rem 1.8rem;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
}
.service-glass-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
}
.service-glass-card:hover::after {
    left: 125%;
}
.service-glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--card-accent, var(--orange-grad));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 40px 40px 0 0;
}
.service-glass-card:hover::before {
    transform: scaleX(1);
}
.service-glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 55px -20px rgba(0, 0, 0, 0.2);
    border-color: var(--card-border, rgba(247, 147, 30, 0.3));
}
.icon-circle {
    width: 88px;
    height: 88px;
    background: var(--icon-bg, #fff7ef);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid var(--icon-border, rgba(247, 147, 30, 0.3));
}
.service-glass-card:hover .icon-circle {
    background: var(--icon-hover-bg, var(--orange-grad));
    transform: scale(1.05) rotate(2deg);
    border-color: transparent;
}
.service-glass-card:hover .icon-circle i {
    color: white !important;
}
.icon-circle i {
    font-size: 2.9rem;
    color: var(--icon-color, var(--primary-orange));
    transition: all 0.25s ease;
}
.service-title {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
    letter-spacing: -0.01em;
    font-family: var(--font-display);
}
.service-glass-card:hover .service-title {
    background: linear-gradient(135deg, var(--title-grad-start, var(--primary-orange)), var(--title-grad-end, var(--deep-orange)));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.service-desc {
    color: #4b6584;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 500;
    font-family: var(--font-sans);
}
.learn-more-link {
    font-weight: 800;
    color: var(--link-color, var(--primary-orange));
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: var(--font-sans);
}
.learn-more-link i {
    transition: transform 0.3s ease;
}
.learn-more-link:hover {
    gap: 14px;
    color: var(--link-hover, var(--deep-orange));
}
.learn-more-link:hover i {
    transform: translateX(6px);
}
.row .col-lg-4.col-md-6:nth-child(1) .service-glass-card {
    --card-accent: linear-gradient(135deg, #f7931e, #ff8c00);
    --card-border: rgba(247, 147, 30, 0.4);
    --icon-bg: #fff2e6;
    --icon-border: rgba(247, 147, 30, 0.4);
    --icon-color: #f7931e;
    --icon-hover-bg: linear-gradient(135deg, #f7931e, #ff8c00);
    --title-grad-start: #f7931e;
    --title-grad-end: #ff8c00;
    --link-color: #f7931e;
    --link-hover: #e67e22;
    background: linear-gradient(145deg, #ffffff, #fffbf5);
}
.row .col-lg-4.col-md-6:nth-child(2) .service-glass-card {
    --card-accent: linear-gradient(135deg, #2a73ff, #3b82f6);
    --card-border: rgba(42, 115, 255, 0.4);
    --icon-bg: #ebf2ff;
    --icon-border: rgba(42, 115, 255, 0.4);
    --icon-color: #2a73ff;
    --icon-hover-bg: linear-gradient(135deg, #2a73ff, #3b82f6);
    --title-grad-start: #2a73ff;
    --title-grad-end: #3b82f6;
    --link-color: #2a73ff;
    --link-hover: #1e5bce;
    background: linear-gradient(145deg, #ffffff, #f5f9ff);
}
.row .col-lg-4.col-md-6:nth-child(3) .service-glass-card {
    --card-accent: linear-gradient(135deg, #10b981, #059669);
    --card-border: rgba(16, 185, 129, 0.4);
    --icon-bg: #e6f7f0;
    --icon-border: rgba(16, 185, 129, 0.4);
    --icon-color: #10b981;
    --icon-hover-bg: linear-gradient(135deg, #10b981, #059669);
    --title-grad-start: #10b981;
    --title-grad-end: #059669;
    --link-color: #10b981;
    --link-hover: #047857;
    background: linear-gradient(145deg, #ffffff, #f0fdf4);
}
.row .col-lg-4.col-md-6:nth-child(4) .service-glass-card {
    --card-accent: linear-gradient(135deg, #8b5cf6, #6d28d9);
    --card-border: rgba(139, 92, 246, 0.4);
    --icon-bg: #f2eeff;
    --icon-border: rgba(139, 92, 246, 0.4);
    --icon-color: #8b5cf6;
    --icon-hover-bg: linear-gradient(135deg, #8b5cf6, #6d28d9);
    --title-grad-start: #8b5cf6;
    --title-grad-end: #6d28d9;
    --link-color: #8b5cf6;
    --link-hover: #5b21b6;
    background: linear-gradient(145deg, #ffffff, #f8f4ff);
}
.row .col-lg-4.col-md-6:nth-child(5) .service-glass-card {
    --card-accent: linear-gradient(135deg, #f43f5e, #e11d48);
    --card-border: rgba(244, 63, 94, 0.4);
    --icon-bg: #ffe8ec;
    --icon-border: rgba(244, 63, 94, 0.4);
    --icon-color: #f43f5e;
    --icon-hover-bg: linear-gradient(135deg, #f43f5e, #e11d48);
    --title-grad-start: #f43f5e;
    --title-grad-end: #e11d48;
    --link-color: #f43f5e;
    --link-hover: #be123c;
    background: linear-gradient(145deg, #ffffff, #fff5f7);
}
.row .col-lg-4.col-md-6:nth-child(6) .service-glass-card {
    --card-accent: linear-gradient(135deg, #f59e0b, #d97706);
    --card-border: rgba(245, 158, 11, 0.4);
    --icon-bg: #fff4e0;
    --icon-border: rgba(245, 158, 11, 0.4);
    --icon-color: #f59e0b;
    --icon-hover-bg: linear-gradient(135deg, #f59e0b, #d97706);
    --title-grad-start: #f59e0b;
    --title-grad-end: #d97706;
    --link-color: #f59e0b;
    --link-hover: #b45309;
    background: linear-gradient(145deg, #ffffff, #fffbf0);
}
.about-agency {
    background-color: #f8f6f3;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}
.deco-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: #dbeafe;
    opacity: 0.6;
    animation: floatSoft 6s infinite alternate ease-in-out;
}
.deco-dot-1 {
    width: 70px;
    height: 70px;
    background: #fde68a;
    top: 8%;
    left: 3%;
    opacity: 0.4;
}
.deco-dot-2 {
    width: 45px;
    height: 45px;
    background: #e8d5c4;
    bottom: 12%;
    right: 2%;
    opacity: 0.4;
    animation-duration: 8s;
}
.deco-dot-3 {
    width: 28px;
    height: 28px;
    background: #f5d5c0;
    top: 35%;
    right: 15%;
    opacity: 0.5;
    animation-duration: 7s;
}
.deco-dot-4 {
    width: 100px;
    height: 100px;
    background: #ece4dc;
    bottom: 5%;
    left: 8%;
    opacity: 0.2;
    filter: blur(8px);
}
.deco-dot-5 {
    width: 20px;
    height: 20px;
    background: #fcd34d;
    top: 65%;
    left: 85%;
    animation-duration: 5s;
    opacity: 0.5;
}
.deco-dot-6 {
    width: 55px;
    height: 55px;
    background: #e8d5c4;
    bottom: 18%;
    right: 25%;
    opacity: 0.15;
    filter: blur(6px);
}
.accent-arc {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}
.arc-1 {
    top: 15%;
    right: 5%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid rgba(255, 102, 0, 0.15);
    border-top-color: transparent;
    border-right-color: transparent;
    transform: rotate(45deg);
    opacity: 0.5;
}
@keyframes floatSoft {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    100% {
        transform: translateY(-15px) translateX(10px);
    }
}
.organic-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blob-image {
    position: relative;
    width: 100%;
    border-radius: 65% 35% 58% 42%/48% 42% 58% 52%;
    overflow: hidden;
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
    background: #fff;
}
.blob-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blob-image:hover img {
    transform: scale(1.02);
}
.dashed-outline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 65% 35% 58% 42%/48% 42% 58% 52%;
    border: 2px dashed var(--primary-orange);
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}
.exp-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--orange-grad);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: 800;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    transform: scale(0);
}
.exp-badge span:first-child {
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.exp-badge span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.95;
    letter-spacing: 1px;
}
.about-agency.section-visible .exp-badge {
    transform: scale(1);
}
@media (max-width: 768px) {
    .about-agency {
        padding: 80px 0;
    }
    .deco-dot-1,
    .deco-dot-2,
    .deco-dot-4 {
        display: none;
    }
}
/* ── COZY SLIDER STYLES ── */
.cozy-slider-section {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 2.8rem 2rem;
    background: #f8f6f3;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 102, 0, 0.04) 0%, transparent 50%);
    border-radius: 4rem 4rem 3rem 3rem;
    box-shadow:
        0 20px 60px -15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* header */
.cozy-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cozy-icon {
    background: #ece8e4;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.cozy-slider-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.3px;
    text-transform: capitalize;
    margin: 0;
}

.header-right .cozy-badge {
    background: #ece8e4;
    color: var(--primary-orange);
    padding: 0.4rem 1.6rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    border: 1px solid #e0dcd8;
    backdrop-filter: blur(2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* slider wrapper (with overflow & buttons) */
.cozy-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2.5rem;
    padding: 0.25rem 0.25rem 0.25rem 0.25rem;
    background: rgba(255, 255, 255, 0.3);
}

.cozy-slider-track {
    display: flex;
    gap: 1.8rem;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding: 0.4rem 0.2rem;
}

/* card */
.cozy-card {
    flex: 0 0 calc(33.333% - 1.2rem);
    min-width: 240px;
    background: #fffffffa;
    backdrop-filter: blur(4px);
    border-radius: 2.2rem;
    overflow: hidden;
    box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.cozy-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 50px -14px rgba(255, 102, 0, 0.10);
    border-color: rgba(255, 102, 0, 0.12);
    background: #ffffff;
}

.cozy-card-image {
    position: relative;
    width: 100%;
    padding-top: 62%;
    overflow: hidden;
    background: #edece8;
}

.cozy-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.6s ease;
}

.cozy-card:hover .cozy-card-image img {
    transform: scale(1.05);
}

.cozy-category {
    position: absolute;
    bottom: 14px;
    left: 16px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(8px);
    color: #f8f6f3;
    padding: 0.25rem 1.2rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cozy-card-body {
    padding: 1.6rem 1.6rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #faf9f8 100%);
}

.cozy-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.4;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cozy-card:hover .cozy-card-title {
    color: var(--primary-orange);
}

.cozy-card-desc {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.9rem;
    flex: 1;
    opacity: 0.85;
}

.cozy-card-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
    border-top: 1px solid #eeebe8;
    padding-top: 0.9rem;
}

.cozy-card-meta i {
    margin-right: 4px;
    color: var(--primary-orange);
    font-size: 0.7rem;
}

.cozy-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.25s;
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
    align-self: flex-start;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cozy-readmore i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.cozy-readmore:hover {
    color: var(--primary-orange-dark);
    border-bottom-color: var(--primary-orange);
}

.cozy-readmore:hover i {
    transform: translateX(6px);
}

/* navigation buttons */
.cozy-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--charcoal);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.cozy-nav:hover {
    background: #ffffff;
    border-color: var(--primary-orange);
    box-shadow: 0 10px 24px rgba(255, 102, 0, 0.10);
    transform: translateY(-50%) scale(1.05);
}

.cozy-nav:active {
    transform: translateY(-50%) scale(0.94);
}

.cozy-nav-prev {
    left: 12px;
}

.cozy-nav-next {
    right: 12px;
}

.cozy-nav.disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: default;
    transform: translateY(-50%) scale(0.9);
}

/* dots */
.cozy-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2.2rem;
    flex-wrap: wrap;
}

.cozy-dots span {
    width: 10px;
    height: 10px;
    border-radius: 30px;
    background: #d1cdc8;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.cozy-dots span.active {
    background: var(--primary-orange);
    width: 28px;
    border-color: var(--primary-orange);
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.15);
}

.cozy-dots span:hover:not(.active) {
    background: #b8b2ab;
}

.cozy-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    color: var(--text-gray);
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    width: 100%;
}

/* responsive */
@media (max-width: 1024px) {
    .cozy-card {
        flex: 0 0 calc(50% - 1rem);
    }
    .cozy-slider-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .cozy-card {
        flex: 0 0 calc(100% - 0.2rem);
    }
    .cozy-slider-section {
        padding: 1.8rem 1rem;
        border-radius: 2.5rem;
    }
    .cozy-slider-header h2 {
        font-size: 1.5rem;
    }
    .cozy-nav {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    .cozy-nav-prev {
        left: 4px;
    }
    .cozy-nav-next {
        right: 4px;
    }
    .cozy-card-body {
        padding: 1.2rem 1.2rem 1.4rem;
    }
    .cozy-card-title {
        font-size: 1rem;
    }
}

@media (min-width: 1025px) {
    .cozy-card {
        flex: 0 0 calc(33.333% - 1.2rem);
    }
}

/* ===== PROFESSIONAL H2 STYLES ===== */
/* Excludes hero slider h2 tags */
h2:not(.index-slide-content h2):not(.hero-slide h2) {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-size: 3rem !important;
}

/* Wrap h2 content in a span for proper underline positioning */
h2:not(.index-slide-content h2):not(.hero-slide h2) .h2-text-wrapper {
    position: relative;
    display: inline-block; /* THIS IS KEY - makes the underline align with the text */
    text-align: left; /* Default left alignment */
}

/* For center-aligned h2, override the text alignment */
.text-center h2:not(.index-slide-content h2):not(.hero-slide h2) .h2-text-wrapper {
    text-align: center;
}

/* Subtle underline accent for h2 - positioned below the text only */
h2:not(.index-slide-content h2):not(.hero-slide h2) .h2-text-wrapper::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
    margin-top: 12px;
    border-radius: 2px;
    opacity: 0.7;
}

/* Center-aligned h2 with centered underline */
.text-center h2:not(.index-slide-content h2):not(.hero-slide h2) .h2-text-wrapper::after {
    margin-left: auto;
    margin-right: auto;
}

/* H2 with orange highlight */
h2:not(.index-slide-content h2):not(.hero-slide h2) .highlight-gradient {
    color: var(--primary-orange);
}

/* H2 - Light variant for dark backgrounds */
h2:not(.index-slide-content h2):not(.hero-slide h2).h2-light {
    color: #ffffff;
}
h2:not(.index-slide-content h2):not(.hero-slide h2).h2-light .h2-text-wrapper::after {
    background: var(--primary-orange-light);
}

/* H2 - Small variant */
h2:not(.index-slide-content h2):not(.hero-slide h2).h2-sm {
    font-size: 1.8rem;
}

/* H2 - Large variant */
h2:not(.index-slide-content h2):not(.hero-slide h2).h2-lg {
    font-size: 3.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h2:not(.index-slide-content h2):not(.hero-slide h2) {
        font-size: 1.8rem;
        letter-spacing: -0.01em;
    }
    h2:not(.index-slide-content h2):not(.hero-slide h2) .h2-text-wrapper::after {
        width: 45px;
        height: 2.5px;
        margin-top: 10px;
    }
    h2:not(.index-slide-content h2):not(.hero-slide h2).h2-lg {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    h2:not(.index-slide-content h2):not(.hero-slide h2) {
        font-size: 1.5rem;
    }
    h2:not(.index-slide-content h2):not(.hero-slide h2) .h2-text-wrapper::after {
        width: 35px;
        height: 2px;
        margin-top: 8px;
    }
    h2:not(.index-slide-content h2):not(.hero-slide h2).h2-lg {
        font-size: 1.8rem;
    }
}

/* ===== EXISTING H2 STYLES (Keep as is - for slider only) ===== */
.index-slide-content h2,
.hero-slide h2 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
}
.index-slide-content h2 .h2-text-wrapper::after,
.hero-slide h2 .h2-text-wrapper::after {
    display: none;
}

/* ---------- PRELOADER SECTION CSS ---------- */
.preloader-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Hide preloader after loading */
.preloader-section.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.brand-logo {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heartbeat 1.5s ease-in-out infinite;
  user-select: none;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255, 102, 0, 0.2));
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 40px rgba(255, 102, 0, 0.3));
  }
  28% {
    transform: scale(1);
    filter: drop-shadow(0 0 30px rgba(255, 102, 0, 0.2));
  }
  42% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 35px rgba(255, 102, 0, 0.25));
  }
  70% {
    transform: scale(1);
    filter: drop-shadow(0 0 30px rgba(255, 102, 0, 0.2));
  }
  100% {
    transform: scale(1);
  }
}

.loading-text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.loading-dots {
  display: inline-flex;
  gap: 0.2rem;
  margin-left: 0.2rem;
}

.loading-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary-orange);
  border-radius: 50%;
  animation: dotBounce 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 12px var(--primary-orange);
  }
}

/* ============================================================
   TESTIMONIALS SECTION - WITH WORKING VERTICAL SCROLL
   ============================================================ */

.testimonials-premium {
    background: #f8f6f3;
    padding: 60px 0 80px;
    margin: 0;
    position: relative;
}

.testimonials-premium .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* ---- HEADER STYLES ---- */
.testimonials-premium .text-center {
    margin-bottom: 30px;
}

.testimonials-premium .section-badge {
    display: inline-block;
    background: rgba(255, 102, 0, 0.08);
    color: #ff6600;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 102, 0, 0.10);
}

.testimonials-premium .gradient-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.testimonials-premium .section-sub {
    font-size: 1rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.verified-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border-radius: 50px;
    padding: 4px 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* ---- SLIDER CONTAINER ---- */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Swiper container */
.swiper-testimonials {
    position: relative;
    overflow: hidden !important;
    padding: 0 44px;
    margin: 0;
    width: 100%;
}

/* Swiper wrapper */
.swiper-testimonials .swiper-wrapper {
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

/* Each slide */
.swiper-testimonials .swiper-slide {
    height: auto;
    padding: 0 6px !important;
    box-sizing: border-box;
    flex-shrink: 0;
    width: auto;
}

/* ---- TESTIMONIAL CARD - WITH WORKING SCROLL ---- */
.testimonials-premium .testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 102, 0, 0.05);
    transition: all 0.3s ease;
    height: 260px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.testimonials-premium .testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.15);
    box-shadow: 0 12px 28px -8px rgba(255, 102, 0, 0.08);
}

/* ---- SCROLLABLE TEXT CONTAINER ---- */
.testimonial-text-scroll {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 12px;
    padding-right: 6px;
    min-height: 60px;
    max-height: 140px; /* Adjust as needed */
}

/* Custom scrollbar - WebKit */
.testimonial-text-scroll::-webkit-scrollbar {
    width: 5px;
}

.testimonial-text-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-text-scroll::-webkit-scrollbar-thumb {
    background: #ff6600;
    border-radius: 10px;
}

.testimonial-text-scroll::-webkit-scrollbar-thumb:hover {
    background: #e65c00;
}

/* Firefox scrollbar */
.testimonial-text-scroll {
    scrollbar-width: thin;
    scrollbar-color: #ff6600 #f1f1f1;
}

/* Stars */
.testimonial-stars {
    margin-bottom: 8px;
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.testimonial-stars i {
    color: #FFB800;
    font-size: 0.85rem;
}

.testimonial-stars i.far,
.testimonial-stars i.fa-star-o {
    color: #d1d1d1;
}

/* Text - no line clamp */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0;
    padding: 0;
}

/* Profile - fixed at bottom */
.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0eeeb;
    flex-shrink: 0;
    margin-top: auto;
}

.testimonial-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 102, 0, 0.10);
    background: #fff;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
    min-width: 0;
}

.testimonial-info h4 {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.9rem;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-info span {
    font-size: 0.65rem;
    color: #ff6600;
    font-weight: 500;
    background: rgba(255, 102, 0, 0.06);
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    white-space: nowrap;
}

/* ---- NAVIGATION BUTTONS ---- */
.swiper-testimonials .swiper-button-prev,
.swiper-testimonials .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    color: #ff6600;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin: 0;
}

.swiper-testimonials .swiper-button-prev {
    left: 6px;
}

.swiper-testimonials .swiper-button-next {
    right: 6px;
}

.swiper-testimonials .swiper-button-prev:after,
.swiper-testimonials .swiper-button-next:after {
    font-size: 0.85rem;
    font-weight: 700;
}

.swiper-testimonials .swiper-button-prev:hover,
.swiper-testimonials .swiper-button-next:hover {
    background: #ff6600;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.25);
    border-color: #ff6600;
}

.swiper-testimonials .swiper-button-disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* ---- HIDE PAGINATION DOTS ---- */
.swiper-testimonials .swiper-pagination {
    display: none !important;
}

/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 992px) {
    .testimonials-premium {
        padding: 50px 0 60px;
    }
    
    .testimonials-premium .gradient-headline {
        font-size: 2rem;
    }
    
    .testimonials-premium .testimonial-card {
        height: 325px;
        padding: 18px 16px;
    }
    
    .swiper-testimonials {
        padding: 0 36px;
    }
    
    .swiper-testimonials .swiper-slide {
        padding: 0 5px !important;
    }
    
    .testimonial-text-scroll {
        max-height: 150px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .testimonials-premium {
        padding: 40px 0 50px;
    }
    
    .testimonials-premium .gradient-headline {
        font-size: 1.6rem;
    }
    
    .testimonials-premium .testimonial-card {
        height: auto;
        min-height: 240px;
        padding: 16px 14px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .testimonial-text-scroll {
        max-height: 130px;
        min-height: 50px;
    }
    
    .swiper-testimonials {
        padding: 0 10px;
    }
    
    .swiper-testimonials .swiper-slide {
        padding: 0 4px !important;
    }
    
    .swiper-testimonials .swiper-button-prev,
    .swiper-testimonials .swiper-button-next {
        width: 32px;
        height: 32px;
    }
    
    .swiper-testimonials .swiper-button-prev {
        left: 2px;
    }
    
    .swiper-testimonials .swiper-button-next {
        right: 2px;
    }
    
    .swiper-testimonials .swiper-button-prev:after,
    .swiper-testimonials .swiper-button-next:after {
        font-size: 0.7rem;
    }
    
    .testimonial-profile img {
        width: 34px;
        height: 34px;
    }
    
    .testimonial-info h4 {
        font-size: 0.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .testimonials-premium {
        padding: 30px 0 40px;
    }
    
    .testimonials-premium .testimonial-card {
        min-height: 220px;
        padding: 14px 12px;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
    }
    
    .testimonial-text-scroll {
        max-height: 110px;
        min-height: 40px;
    }
    
    .swiper-testimonials {
        padding: 0 6px;
    }
    
    .swiper-testimonials .swiper-slide {
        padding: 0 3px !important;
    }
    
    .swiper-testimonials .swiper-button-prev,
    .swiper-testimonials .swiper-button-next {
        width: 28px;
        height: 28px;
    }
    
    .swiper-testimonials .swiper-button-prev {
        left: 0px;
    }
    
    .swiper-testimonials .swiper-button-next {
        right: 0px;
    }
    
    .swiper-testimonials .swiper-button-prev:after,
    .swiper-testimonials .swiper-button-next:after {
        font-size: 0.6rem;
    }
}

/* ---- ENSURE CONTAINER IS CENTERED ---- */
@media (min-width: 1200px) {
    .testimonials-premium .container {
        max-width: 1200px;
    }
}