/* ============================
   CSS Variables & Reset
============================ */
:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --tertiary-bg: #1a1a1a;
    --card-bg: #151515;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-light-gray: #666666;
    --accent-red: #e63946;
    --accent-red-hover: #ff4757;
    --accent-red-dark: #c52d3a;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-red: 0 10px 40px rgba(230, 57, 70, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

body {
    font-family: 'Red Hat Display', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 120px 0;
}

/* ============================
   Custom Cursor
============================ */
.custom-cursor {
    pointer-events: none;
    position: fixed;
    z-index: 99999;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    pointer-events: none;
    z-index: 99999;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    pointer-events: none;
    z-index: 99998;
    opacity: 0.5;
}

.cursor-dot.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(230, 57, 70, 0.1);
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent-red);
    opacity: 1;
}

/* ============================
   Preloader
============================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 30px;
}

.preloader-logo .logo-text {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.preloader-logo .logo-text.accent {
    color: var(--accent-red);
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background-color: var(--tertiary-bg);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 15px;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background-color: var(--accent-red);
    border-radius: 3px;
}

.preloader-percentage {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.header-logo{
    max-width: 110px;
}

/* ============================
   Buttons
============================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--text-white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 15px;
}

/* ============================
   Section Headers
============================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-red);
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--accent-red);
}

.section-subtitle::before {
    left: -30px;
}

.section-subtitle::after {
    right: -30px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: var(--accent-red);
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================
   Header Styles
============================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.main-header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: var(--transition);
}

.main-header.scrolled .header-wrapper {
    padding: 15px 0;
}

/* Logo */
.logo h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
}

.logo h1 span {
    color: var(--accent-red);
}

/* Navigation */
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav .nav-list li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.main-nav .nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: var(--transition);
}

.main-nav .nav-list li a:hover,
.main-nav .nav-list li a.active {
    color: var(--accent-red);
}

.main-nav .nav-list li a:hover::after,
.main-nav .nav-list li a.active::after {
    width: 100%;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 240px;
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    font-size: 14px;
    color: var(--text-gray);
    transition: var(--transition);
}

.dropdown li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent-red);
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0;
    transition: var(--transition);
}

.dropdown li a:hover {
    color: var(--text-white);
    background-color: rgba(230, 57, 70, 0.05);
}

.dropdown li a:hover::before {
    opacity: 1;
}

.dropdown li a::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-bg);
    z-index: 999;
    transition: var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    text-align: center;
}

.mobile-nav-list li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.mobile-menu.active .mobile-nav-list li {
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition);
}

.mobile-nav-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-list li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-list li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-list li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-list li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-list li a {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-white);
    transition: var(--transition);
}

.mobile-nav-list li a:hover {
    color: var(--accent-red);
}

/* Mobile submenu (Services dropdown) */
.mobile-has-submenu {
    position: relative;
}

.mobile-has-submenu .mobile-link {
    width: 100%;
    padding: 14px 0;
    border: none;
    background: none;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-primary);
}

.mobile-has-submenu .mobile-link span{
        font-size: 32px;
    font-weight: 600;
    color: var(--text-white);
    transition: var(--transition);
}

.mobile-has-submenu .mobile-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-submenu {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-submenu li {
    margin-bottom: 10px;
}

.mobile-submenu li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
}

.mobile-submenu li a:hover {
    color: var(--accent-red);
}

/* When submenu is open */
.mobile-has-submenu.open .mobile-submenu {
    max-height: 300px; /* enough to show all items */
}

.mobile-has-submenu.open .mobile-link i {
    transform: rotate(180deg);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-footer .social-links {
    display: flex;
    gap: 20px;
}

.mobile-menu-footer .social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition);
}

.mobile-menu-footer .social-links a:hover {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
}

/* ============================
   Hero Slider Styles
============================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.slide.active .slide-bg img {
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.4) 100%
    );
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}

.slide-content-inner {
    max-width: 700px;
}

.slide-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-red);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease 0.3s;
}

.slide-title {
    margin-bottom: 25px;
}

.slide-title .title-line {
    display: block;
    font-size: 65px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
}

.slide.active .slide-title .title-line {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .slide-title .title-line:nth-child(1) {
    transition: all 0.6s ease 0.4s;
}

.slide.active .slide-title .title-line:nth-child(2) {
    transition: all 0.6s ease 0.5s;
}

.slide-title .highlight {
    color: var(--accent-red);
    position: relative;
}

.slide-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease 0.6s;
}

.slide-cta {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-cta {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease 0.7s;
}

/* Slider Navigation Arrows - Positioned 20px from bottom */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
}

.slider-arrow {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-white);
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.1);
    box-shadow: var(--shadow-red);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--accent-red);
}

.dot.active::after {
    border-color: var(--accent-red);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================
   Services Section
============================ */
.services-section {
    background-color: var(--primary-bg);
    position: relative;
}

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

.home-services-section .service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.home-services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-hover));
    transform: scaleX(0);
    transition: var(--transition);
}

.home-services-section .service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: var(--shadow);
}

.home-services-section .service-card:hover::before {
    transform: scaleX(1);
}

.home-services-section .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.home-services-section .service-icon i {
    font-size: 32px;
    color: var(--accent-red);
    transition: var(--transition);
}

.home-services-section .service-card:hover .service-icon {
    background: var(--accent-red);
    transform: rotateY(360deg);
}

.home-services-section .service-card:hover .service-icon i {
    color: var(--text-white);
}

.home-services-section .service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.home-services-section .service-description {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.home-services-section .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.home-services-section .service-link:hover {
    gap: 15px;
}

/* ============================
   About Section
============================ */
.about-section {
    background-color: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image .image-wrapper img {
    width: 100%;
    height: 500px;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-red);
}

.experience-badge .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    color: var(--text-white);
    text-align: center;
    line-height: 1.3;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), transparent);
    opacity: 0.1;
}

.floating-shapes .shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

.floating-shapes .shape-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: -80px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.about-content .section-subtitle,
.about-content .section-title {
    text-align: left;
}

.about-content .section-subtitle::before,
.about-content .section-subtitle::after {
    display: none;
}

.about-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--accent-red);
    font-size: 18px;
}

.feature-item span {
    font-size: 15px;
    color: var(--text-white);
}

/* ============================
   Stats Section
============================ */
.stats-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    z-index: -1;
}

.stats-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png') repeat;
    opacity: 0.05;
}

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

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number .suffix {
    font-size: 40px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================
   Portfolio Section
============================ */
.portfolio-section {
    background-color: var(--primary-bg);
}

.home-portfolio-section .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.home-portfolio-section  .portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.home-portfolio-section  .portfolio-item.large {
    grid-column: span 2;
}

.home-portfolio-section  .portfolio-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.home-portfolio-section  .portfolio-item.large .portfolio-image {
    height: 350px;
}

.home-portfolio-section  .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-portfolio-section  .portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.home-portfolio-section  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.home-portfolio-section  .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.home-portfolio-section  .portfolio-info {
    transform: translateY(20px);
    transition: var(--transition);
}

.home-portfolio-section .portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.home-portfolio-section .portfolio-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 10px;
    display: block;
}

.home-portfolio-section .portfolio-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.home-portfolio-section .portfolio-link {
    width: 50px;
    height: 50px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.home-portfolio-section .portfolio-link:hover {
    background-color: var(--text-white);
    color: var(--accent-red);
    transform: scale(1.1);
}

.section-cta {
    text-align: center;
}

/* ============================
   Testimonials Section
============================ */
.testimonials-section {
    background-color: var(--secondary-bg);
}

.home-testimonial-section .testimonial-item {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.home-testimonial-section .quote-icon {
    margin-bottom: 30px;
}

.home-testimonial-section .quote-icon i {
    font-size: 50px;
    color: var(--accent-red);
    opacity: 0.5;
}

.home-testimonial-section .testimonial-text {
    font-size: 24px;
    color: var(--text-white);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 40px;
}

.home-testimonial-section .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.home-testimonial-section .author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-red);
}

.home-testimonial-section .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-testimonial-section .author-info {
    text-align: left;
}

.home-testimonial-section .author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
}

.home-testimonial-section .author-title {
    font-size: 14px;
    color: var(--text-gray);
}

/* ============================
   Partners Section
============================ */
.partners-section {
    padding: 100px 0;
    background-color: var(--secondary-bg);
    overflow: hidden;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.partners-wrapper {
    margin-top: 60px;
    position: relative;
}

/* Fade edges */
.partners-wrapper::before,
.partners-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.partners-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--secondary-bg) 0%, transparent 100%);
}

.partners-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--secondary-bg) 0%, transparent 100%);
}

/* Partners Row */
.partners-row {
    display: flex;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.partners-row:first-child {
    margin-bottom: 10px;
}

/* Partners Track - The moving container */
.partners-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Row 1 - Moving Left */
.partners-row[data-direction="left"] .partners-track {
    animation: scrollLeft 40s linear infinite;
}

/* Row 2 - Moving Right */
.partners-row[data-direction="right"] .partners-track {
    animation: scrollRight 40s linear infinite;
}

/* Individual Partner Logo */
.partner-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.partner-logo:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-logo:hover::before {
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Keyframe Animations */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-50%));
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.partners-row:hover .partners-track {
    animation-play-state: paused;
}

/* ============================
   Partners Section - Responsive
============================ */
@media (max-width: 1200px) {
    .partners-wrapper::before,
    .partners-wrapper::after {
        width: 100px;
    }

    .partner-logo {
        width: 130px;
        height: 70px;
        padding: 15px;
    }

    .partners-track {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .overview-wrapper{
        grid-template-columns: 1fr !important;
    }
    .overview-features{
        flex-direction: column;
    }
    .included-grid{
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .seo-services-grid{
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .services-offered-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 30px;
}
.tech-categories {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 40px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 30px;
}
.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 25px;
    margin-bottom: 50px;
}
.pricing-cards-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 30px;
    margin-bottom: 40px;
}
.faq-wrapper-split{
    grid-template-columns: 1fr !important;
}
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 30px;
}
    .partners-section {
        padding: 80px 0;
    }

    .partners-wrapper {
        margin-top: 40px;
    }

    .partners-wrapper::before,
    .partners-wrapper::after {
        width: 50px;
    }

    .partner-logo {
        width: 110px;
        height: 60px;
        padding: 12px;
        border-radius: 8px;
    }

    .partners-track {
        gap: 30px;
    }

    .partners-row[data-direction="left"] .partners-track {
        animation-duration: 30s;
    }

    .partners-row[data-direction="right"] .partners-track {
        animation-duration: 30s;
    }
}

@media (max-width: 576px) {
    body{
        overflow-x: hidden !important;
    }
    .tool-item img{
        max-width: 70px;
    }
    .partner-logo {
        width: 100px;
        height: 55px;
        padding: 10px;
    }
    .pricing-note p{
        flex-wrap: wrap;
        justify-content: center !important;
    }
    .image-stack .experience-card{
        left: 0px !important;
    }
    .stack-image.secondary{
        right: 0px !important;
    }

    .partners-track {
        gap: 20px;
    }

    .partners-wrapper::before,
    .partners-wrapper::after {
        width: 30px;
    }
}

/* ============================
   Contact Section
============================ */
.contact-section {
    background-color: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-wrapper {
    display: flex;
    gap: 0;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

/* Contact Form Container - 90% */
.contact-form-container {
    flex: 0 0 90%;
    width: 90%;
    padding: 60px;
    position: relative;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Honeypot field - hidden from users */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Form Row - Two columns */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: span 2;
}

/* Labels */
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: var(--accent-red);
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    color: var(--text-light-gray);
    font-size: 16px;
    transition: var(--transition);
    z-index: 1;
}

.input-wrapper.textarea-wrapper i {
    top: 20px;
    align-self: flex-start;
}

/* Input Fields */
.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background-color: var(--tertiary-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-white);
    transition: var(--transition);
    outline: none;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--text-light-gray);
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: var(--accent-red);
    background-color: rgba(230, 57, 70, 0.03);
}

.input-wrapper input:focus + i,
.input-wrapper textarea:focus + i,
.input-wrapper:focus-within i {
    color: var(--accent-red);
}

/* Textarea */
.input-wrapper textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

/* Textarea Footer */
.textarea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Style select fields like inputs */
.input-wrapper select {
    width: 100%;
    padding: 18px 50px 18px 55px; /* left for icon, right for arrow */
    background-color: var(--tertiary-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-white);
    outline: none;
    cursor: pointer;
    transition: var(--transition);

    /* Remove native styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* Custom arrow (pure CSS) */
    background-image:
        linear-gradient(45deg, transparent 50%, var(--text-gray) 50%),
        linear-gradient(135deg, var(--text-gray) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 15px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

/* Hide default arrow for IE */
.input-wrapper select::-ms-expand {
    display: none;
}

/* Placeholder-style color for default option */
.input-wrapper select:invalid,
.input-wrapper select option[value=""] {
    color: var(--text-light-gray);
}

/* Focus + hover state like inputs */
.input-wrapper select:focus {
    border-color: var(--accent-red);
    background-color: rgba(230, 57, 70, 0.03);
}

/* When wrapper is focused, also color the icon */
.input-wrapper:focus-within i {
    color: var(--accent-red);
}

/* ============================
   Select dropdown options styling
   (works best in Chrome / modern browsers)
============================ */

/* Options panel background and text */
.input-wrapper select option {
    background-color: var(--tertiary-bg); /* dark list background */
    color: var(--text-white);             /* white option text */
}

/* Default/placeholder option */
.input-wrapper select option[value=""] {
    color: var(--text-light-gray);
}

/* Hover / active option (support varies by browser) */
.input-wrapper select option:checked,
.input-wrapper select option:hover {
    background-color: var(--accent-red);
    color: var(--text-white);
}

/* For Firefox, use this to ensure dark dropdown text/background */
@-moz-document url-prefix() {
    .input-wrapper select {
        color: var(--text-white);
        background-color: var(--tertiary-bg);
    }
    .input-wrapper select option {
        background-color: var(--tertiary-bg);
        color: var(--text-white);
    }
}

/* Dark scrollbar inside long dropdowns (WebKit) */
.input-wrapper select::-webkit-scrollbar {
    width: 8px;
}
.input-wrapper select::-webkit-scrollbar-track {
    background: var(--primary-bg);
}
.input-wrapper select::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
.input-wrapper select::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

.char-count {
    font-size: 12px;
    color: var(--text-light-gray);
}

/* ============================
   intl-tel-input for dark theme
============================ */

/* Wrapper created by plugin */
.iti {
    width: 100%;
}

/* Align with your input field */
.input-wrapper .iti input[type="tel"] {
    width: 100%;
    padding: 16px 16px 16px 60px; /* leave space for flag & dial code */
    background-color: var(--tertiary-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 15px;
    outline: none;
}

/* Focus */
.input-wrapper .iti input[type="tel"]:focus {
    border-color: var(--accent-red);
    background-color: rgba(230, 57, 70, 0.03);
}

/* Keep your icon red when focused */
.input-wrapper:focus-within i {
    color: var(--accent-red);
}

/* Flag dropdown */
.iti__flag-container {
    background-color: var(--tertiary-bg);
    border-radius: 12px 0 0 12px;
}

/* Dropdown menu */
.iti__country-list {
    background-color: var(--tertiary-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    color: var(--text-white);
}

/* Search input inside dropdown */
.iti__country-list .iti__search-input {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-white);
}

/* Country items */
.iti__country {
    color: var(--text-white);
}

.iti__country.iti__highlight {
    background-color: rgba(230, 57, 70, 0.3);
}

/* Scrollbar in dropdown (webkit) */
.iti__country-list::-webkit-scrollbar {
    width: 8px;
}
.iti__country-list::-webkit-scrollbar-track {
    background: var(--primary-bg);
}
.iti__country-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Error States */
.form-group.error .input-wrapper input,
.form-group.error .input-wrapper textarea {
    border-color: #ff4444;
    background-color: rgba(255, 68, 68, 0.03);
}

.form-group.error .input-wrapper i {
    color: #ff4444;
}

.error-message {
    font-size: 12px;
    color: #ff4444;
    min-height: 18px;
    display: block;
}

/* Success States */
.form-group.success .input-wrapper input,
.form-group.success .input-wrapper textarea {
    border-color: #00c853;
}

.form-group.success .input-wrapper i {
    color: #00c853;
}

/* Form Submit */
.form-submit {
    margin-top: 15px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 20px 40px;
    font-size: 16px;
}

.form-submit .btn .btn-loading {
    display: none;
}

.form-submit .btn.loading .btn-text,
.form-submit .btn.loading .btn-icon {
    display: none;
}

.form-submit .btn.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Success Message */
.form-success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.form-success-message.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 200, 83, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon i {
    font-size: 50px;
    color: #00c853;
}

.form-success-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.form-success-message p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Contact Social - 10% */
.contact-social {
    flex: 0 0 10%;
    width: 10%;
    background: linear-gradient(180deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.contact-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png') repeat;
    opacity: 0.05;
}

.social-icons-vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    justify-content: space-around;
    width: 100%;
    position: relative;
    z-index: 1;
}

.social-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
    transition: var(--transition);
    margin: 0 auto;
    position: relative;
}

.social-icon:hover {
    background-color: var(--text-white);
    color: var(--accent-red);
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Tooltip */
.social-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-bg);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow);
}

.social-icon::after {
    content: '';
    position: absolute;
    right: calc(100% + 5px);
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--primary-bg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.social-icon:hover::before,
.social-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Social Label */
.social-label {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.social-label span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================
   Contact Section - Responsive
============================ */
@media (max-width: 1200px) {
    .contact-form-container {
        padding: 50px 40px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form-container {
        flex: 0 0 100%;
        width: 100%;
        padding: 50px 40px;
    }

    .contact-social {
        flex: 0 0 auto;
        width: 100%;
        flex-direction: row;
        padding: 30px;
    }

    .social-icons-vertical {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex: none;
    }

    .social-label {
        display: none;
    }

    .social-icon::before,
    .social-icon::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 40px 25px;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .input-wrapper input,
    .input-wrapper textarea {
        padding: 16px 16px 16px 50px;
        font-size: 14px;
    }

    .input-wrapper i {
        left: 16px;
        font-size: 14px;
    }

    .contact-social {
        padding: 25px;
    }

    .social-icons-vertical {
        gap: 15px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 30px 20px;
    }

    .form-submit .btn {
        padding: 16px 30px;
        font-size: 14px;
    }

    .form-success-message {
        padding: 40px 20px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon i {
        font-size: 40px;
    }

    .form-success-message h3 {
        font-size: 22px;
    }
}

/* ============================
   Form Animation
============================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.form-group.error {
    animation: shake 0.5s ease;
}

/* ============================
   Form Notifications
============================ */
.form-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 50px 16px 20px;
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    max-width: 500px;
}

.form-notification.error {
    border-color: #ff4444;
    background-color: rgba(255, 68, 68, 0.1);
}

.form-notification.success {
    border-color: #00c853;
    background-color: rgba(0, 200, 83, 0.1);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-content i {
    font-size: 20px;
}

.form-notification.error .notification-content i {
    color: #ff4444;
}

.form-notification.success .notification-content i {
    color: #00c853;
}

.notification-content span {
    font-size: 14px;
    color: var(--text-white);
}

.notification-close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.notification-close:hover {
    color: var(--text-white);
}

/* ============================
   CTA Section
============================ */
.cta-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-bg), var(--primary-bg));
    z-index: -1;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-title span {
    color: var(--accent-red);
}

.cta-text {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* ============================
   Footer Styles
============================ */
.main-footer {
    background-color: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-logo h2 span {
    color: var(--accent-red);
}

.footer-about {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tertiary-bg);
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-red);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-red);
}

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

.footer-links li a {
    font-size: 15px;
    color: var(--text-gray);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links li a::before {
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--accent-red);
    margin-right: 0;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--accent-red);
}

.footer-links li a:hover::before {
    width: 15px;
    margin-right: 10px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact li i {
    color: var(--accent-red);
    margin-top: 5px;
}

.footer-contact li span,
.footer-contact li a {
    font-size: 15px;
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-content p {
    font-size: 14px;
    color: var(--text-gray);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-red);
}

/* ============================
   Back to Top Button
============================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-red);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

/* ============================
   Animation Classes
============================ */
[data-animate] {
    opacity: 0;
    transform: translateY(50px);
}

[data-animate="fade-up"].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-right"] {
    transform: translateX(-50px);
}

[data-animate="fade-right"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="fade-left"] {
    transform: translateX(50px);
}

[data-animate="fade-left"].animated {
    opacity: 1;
    transform: translateX(0);
}

/* ============================
   Responsive Styles
============================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-services-section .services-grid{
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .portfolio-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .slide-title .title-line {
        font-size: 48px;
    }

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

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

    .section-title {
        font-size: 38px;
    }

    .custom-cursor {
        display: none;
    }

    body {
        cursor: auto;
    }

    a, button {
        cursor: pointer;
    }
}

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

    .slide-title .title-line {
        font-size: 36px;
    }

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

    .home-services-section .services-grid{
        grid-template-columns: 1fr;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .slide-title .title-line {
        font-size: 28px;
    }

    .slide-description {
        font-size: 15px;
    }

    .slider-nav {
        padding: 0 20px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .section-title {
        font-size: 30px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }

    .experience-badge {
        width: 110px;
        height: 110px;
        bottom: -20px;
        right: -20px;
    }

    .experience-badge .number {
        font-size: 36px;
    }
}


/* ============================
   Page Banner / Hero
============================ */
.page-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 100%); */
    background: linear-gradient(135deg, rgb(10 10 10 / 43%) 0%, rgba(10, 10, 10, 0.7) 100%);
    z-index: -1;
}

.page-banner-content {
    text-align: center;
    padding-top: 80px;
}

.page-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.page-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.page-title span {
    color: var(--accent-red);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 15px;
}

.breadcrumb a {
    color: var(--text-gray);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-red);
}

.breadcrumb i {
    font-size: 10px;
    color: var(--text-gray);
}

.breadcrumb span {
    color: var(--accent-red);
}

/* ============================
   About Intro Section
============================ */
.about-intro {
    background-color: var(--primary-bg);
}

.about-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-content .section-subtitle,
.about-intro-content .section-title {
    text-align: left;
}

.about-intro-content .section-subtitle::before,
.about-intro-content .section-subtitle::after {
    display: none;
}

.about-intro-content .lead-text {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 500;
}

.about-intro-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.intro-stat {
    text-align: center;
}

.intro-stat .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 10px;
}

.intro-stat .stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Images Grid */
.about-intro-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 500px;
}

.grid-image {
    border-radius: 16px;
    overflow: hidden;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-image:hover img {
    transform: scale(1.1);
}

.grid-image.main {
    grid-row: span 2;
}

.grid-image.secondary {
    grid-column: 2;
    grid-row: 1;
}

.grid-image.tertiary {
    grid-column: 2;
    grid-row: 2;
}

.about-intro-images .experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.4);
    z-index: 10;
}

.badge-inner {
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* ============================
   Mission Vision Section
============================ */
.mission-vision-section {
    background-color: var(--secondary-bg);
}

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

.mv-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.mv-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.mv-icon i {
    font-size: 36px;
    color: var(--accent-red);
    transition: var(--transition);
}

.mv-card:hover .mv-icon {
    background: var(--accent-red);
}

.mv-card:hover .mv-icon i {
    color: var(--text-white);
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.mv-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-hover));
    transform: scaleX(0);
    transition: var(--transition);
}

.mv-card:hover .mv-decoration {
    transform: scaleX(1);
}

/* ============================
   Why Choose Us Section
============================ */
.why-choose-section {
    background-color: var(--primary-bg);
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-content .section-subtitle,
.why-choose-content .section-title,
.why-choose-content .section-description {
    text-align: left;
}

.why-choose-content .section-subtitle::before,
.why-choose-content .section-subtitle::after {
    display: none;
}

.why-choose-content .section-description {
    margin: 0 0 40px 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.features-list .feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
}

.features-list .feature-item:hover {
    border-color: var(--accent-red);
    transform: translateX(10px);
}

.features-list .feature-icon {
    flex-shrink: 0;
}

.features-list .feature-icon i {
    font-size: 24px;
    color: var(--accent-red);
}

.features-list .feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.features-list .feature-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Image */
.why-choose-image {
    position: relative;
}

.why-choose-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.why-choose-image .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--accent-red);
}

.floating-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.floating-card.card-1 {
    top: 30px;
    right: 0px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 50px;
    left: 0px;
    animation-delay: 2s;
}

/* ============================
   Team Section
============================ */
.team-section {
    background-color: var(--secondary-bg);
}

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

.team-member {
    text-align: center;
}

.member-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.member-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(230, 57, 70, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

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

.member-social .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 16px;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.team-member:hover .member-social .social-link {
    transform: translateY(0);
    opacity: 1;
}

.team-member:hover .member-social .social-link:nth-child(1) { transition-delay: 0.1s; }
.team-member:hover .member-social .social-link:nth-child(2) { transition-delay: 0.2s; }
.team-member:hover .member-social .social-link:nth-child(3) { transition-delay: 0.3s; }

.member-social .social-link:hover {
    background: var(--text-white);
    color: var(--accent-red);
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.member-role {
    font-size: 14px;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================
   Process Section
============================ */
.process-section {
    background-color: var(--primary-bg);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(230, 57, 70, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.step-icon i {
    font-size: 28px;
    color: var(--accent-red);
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--accent-red);
}

.process-step:hover .step-icon i {
    color: var(--text-white);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.step-connector {
    display: none;
}

/* ============================
   Clients Section
============================ */
.clients-section {
    background-color: var(--secondary-bg);
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.client-logo {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: var(--transition);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ============================
   CTA Buttons
============================ */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ============================
   About Page Responsive
============================ */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-timeline {
        flex-wrap: wrap;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(33.333% - 30px);
    }
}

@media (max-width: 992px) {
    .page-title {
        font-size: 48px;
    }

    .about-intro-wrapper,
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro-images {
        order: -1;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 60vh;
        min-height: 400px;
    }

    .page-title {
        font-size: 36px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .grid-image.main,
    .grid-image.secondary,
    .grid-image.tertiary {
        grid-column: auto;
        grid-row: auto;
    }

    .grid-image img {
        height: 250px;
    }

    .about-intro-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .clients-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step {
        flex: 0 0 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 30px;
    }

    .mv-card {
        padding: 40px 25px;
    }

    .features-list .feature-item {
        flex-direction: column;
        text-align: center;
    }

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

    .about-intro-images .experience-badge {
        width: 120px;
        height: 120px;
        bottom: -20px;
        left: -10px;
    }

    .badge-number {
        font-size: 32px;
    }

    .floating-card {
        display: none;
    }
}

/* ============================
   Services Intro Section
============================ */
.services-intro {
    background-color: var(--primary-bg);
    padding-bottom: 80px;
}

.services-intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Quick Links */
.services-quick-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 40px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    min-width: 180px;
}

.quick-link i {
    font-size: 36px;
    color: var(--accent-red);
    transition: var(--transition);
}

.quick-link span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    transition: var(--transition);
}

.quick-link:hover {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.3);
}

.quick-link:hover i,
.quick-link:hover span {
    color: var(--text-white);
}

/* ============================
   Service Detail Section
============================ */
.service-detail {
    background-color: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.service-detail.alternate {
    background-color: var(--secondary-bg);
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail-wrapper.reverse {
    direction: rtl;
}

.service-detail-wrapper.reverse > * {
    direction: ltr;
}

/* Service Content */
.service-detail-content {
    position: relative;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(230, 57, 70, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon-large i {
    font-size: 36px;
    color: var(--accent-red);
}

.service-number {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.service-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-title span {
    color: var(--accent-red);
}

.service-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.service-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: var(--transition);
}

.service-features .feature:hover {
    background-color: rgba(230, 57, 70, 0.1);
}

.service-features .feature i {
    color: var(--accent-red);
    font-size: 14px;
}

.service-features .feature span {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 500;
}

/* Service Image */
.service-detail-image {
    position: relative;
}

.service-detail-image .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.service-detail-image .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), transparent);
    z-index: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

/* Service Stats */
.service-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.service-stats .stat-item {
    flex: 1;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.service-stats .stat-item:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
}

.service-stats .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 5px;
}

.service-stats .stat-label {
    font-size: 13px;
    color: var(--text-gray);
}

/* ============================
   Pricing Section
============================ */
.pricing-section {
    background-color: var(--primary-bg);
}

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

.pricing-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent-red);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-red);
    color: var(--text-white);
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-header {
    padding: 40px 35px 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.plan-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 10px;
}

.plan-price .amount {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    letter-spacing: -2px;
}

.plan-price .period {
    font-size: 16px;
    color: var(--text-gray);
    align-self: flex-end;
    margin-bottom: 10px;
    margin-left: 5px;
}

.plan-description {
    font-size: 14px;
    color: var(--text-gray);
}

.pricing-features {
    padding: 35px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-white);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li i {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.pricing-features ul li i.fa-check {
    color: var(--accent-red);
}

.pricing-features ul li i.fa-times {
    color: var(--text-light-gray);
}

.pricing-features ul li.disabled {
    color: var(--text-light-gray);
}

.pricing-footer {
    padding: 0 35px 35px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.pricing-note {
    text-align: center;
}

.pricing-note p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
    background-color: var(--card-bg);
    padding: 15px 25px;
    border-radius: 50px;
}

.pricing-note p i {
    color: var(--accent-red);
}

/* ============================
   Tools Section
============================ */
.tools-section {
    background-color: var(--secondary-bg);
}

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

.tool-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: var(--transition);
    position: relative;
}

.tool-item img {
    /* max-width: 60%;
    max-height: 60%; */
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
    transition: var(--transition);
}

.tool-item:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
}

.tool-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Tool Tooltip */
.tool-item::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.tool-item::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--accent-red);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.tool-item:hover::before,
.tool-item:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ============================
   FAQ Section
============================ */
.faq-section {
    background-color: var(--primary-bg);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(230, 57, 70, 0.3);
}

.faq-item.active {
    border-color: var(--accent-red);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    padding-right: 20px;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-toggle i {
    color: var(--accent-red);
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background-color: var(--accent-red);
}

.faq-item.active .faq-toggle i {
    color: var(--text-white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ============================
   Services Page Responsive
============================ */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .service-detail-wrapper,
    .service-detail-wrapper.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        direction: ltr;
    }

    .service-number {
        font-size: 80px;
    }

    .service-title {
        font-size: 36px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .popular-badge {
        top: 15px;
        right: -40px;
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .services-quick-links {
        gap: 15px;
    }

    .quick-link {
        padding: 20px 25px;
        min-width: 140px;
    }

    .quick-link i {
        font-size: 28px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-stats {
        flex-direction: column;
        gap: 15px;
    }

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

    .tool-item {
        padding: 20px;
        height: 80px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .services-quick-links {
        flex-direction: column;
        align-items: center;
    }

    .quick-link {
        width: 100%;
        max-width: 280px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
    }

    .service-icon-large i {
        font-size: 28px;
    }

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

    .plan-price .amount {
        font-size: 48px;
    }

    .pricing-header,
    .pricing-features,
    .pricing-footer {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* ============================
   Service Page Banner
============================ */
.service-banner .service-icon-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(230, 57, 70, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgba(230, 57, 70, 0.3);
}

.service-icon-badge i {
    font-size: 40px;
    color: var(--accent-red);
}

.page-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================
   Service Overview Section
============================ */
.overview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-content .section-subtitle,
.overview-content .section-title {
    text-align: left;
}

.overview-content .section-subtitle::before,
.overview-content .section-subtitle::after {
    display: none;
}

.overview-content .lead-text {
    font-size: 20px;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.7;
}

.overview-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.overview-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-box .feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-box .feature-icon i {
    font-size: 20px;
    color: var(--accent-red);
}

.feature-box .feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
}

.feature-box .feature-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Image Stack */
.image-stack {
    position: relative;
    height: 500px;
}

.stack-image {
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.stack-image.main {
    width: 80%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.stack-image.secondary {
    width: 50%;
    height: 60%;
    bottom: -30px;
    right: -30px;
    z-index: 2;
    border: 4px solid var(--primary-bg);
}

.stack-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-stack .experience-card {
    position: absolute;
    bottom: 50px;
    left: -40px;
    background: var(--accent-red);
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.4);
}

.experience-card .number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.experience-card .text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================
   What's Included Section
============================ */
.whats-included {
    background-color: var(--secondary-bg);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.included-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.included-item:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
}

.included-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.included-icon i {
    font-size: 28px;
    color: var(--accent-red);
    transition: var(--transition);
}

.included-item:hover .included-icon {
    background: var(--accent-red);
}

.included-item:hover .included-icon i {
    color: var(--text-white);
}

.included-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.included-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================
   Service Process Section
============================ */
.service-process {
    background-color: var(--primary-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step-item {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
}

.process-step-item:hover {
    border-color: var(--accent-red);
}

.process-step-item .step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(230, 57, 70, 0.1);
    line-height: 1;
}

.process-step-item .step-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.process-step-item .step-icon i {
    font-size: 28px;
    color: var(--accent-red);
    transition: var(--transition);
}

.process-step-item:hover .step-icon {
    background: var(--accent-red);
}

.process-step-item:hover .step-icon i {
    color: var(--text-white);
}

.process-step-item .step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.process-step-item .step-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-checklist {
    list-style: none;
}

.step-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-gray);
    padding: 8px 0;
    border-top: 1px solid var(--border-color);
}

.step-checklist li:first-child {
    border-top: none;
}

.step-checklist li i {
    color: var(--accent-red);
    font-size: 12px;
}

/* ============================
   Service Portfolio Section
============================ */
.service-portfolio {
    background-color: var(--secondary-bg);
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.showcase-item {
    border-radius: 16px;
    overflow: hidden;
}

.showcase-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.showcase-image {
    position: relative;
    height: 100%;
    min-height: 250px;
}

.showcase-item.large .showcase-image {
    min-height: 100%;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.showcase-info .category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 8px;
    display: block;
}

.showcase-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.showcase-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.showcase-link {
    width: 45px;
    height: 45px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.showcase-link:hover {
    background: var(--text-white);
    color: var(--accent-red);
}

.portfolio-cta {
    text-align: center;
}

/* ============================
   Service Pricing Section
============================ */
.service-pricing {
    background-color: var(--primary-bg);
}

.pricing-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.service-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-pricing-card.featured {
    border-color: var(--accent-red);
    transform: scale(1.05);
}

.service-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-red);
    color: var(--text-white);
    padding: 8px 40px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-card-header {
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.package-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    display: block;
    margin-bottom: 20px;
}

.package-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.package-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 10px;
}

.package-price .amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    letter-spacing: -2px;
}

.package-price .period {
    font-size: 16px;
    color: var(--text-gray);
    align-self: flex-end;
    margin-bottom: 10px;
    margin-left: 5px;
}

.package-tagline {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.pricing-card-body {
    padding: 30px;
}

.package-features {
    list-style: none;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-white);
    border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    font-size: 14px;
    width: 20px;
}

.package-features li i.fa-check {
    color: var(--accent-red);
}

.package-features li i.fa-times {
    color: var(--text-light-gray);
}

.package-features li.disabled {
    color: var(--text-light-gray);
}

.pricing-card-footer {
    padding: 0 30px 30px;
}

/* ============================
   Service FAQ Split
============================ */
.faq-wrapper-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-content .section-subtitle,
.faq-content .section-title {
    text-align: left;
}

.faq-content .section-subtitle::before,
.faq-content .section-subtitle::after {
    display: none;
}

.faq-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.faq-content p a {
    color: var(--accent-red);
}

.faq-contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-contact-card .contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-contact-card .contact-icon i {
    font-size: 24px;
    color: var(--accent-red);
}

.faq-contact-card .contact-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
}

.faq-contact-card .contact-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0 0 8px 0;
}

.faq-contact-card .contact-phone {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-red);
}

/* ============================
   Related Services
============================ */
.related-services {
    background-color: var(--secondary-bg);
}

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

.related-service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    display: block;
}

.related-service-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
}

.related-service-card .service-icon {
    width: 80px;
    height: 80px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.related-service-card .service-icon i {
    font-size: 32px;
    color: var(--accent-red);
    transition: var(--transition);
}

.related-service-card:hover .service-icon {
    background: var(--accent-red);
}

.related-service-card:hover .service-icon i {
    color: var(--text-white);
}

.related-service-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.related-service-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.related-service-card .learn-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.related-service-card:hover .learn-more {
    gap: 15px;
}

/* ============================
   Service CTA
============================ */
.service-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.service-cta .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    z-index: -1;
}

.service-cta .cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png') repeat;
    opacity: 0.05;
}

.service-cta h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.service-cta h2 span {
    color: rgba(255, 255, 255, 0.9);
}

.service-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* ============================
   Platform Cards
============================ */
.platforms-section {
    background-color: var(--secondary-bg);
}

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

.platform-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
}

.platform-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
}

.platform-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.platform-icon i {
    font-size: 32px;
    color: var(--text-white);
}

.platform-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-icon.facebook { background: #1877f2; }
.platform-icon.linkedin { background: #0a66c2; }
.platform-icon.twitter { background: #1da1f2; }
.platform-icon.tiktok { background: #000; }
.platform-icon.youtube { background: #ff0000; }

.platform-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.platform-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.platform-features {
    list-style: none;
}

.platform-features li {
    font-size: 13px;
    color: var(--text-gray);
    padding: 8px 0;
    border-top: 1px solid var(--border-color);
}

.platform-features li:first-child {
    border-top: none;
}

/* ============================
   Services Offered Grid
============================ */
.services-offered {
    background-color: var(--primary-bg);
}

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

.offered-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
}

.offered-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
}

.offered-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.offered-icon i {
    font-size: 28px;
    color: var(--accent-red);
    transition: var(--transition);
}

.offered-card:hover .offered-icon {
    background: var(--accent-red);
}

.offered-card:hover .offered-icon i {
    color: var(--text-white);
}

.offered-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.offered-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.offered-list li {
    font-size: 13px;
    color: var(--text-gray);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.offered-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-red);
    border-radius: 50%;
}

/* ============================
   Technologies Section
============================ */
.technologies-section {
    background-color: var(--secondary-bg);
}

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

.tech-category h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.tech-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
}

.tech-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tech-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-white);
}

/* ============================
   SEO Services Grid
============================ */
.seo-services-section {
    background-color: var(--secondary-bg);
}

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

.seo-service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
}

.seo-service-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
}

.seo-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

/* ============================
   Portfolio Main Section
============================ */
.portfolio-main {
    background-color: var(--primary-bg);
}

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.filter-btn:hover {
    border-color: var(--accent-red);
    color: var(--text-white);
}

.filter-btn.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-white);
}

.filter-btn .count {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.filter-btn.active .count {
    background: rgba(255, 255, 255, 0.2);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

.portfolio-item.large {
    grid-column: span 2;
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.portfolio-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-item.large .portfolio-image {
    height: 400px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content .project-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 10px;
    display: block;
}

.overlay-content .project-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.overlay-content .project-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    display: none;
}

.portfolio-item.large .overlay-content .project-excerpt {
    display: block;
}

.overlay-actions {
    display: flex;
    gap: 10px;
}

.overlay-actions .action-btn {
    width: 45px;
    height: 45px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.overlay-actions .action-btn:hover {
    background: var(--text-white);
    color: var(--accent-red);
}

/* Portfolio Info (below image) */
.portfolio-info {
    padding: 25px;
}

.portfolio-info .project-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 8px;
    display: block;
}

.portfolio-info .project-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

/* Load More */
.load-more-wrapper {
    text-align: center;
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(5px);
}

/* ============================
   Case Studies Section
============================ */
.case-studies-section {
    background-color: var(--secondary-bg);
}

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

.case-study-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
}

.case-study-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.case-study-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-red);
    padding: 8px 18px;
    border-radius: 50px;
}

.case-study-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-content {
    padding: 35px;
}

.case-study-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.case-study-content > p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.case-study-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--secondary-bg);
    border-radius: 12px;
}

.case-study-stats .stat {
    flex: 1;
    text-align: center;
}

.case-study-stats .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 5px;
}

.case-study-stats .stat-label {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-tag {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-red);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

/* ============================
   Portfolio Clients
============================ */
.portfolio-clients {
    background-color: var(--primary-bg);
}

.clients-marquee {
    overflow: hidden;
    position: relative;
}

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

.clients-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary-bg), transparent);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--primary-bg), transparent);
}

.marquee-track {
    display: flex;
    animation: marquee 60s linear infinite;
}

.client-logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    margin: 0 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.client-logo-item:hover {
    border-color: var(--accent-red);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

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

/* ============================
   Portfolio Testimonials
============================ */
.portfolio-testimonials {
    background-color: var(--secondary-bg);
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slides {
    position: relative;
    min-height: 350px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    text-align: center;
    padding: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

.testimonial-content .quote-icon {
    margin-bottom: 30px;
}

.testimonial-content .quote-icon i {
    font-size: 50px;
    color: var(--accent-red);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 20px;
    color: var(--text-white);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-author .author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-red);
}

.testimonial-author .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author .author-info {
    text-align: left;
}

.testimonial-author .author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
}

.testimonial-author .author-info span {
    font-size: 14px;
    color: var(--text-gray);
}

.author-rating {
    display: flex;
    gap: 3px;
}

.author-rating i {
    color: #ffc107;
    font-size: 14px;
}

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-arrow:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active,
.testimonial-dots .dot:hover {
    background: var(--accent-red);
}

/* ============================
   Portfolio CTA
============================ */
.portfolio-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.portfolio-cta .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    z-index: -1;
}

.portfolio-cta h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.portfolio-cta h2 span {
    opacity: 0.9;
}

.portfolio-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* ============================
   Lightbox Modal
============================ */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--accent-red);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--accent-red);
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

/* ============================
   Portfolio Page Responsive
============================ */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item.large {
        grid-column: span 1;
    }

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

@media (max-width: 992px) {
    .portfolio-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-content {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .home-portfolio-section .portfolio-grid{
        grid-template-columns: 1fr;
    }

    .portfolio-image,
    .portfolio-item.large .portfolio-image {
        height: 280px;
    }

    .filter-btn .count {
        display: none;
    }

    .case-study-stats {
        flex-direction: column;
        gap: 15px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author .author-info {
        text-align: center;
    }

    .portfolio-cta h2 {
        font-size: 36px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-nav.prev {
        left: 15px;
    }

    .lightbox-nav.next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .overlay-content .project-title {
        font-size: 20px;
    }

    .case-study-content {
        padding: 25px;
    }

    .case-study-content h3 {
        font-size: 18px;
    }

    .testimonial-content {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}

/* ============================
   Legal / Privacy Policy Pages
============================ */
.legal-section {
    background-color: var(--primary-bg);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.legal-block {
    margin-bottom: 35px;
}

.legal-block h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.legal-block h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin: 18px 0 8px;
}

.legal-block p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-list {
    list-style: none;
    margin: 10px 0 0;
    padding-left: 0;
}

.legal-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-red);
}

.legal-block a {
    color: var(--accent-red);
    text-decoration: none;
}

.legal-block a:hover {
    text-decoration: underline;
}

.legal-disclaimer {
    font-size: 13px;
    color: var(--text-light-gray);
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 576px) {
    .legal-block h2 {
        font-size: 18px;
    }
    .legal-block p,
    .legal-list li {
        font-size: 14px;
    }
}

/* ============================
   SEO Results Section
============================ */
.results-section {
    background-color: var(--secondary-bg);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.result-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
}

.result-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.result-number {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    color: var(--accent-red);
    font-weight: 700;
}

.result-number .counter {
    font-size: 40px;
    line-height: 1;
}

.result-number .suffix {
    font-size: 24px;
    line-height: 1.1;
}

.result-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
}

.result-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.7;
}

/* ============================
   Social Media Results Section
============================ */
.social-results {
    background-color: var(--primary-bg);
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.result-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
}

.result-item:hover {
    border-color: var(--accent-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.result-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon i {
    font-size: 26px;
    color: var(--accent-red);
}

/* Reuse .result-number but slightly smaller here */
.social-results .result-number {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    color: var(--accent-red);
    font-weight: 700;
}

.social-results .result-number .counter {
    font-size: 32px;
    line-height: 1;
}

.social-results .result-number .suffix {
    font-size: 20px;
    line-height: 1.1;
}

.result-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ============================
   Results Sections Responsive
============================ */
@media (max-width: 992px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 576px) {
    .results-grid,
    .results-showcase {
        grid-template-columns: 1fr;
    }
}

/* ============================
   GMB Services Section
============================ */
.gmb-services-section {
    background-color: var(--primary-bg);
}

.gmb-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.gmb-content .section-subtitle,
.gmb-content .section-title {
    text-align: left;
}

.gmb-content .section-subtitle::before,
.gmb-content .section-subtitle::after {
    display: none;
}

.gmb-content > p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Features list */
.gmb-features {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gmb-feature {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: var(--transition);
}

.gmb-feature:hover {
    border-color: var(--accent-red);
    transform: translateX(5px);
}

.gmb-feature .feature-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gmb-feature .feature-icon i {
    font-size: 14px;
    color: var(--accent-red);
}

.gmb-feature .feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.gmb-feature .feature-text p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

/* Right Image + Stats */
.gmb-image {
    position: relative;
}

.gmb-mockup {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.gmb-mockup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

/* Stats bubbles */
.gmb-stats {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.gmb-stat {
    flex: 1;
    max-width: 150px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 14px 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gmb-stat .stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
    margin-bottom: 8px;
}

.gmb-stat .stat-icon i {
    font-size: 14px;
    color: var(--accent-red);
}

.gmb-stat .stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

.gmb-stat .stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ============================
   GMB Section Responsive
============================ */
@media (max-width: 992px) {
    .gmb-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gmb-stats {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .gmb-feature {
        padding: 12px 12px;
    }

    .gmb-stats {
        flex-direction: column;
        align-items: center;
    }

    .gmb-stat {
        max-width: 100%;
    }
}

/* ============================
   Social Media - Content Examples
============================ */
.content-examples {
    background-color: var(--secondary-bg);
}

.content-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    border-color: var(--accent-red);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 15px 18px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Platform badge (IG, FB, etc.) */
.gallery-overlay .platform {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
    backdrop-filter: blur(6px);
}

/* Optional: different colors per platform (if you like) */
.gallery-overlay .platform i.fab.fa-instagram { color: #e1306c; }
.gallery-overlay .platform i.fab.fa-facebook-f { color: #1877f2; }
.gallery-overlay .platform i.fab.fa-linkedin-in { color: #0a66c2; }
.gallery-overlay .platform i.fab.fa-tiktok { color: #fff; }

/* ============================
   Content Examples - Responsive
============================ */
@media (max-width: 992px) {
    .content-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-item img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .content-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-item img {
        height: 210px;
    }
}