/* ===================================================
   COACH KADRI — Custom Styles
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #8cc63f;
    --primary-dark: #72a832;
    --primary-light: #a3d65e;
    --accent: #c5e84b;
    --dark: #ffffff;
    --dark-2: #f5f6fa;
    --dark-3: #eef0f5;
    --dark-4: #e2e5ec;
    --light: #1a1a2e;
    --gray: #5a6478;
    --white: #ffffff;
    --text-heading: #1a1a2e;
    --text-body: #3d4455;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(135deg, #f5f6fa 0%, #eef0f5 100%);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(140, 198, 63, 0.2);
    --border-color: rgba(0, 0, 0, 0.06);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.7;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
}

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    height: 120px;
    width: auto;
    animation: pulse-letter 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 80px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 4px;
    margin: 20px auto 0;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    animation: loader-slide 1.2s ease-in-out infinite;
}

@keyframes pulse-letter {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes loader-slide {
    0% { left: -100%; }
    50% { left: 0%; }
    100% { left: 100%; }
}

/* ---------- Utility Classes ---------- */
.section-padding {
    padding: 100px 0;
}

.bg-dark-section {
    background: var(--dark-2);
}

.section-title {
    color: var(--text-heading);
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(140, 198, 63, 0.1);
    border: 1px solid rgba(140, 198, 63, 0.2);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* ---------- NAVBAR ---------- */
#mainNav {
    padding: 20px 0;
    transition: var(--transition);
    background: #ffffff;
    z-index: 9999;
}

#mainNav.scrolled {
    padding: 12px 0;
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.navbar-logo {
    height: 65px;
    width: auto;
    transition: var(--transition);
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 12px;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: 2px;
}

.brand-accent {
    color: var(--primary);
}

.navbar-nav .nav-link {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-heading);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.nav-social a {
    color: var(--gray);
    font-size: 1rem;
    padding: 0 8px;
    transition: var(--transition);
}

.nav-social a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28140, 198, 63, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- PAGE HEADER (SUBPAGES) ---------- */
.page-header {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.page-header-desc {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f0fbe4 0%, #f7fbf2 50%, #f0f4ff 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(140, 198, 63, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(140, 198, 63, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(140, 198, 63, 0.08);
    border: 1px solid rgba(140, 198, 63, 0.2);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-heading);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-cta {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Glow Button */
.btn-glow {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 25px rgba(140, 198, 63, 0.3);
}

.btn-glow::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: left 0.5s ease;
}

.btn-glow:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(140, 198, 63, 0.5);
}

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

.btn-outline-hero {
    border: 2px solid rgba(26, 26, 46, 0.15);
    color: var(--text-heading);
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
}

.btn-outline-hero:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(140, 198, 63, 0.05);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 198, 63, 0.2) 0%, transparent 70%);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.hero-image-placeholder {
    width: 350px;
    height: 450px;
    border-radius: 200px 200px 30px 30px;
    background: var(--white);
    border: 2px solid rgba(140, 198, 63, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-image-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.hero-image-placeholder span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.hero-scroll-indicator a {
    color: var(--gray);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.hero-scroll-indicator a:hover {
    color: var(--primary);
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-icon {
    animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ---------- ABOUT SECTION ---------- */
.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    border-radius: var(--radius);
    background: var(--white);
    border: 2px solid rgba(140, 198, 63, 0.1);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-image-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.4;
}

.about-image-placeholder span {
    color: var(--gray);
    font-size: 0.85rem;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    animation: rotate-badge 20s linear infinite;
}

@keyframes rotate-badge {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-experience-badge .exp-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    animation: rotate-badge 20s linear infinite reverse;
}

.about-experience-badge .exp-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    animation: rotate-badge 20s linear infinite reverse;
}

.about-text {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 16px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background: #f5fbf0;
    border-color: rgba(140, 198, 63, 0.15);
    transform: translateX(8px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.feature-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-heading);
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* ---------- SERVICES SECTION ---------- */
.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(140, 198, 63, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

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

.service-card.featured {
    border-color: rgba(140, 198, 63, 0.3);
    background: linear-gradient(135deg, #f5fbf0 0%, var(--white) 100%);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 14px;
    border-radius: 50px;
    background: var(--gradient);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(140, 198, 63, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-heading);
}

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

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ---------- PORTFOLIO SECTION ---------- */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-8px);
}

.portfolio-placeholder {
    width: 100%;
    height: 280px;
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.portfolio-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

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

.portfolio-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.4;
}

.portfolio-placeholder span {
    color: var(--gray);
    font-size: 0.85rem;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.9));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.portfolio-overlay p {
    color: var(--primary);
    font-size: 0.85rem;
    margin: 0;
}

.portfolio-item.hidden {
    display: none;
}

/* ---------- TRANSFORMATIONS SECTION ---------- */
.transformation-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.transformation-card:hover {
    transform: translateY(-8px);
    border-color: rgba(140, 198, 63, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.transform-img-wrapper {
    position: relative;
    overflow: hidden;
}

.transform-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

.transformation-card:hover .transform-img {
    transform: scale(1.03);
}

.transform-video-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.transform-video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

.transform-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.transformation-card:hover .transform-video-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.transformation-card:hover .transform-video {
    transform: scale(1.03);
}

.transform-images {
    display: flex;
    position: relative;
}

.transform-before,
.transform-after {
    flex: 1;
    position: relative;
}

.transform-placeholder {
    height: 250px;
    background: var(--dark-3);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.transform-placeholder.after {
    background: linear-gradient(135deg, rgba(140, 198, 63, 0.06), var(--dark-3));
}

.transform-placeholder i {
    font-size: 2rem;
    color: var(--gray);
    opacity: 0.5;
}

.transform-placeholder.after i {
    color: var(--primary);
}

.transform-placeholder span {
    font-size: 0.8rem;
    color: var(--gray);
}

.transform-label {
    position: absolute;
    top: 12px;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.before-label {
    left: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.after-label {
    right: 12px;
    background: var(--gradient);
    color: var(--white);
}

.transform-info {
    padding: 20px;
}

.transform-info h5 {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-heading);
}

.transform-info > p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.transform-stats {
    display: flex;
    gap: 20px;
}

.transform-stats span {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.transform-stats i {
    margin-right: 4px;
}

/* ---------- REAL VIDEO CARDS ---------- */
.real-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    width: 100%;
    height: 400px;
}

.real-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.real-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.real-video-wrapper:hover .real-video-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.real-video-wrapper:hover .real-video-player {
    transform: scale(1.03);
}

/* ---------- VIDEOS SWIPER ---------- */
.videosSwiper {
    padding-bottom: 50px;
    position: relative;
}

.videosSwiper .swiper-slide {
    height: auto;
}

.videosSwiper .video-card {
    height: 100%;
}

.videos-prev,
.videos-next {
    color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.9);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.videos-prev:hover,
.videos-next:hover {
    background: var(--primary);
    color: #fff !important;
}

.videos-prev::after,
.videos-next::after {
    font-size: 18px !important;
    font-weight: 700;
}

.videos-pagination .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.videos-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}

/* ---------- TRANSFORM SWIPER ---------- */
.transformSwiper {
    padding-bottom: 50px;
    position: relative;
}

.transformSwiper .swiper-slide {
    height: auto;
}

.transformSwiper .transformation-card {
    height: 100%;
}

.transform-prev,
.transform-next {
    color: var(--primary) !important;
    background: var(--white);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.transform-prev:hover,
.transform-next:hover {
    background: var(--primary);
    color: #fff !important;
}

.transform-prev::after,
.transform-next::after {
    font-size: 18px !important;
    font-weight: 700;
}

.transform-pagination .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.transform-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}

/* ---------- VIDEOS SECTION ---------- */
.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.video-placeholder.small {
    height: 160px;
}

.play-button-wrapper {
    position: relative;
    z-index: 2;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 0 0 rgba(140, 198, 63, 0.4);
    animation: play-pulse 2s ease-in-out infinite;
}

.play-button.small {
    width: 50px;
    height: 50px;
    font-size: 1rem;
}

@keyframes play-pulse {
    0% { box-shadow: 0 0 0 0 rgba(140, 198, 63, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(140, 198, 63, 0); }
    100% { box-shadow: 0 0 0 0 rgba(140, 198, 63, 0); }
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

.video-title-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
}

.video-info {
    padding: 16px;
}

.video-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000;
}

.video-meta {
    color: var(--gray);
    font-size: 0.8rem;
}

.video-meta i {
    margin-right: 4px;
}

/* ---------- REVIEWS SECTION ---------- */
.reviewSwiper {
    padding-bottom: 60px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
    transition: var(--transition);
    height: 100%;
}

.review-card:hover {
    border-color: rgba(140, 198, 63, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--accent);
    font-size: 1rem;
    margin-right: 2px;
}

.review-text {
    color: var(--gray);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.review-author h6 {
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-heading);
}

.review-author span {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
}

.swiper-pagination-bullet {
    background: var(--gray);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* ---------- WHY CHOOSE ME ---------- */
.why-card {
    padding: 40px 24px;
    border-radius: var(--radius);
    background: #fff;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(140, 198, 63, 0.1) 0%, rgba(197, 232, 75, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient);
    color: #fff;
    transform: scale(1.1);
}

.why-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-heading);
}

.why-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(140, 198, 63, 0.1) 0%, transparent 70%);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 36px;
}

/* ---------- PRICING SECTION ---------- */
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(140, 198, 63, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, #f5fbf0 0%, var(--white) 100%);
    transform: scale(1.05);
}

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

.pricing-popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: var(--gradient);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.pricing-card.featured .pricing-header {
    margin-top: 20px;
}

.pricing-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--gray);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-body);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li i {
    margin-right: 10px;
    font-size: 0.8rem;
}

.pricing-features li .fa-check {
    color: var(--primary);
}

.pricing-features li.disabled {
    color: var(--gray);
    opacity: 0.5;
}

.pricing-features li.disabled .fa-times {
    color: var(--gray);
}

.btn-outline-pricing {
    border: 2px solid rgba(140, 198, 63, 0.3);
    color: var(--primary);
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-pricing:hover {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

/* ---------- CONTACT SECTION ---------- */
.contact-info-list {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: rgba(140, 198, 63, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-info-item h6 {
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-heading);
}

.contact-info-item a,
.contact-info-item span {
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-socials h6 {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-heading);
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-4px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-control,
.form-select {
    background: var(--dark-2) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-heading) !important;
    border-radius: var(--radius-sm) !important;
    padding: 14px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.1) !important;
}

.form-floating > label {
    color: var(--gray);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary);
}

.form-select option {
    background: var(--white);
    color: var(--text-heading);
}

/* ---------- INSTAGRAM FEED SECTION ---------- */
.insta-card {
    display: block;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    transition: var(--transition);
}

.insta-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.insta-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-card:hover .insta-media {
    transform: scale(1.05);
}

.insta-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.insta-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
    transition: var(--transition);
}

.insta-card:hover .insta-placeholder {
    border-color: rgba(140, 198, 63, 0.25);
}

.insta-card:hover .insta-placeholder i {
    opacity: 0.1;
    transform: scale(1.2);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius);
}

.insta-overlay i {
    font-size: 2.5rem;
    color: var(--white);
    transform: scale(0.5);
    transition: var(--transition);
}

.insta-card:hover .insta-overlay {
    opacity: 0.9;
}

.insta-card:hover .insta-overlay i {
    transform: scale(1);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 25px rgba(225, 48, 108, 0.3);
}

.btn-instagram:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(225, 48, 108, 0.5);
}

/* ---------- FOOTER ---------- */
.footer-section {
    background: #1a1a2e;
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-section .brand-text {
    color: #fff;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
}

.footer-toggle-icon {
    display: none;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    margin-top: 8px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-newsletter .input-group {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.footer-newsletter .form-control {
    padding: 14px 16px !important;
}

.footer-newsletter .btn {
    padding: 14px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
}

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
}

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

.back-to-top:hover {
    color: var(--white);
    transform: translateY(-5px);
}

/* ---------- WHATSAPP FLOAT BUTTON ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 99999;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float i {
    color: #ffffff !important;
    font-size: 1.8rem;
    line-height: 1;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #ffffff !important;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    text-decoration: none !important;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- FLOATING PARTICLES (Hero) ---------- */
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.08;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ---------- IMAGE LIGHTBOX MODAL ---------- */
.image-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-modal.active .image-modal-content {
    transform: scale(1);
}

.image-modal-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.image-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.image-modal-nav:hover {
    background: var(--primary);
}

.image-modal-nav.prev {
    left: -60px;
}

.image-modal-nav.next {
    right: -60px;
}

.image-modal-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .image-modal-nav.prev {
        left: 10px;
    }
    .image-modal-nav.next {
        right: 10px;
    }
    .image-modal-close {
        top: -45px;
        right: 5px;
    }
}

.portfolio-card {
    cursor: pointer;
}

/* ---------- VIDEO POPUP MODAL ---------- */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.85) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-modal.active .video-modal-content {
    transform: scale(1) translateY(0);
}

.video-modal-content video {
    width: 100%;
    max-height: 85vh;
    display: block;
    background: #000;
    border-radius: 16px;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.video-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .cta-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-stats {
        gap: 24px;
    }
    .cta-title {
        font-size: 2.3rem;
    }
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: var(--radius);
        padding: 20px;
        margin-top: 16px;
        border: 1px solid var(--border-color);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 120px;
        min-height: auto;
        overflow: visible;
    }
    .hero-section .min-vh-100 {
        min-height: auto !important;
        padding: 0 0 40px;
    }
    .hero-badge {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-desc {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-section {
        padding: 80px 0;
    }
    .cta-text {
        font-size: 1rem;
        padding: 0 10px;
    }
    .hero-stats {
        gap: 16px;
        justify-content: center;
    }
    .stat-item {
        text-align: center;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-plus {
        font-size: 1.1rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    .about-experience-badge {
        width: 100px;
        height: 100px;
        bottom: -10px;
        right: -10px;
    }
    .about-experience-badge .exp-number {
        font-size: 1.5rem;
    }
    .about-experience-badge .exp-text {
        font-size: 0.6rem;
    }
    .service-card {
        padding: 24px;
    }
    .service-card h4 {
        font-size: 1.1rem;
    }
    .service-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    .why-card {
        padding: 28px 20px;
    }
    .why-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    .pricing-card {
        padding: 28px 20px;
    }
    .pricing-amount .price {
        font-size: 2.5rem;
    }
    .transform-img-wrapper {
        height: auto;
    }
    .transform-img {
        height: 200px;
        object-fit: cover;
    }
    .transform-video {
        height: 200px;
    }
    .transform-info {
        padding: 14px;
    }
    .transform-info h5 {
        font-size: 1rem;
    }
    .transform-info > p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    .transform-stats {
        flex-wrap: wrap;
        gap: 6px;
    }
    .transform-stats span {
        font-size: 0.75rem;
    }
    .transform-prev,
    .transform-next {
        width: 32px !important;
        height: 32px !important;
        top: 35% !important;
    }
    .transform-prev::after,
    .transform-next::after {
        font-size: 12px !important;
    }
    .transform-placeholder {
        height: 150px;
    }
    .portfolio-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .filter-btn {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
    .real-video-wrapper {
        height: 280px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 1.5rem;
    }
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
    .page-header {
        padding: 100px 0 40px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .footer-section {
        padding: 50px 0 20px;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-about {
        text-align: center;
    }
    .footer-title {
        margin-top: 20px;
    }
    .footer-collapse-toggle {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0 !important;
    }
    .footer-toggle-icon {
        font-size: 0.75rem;
        transition: transform 0.3s ease;
    }
    .footer-collapse-toggle.active .footer-toggle-icon {
        transform: rotate(180deg);
    }
    .footer-collapse-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding-top: 0;
    }
    .footer-collapse-content.open {
        max-height: 300px;
        padding-top: 12px;
    }
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .feature-icon {
        margin: 0 auto 10px;
    }
    .instagram-item {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    .hero-stats {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-plus {
        font-size: 1rem;
    }
    .stat-label {
        font-size: 0.65rem;
    }
    .review-card {
        padding: 20px;
    }
    .review-text {
        font-size: 0.9rem;
    }
    .service-card {
        padding: 20px;
    }
    .service-badge {
        font-size: 0.7rem;
    }
    .pricing-card {
        padding: 24px 16px;
    }
    .pricing-features li {
        font-size: 0.85rem;
    }
    .why-card h5 {
        font-size: 1rem;
    }
    .why-card p {
        font-size: 0.85rem;
    }
    .transform-img-wrapper {
        height: 180px;
    }
    .contact-info-card {
        padding: 20px;
    }
    .navbar-logo {
        max-height: 55px;
    }
    .whatsapp-float {
        width: 46px;
        height: 46px;
        bottom: 16px;
        left: 16px;
        font-size: 1.3rem;
    }
    .whatsapp-float i {
        font-size: 1.3rem;
    }
    .cta-title {
        font-size: 1.6rem;
    }
    .cta-text {
        font-size: 0.9rem;
    }
    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
