/* ============================================
   Edit AI Studio - InShot Inspired Design
   ============================================ */

:root {
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --secondary: #EC4899;
    --accent: #F59E0B;
    --gradient: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
    --gradient-alt: linear-gradient(135deg, #EC4899 0%, #F59E0B 100%);
    --dark: #0F172A;
    --dark-light: #1E293B;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --gray-lighter: #E2E8F0;
    --white: #FFFFFF;
    --bg: #F8FAFC;
    --bg-dark: #F1F5F9;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: #1F2937;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   NAVIGATION - InShot Style
   ============================================ */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-dark {
    background: transparent !important;
}

.navbar-dark .navbar-brand,
.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-dark .nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
}


.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
    text-decoration: none;
}

.logo-img {
    height: 90px !important;
    width: auto;
    object-fit: contain;
    border-radius: 20px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo-img:hover {
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

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

.navbar-nav .nav-link {
    color: #4B5563;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

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

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

.nav-social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

/* Header social icons - same styling as footer */
.navbar .social-btn-modern {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

/* YouTube - Classic horizontal red rectangle with white play button */
.navbar .social-youtube {
    background: #FF0000 !important;
    border: none !important;
    border-radius: 12px !important;
    color: #FFFFFF !important;
    width: 52px !important;
    height: 36px !important;
    box-shadow: 0 2px 6px rgba(255, 0, 0, 0.25);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    min-width: 56px !important;
    min-height: 40px !important;
    margin: 0;
}

.navbar .social-youtube svg {
    width: 22px;
    height: 15px;
    display: block;
    flex-shrink: 0;
    margin: 0 auto;
}

.navbar .social-youtube:hover {
    background: #CC0000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}


/* Facebook - Blue circle with white F */
.navbar .social-facebook {
    background: #1877F2 !important;
    border: none !important;
    border-radius: 50% !important;
    color: #FFFFFF !important;
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0;
}

.navbar .social-facebook svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
    margin: 0 auto;
}

.navbar .social-facebook:hover {
    background: #145DBF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* (Instagram uses default .social-btn-modern navbar styling; no custom circle background) */

/* X (Twitter) - Dark X on white rounded square */
.navbar .social-x {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    color: #000000;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.navbar .social-x svg {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
    color: #000000;
}

.navbar .social-x:hover {
    background: #F3F4F6;
    border-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-primary-custom {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION - InShot Exact Style
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/psychedelic-portrait-collage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-content {
    text-align: center;
    color: white;
}

.hero-main-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-line1 {
    display: block;
    margin-bottom: 8px;
    color: white;
}

.hero-line2 {
    display: block;
    color: white;
}

.brand-name {
    color: #FF6B9D;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 107, 157, 0.3);
}

.hero-app-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.app-download-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
}

.app-download-button:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: white;
}

.app-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.app-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.app-label {
    font-size: 0.7rem;
    opacity: 0.85;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.app-name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
    margin-top: 20px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   FEATURES SECTION - InShot Interactive Style
   ============================================ */
.features-section {
    background: #0F0F0F;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.features-interactive-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.features-left {
    color: white;
}

.features-main-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    line-height: 1.2;
    white-space: nowrap;
}

.features-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.features-benefits li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.features-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF6B9D;
    font-size: 1.5rem;
    line-height: 1;
}

.feature-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 600px;
}

.feature-btn {
    background: rgba(30, 30, 30, 0.8);
    border: none;
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    flex: 0 0 auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-btn:hover {
    background: rgba(40, 40, 40, 0.9);
    transform: translateY(-1px);
}

.feature-btn.active {
    background: #FFFFFF;
    color: #1F2937;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.feature-btn.active:hover {
    background: #FFFFFF;
    color: #1F2937;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature-btn.explore-more {
    background: rgba(30, 30, 30, 0.8);
    color: #FFFFFF;
    border: none;
}

.feature-btn.explore-more:hover {
    background: rgba(40, 40, 40, 0.9);
    transform: translateY(-1px);
}

.features-right {
    position: relative;
    min-height: 600px;
    height: 100%;
}

/* InShot Style Floating Gallery - Exact Match */
.feature-gallery-floating {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    padding: 20px;
}

.floating-image-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    opacity: 1;
    transform: translateZ(0);
}

.floating-image-item:hover {
    transform: translateY(-8px) scale(1.05) !important;
    z-index: 100 !important;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.8);
}

.floating-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.floating-image-item:hover img {
    transform: scale(1.05);
}

.floating-image-item.fade-out {
    opacity: 0;
    transform: scale(0.8) !important;
}

.floating-image-item.fade-in {
    opacity: 0;
    animation: fadeInFloat 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeInFloat {
    to {
        opacity: 1;
    }
}

/* Main central image - largest */
.main-floating-image {
    width: 280px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Small floating images - all same size */
.small-floating-image {
    width: 160px;
    height: 240px;
    z-index: 5;
}

/* Medium floating images - removed, using small for all */
.medium-floating-image {
    width: 160px;
    height: 240px;
    z-index: 5;
}

/* Initial positions for floating images - uniform spacing */
.floating-image-item[data-index="0"] {
    /* Main image - always center */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-image-item[data-index="1"] {
    top: 8%;
    left: 8%;
    transform: rotate(-3deg);
}

.floating-image-item[data-index="2"] {
    top: 8%;
    right: 8%;
    transform: rotate(4deg);
}

.floating-image-item[data-index="3"] {
    bottom: 8%;
    left: 8%;
    transform: rotate(5deg);
}

.floating-image-item[data-index="4"] {
    bottom: 8%;
    right: 8%;
    transform: rotate(-4deg);
}

/* Responsive for Features Interactive Section */
@media (max-width: 1024px) {
    .features-interactive-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-right {
        order: -1;
        min-height: 500px;
    }
    
    .feature-gallery-floating {
        min-height: 500px;
    }
    
    .main-floating-image {
        width: 220px;
        height: 330px;
    }
    
    .small-floating-image {
        width: 130px;
        height: 195px;
    }
    
    .medium-floating-image {
        width: 130px;
        height: 195px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .features-main-title {
        font-size: 2rem;
    }
    
    .features-benefits li {
        font-size: 1rem;
    }
    
    .feature-btn {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .main-feature-image {
        max-width: 100%;
    }
    
    .secondary-images {
        max-width: 100%;
    }
}

/* ============================================
   TOOLS SECTION - Minimal Floating Design (Dark Mode Only)
   ============================================ */
.tools-section-minimal-dark {
    background: #0a0a0a;
    background-image: url('../images/2209.q802.009.F.m009.c7.mobile app development flat abstract.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.tools-minimal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.85);
    z-index: 0;
}

.tools-section-minimal-dark .container {
    position: relative;
    z-index: 1;
}

.tools-section-minimal-dark .section-badge {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tools-section-minimal-dark .section-title {
    color: #ffffff;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.tools-section-minimal-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Floating Grid */
.tools-floating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 20px;
}

/* Floating Card */
.tool-float-card {
    position: relative;
    height: 180px;
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(40px);
    animation: floatCardIn 0.8s ease-out forwards;
}

.tool-float-card:nth-child(1) { animation-delay: 0.05s; }
.tool-float-card:nth-child(2) { animation-delay: 0.1s; }
.tool-float-card:nth-child(3) { animation-delay: 0.15s; }
.tool-float-card:nth-child(4) { animation-delay: 0.2s; }
.tool-float-card:nth-child(5) { animation-delay: 0.25s; }
.tool-float-card:nth-child(6) { animation-delay: 0.3s; }
.tool-float-card:nth-child(7) { animation-delay: 0.35s; }
.tool-float-card:nth-child(8) { animation-delay: 0.4s; }
.tool-float-card:nth-child(9) { animation-delay: 0.45s; }
.tool-float-card:nth-child(10) { animation-delay: 0.5s; }
.tool-float-card:nth-child(11) { animation-delay: 0.55s; }
.tool-float-card:nth-child(12) { animation-delay: 0.6s; }
.tool-float-card:nth-child(13) { animation-delay: 0.65s; }
.tool-float-card:nth-child(14) { animation-delay: 0.7s; }
.tool-float-card:nth-child(15) { animation-delay: 0.75s; }
.tool-float-card:nth-child(16) { animation-delay: 0.8s; }

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

/* Card Background */
.float-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.tool-float-card:hover .float-card-bg {
    opacity: 1;
}

/* Card Content */
.float-card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 24px 28px;
    gap: 20px;
}

/* Icon Wrapper */
.float-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.float-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.tool-float-card:hover .float-icon-wrapper::before {
    width: 200px;
    height: 200px;
}

.float-icon-wrapper i {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.6s ease;
    position: relative;
    z-index: 1;
}

.tool-float-card:hover .float-icon-wrapper {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.tool-float-card:hover .float-icon-wrapper i {
    color: #ffffff;
    transform: scale(1.15);
}

/* Text Content */
.float-text {
    flex: 1;
    min-width: 0;
}

.float-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
    transition: all 0.4s ease;
}

.tool-float-card:hover .float-title {
    color: #ffffff;
    transform: translateX(4px);
}

.float-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
    transition: all 0.4s ease;
}

.tool-float-card:hover .float-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Accent Line */
.float-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.tool-float-card:hover .float-accent {
    width: 100%;
}

/* Hover Effects */
.tool-float-card:hover {
    transform: translateY(-8px);
    background: rgba(20, 20, 20, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tools-floating-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tools-floating-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 10px;
    }
    
    .tool-float-card {
        height: 160px;
    }
    
    .float-card-content {
        padding: 20px 24px;
        gap: 16px;
    }
    
    .float-icon-wrapper {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
    
    .float-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .float-title {
        font-size: 1.05rem;
    }
    
    .float-desc {
        font-size: 0.8rem;
    }
}

/* ============================================
   TOOLS SECTION - Alternative Hexagonal Design (Dark Mode Only)
   ============================================ */
.tools-section-alt-dark {
    background: #000000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.tools-section-alt-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
    animation: hexBgPulse 10s ease-in-out infinite;
}

@keyframes hexBgPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.tools-section-alt-dark .container {
    position: relative;
    z-index: 1;
}

.tools-section-alt-dark .section-badge {
    background: rgba(0, 255, 255, 0.15);
    color: #00FFFF;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.tools-section-alt-dark .section-title {
    color: #FFFFFF;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.tools-section-alt-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Hexagonal Grid Layout */
.tools-hexagonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 60px auto 0;
    justify-items: center;
    padding: 40px 20px;
}

/* Hexagon Shape */
.tool-hexagon {
    width: 200px;
    height: 230px;
    position: relative;
    margin: 15px 0;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    animation: hexFadeIn 0.8s ease-out forwards;
}

.tool-hexagon:nth-child(1) { animation-delay: 0.1s; }
.tool-hexagon:nth-child(2) { animation-delay: 0.2s; }
.tool-hexagon:nth-child(3) { animation-delay: 0.3s; }
.tool-hexagon:nth-child(4) { animation-delay: 0.4s; }
.tool-hexagon:nth-child(5) { animation-delay: 0.5s; }
.tool-hexagon:nth-child(6) { animation-delay: 0.6s; }
.tool-hexagon:nth-child(7) { animation-delay: 0.7s; }
.tool-hexagon:nth-child(8) { animation-delay: 0.8s; }
.tool-hexagon:nth-child(9) { animation-delay: 0.9s; }
.tool-hexagon:nth-child(10) { animation-delay: 1s; }
.tool-hexagon:nth-child(11) { animation-delay: 1.1s; }
.tool-hexagon:nth-child(12) { animation-delay: 1.2s; }

@keyframes hexFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8) rotate(180deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

/* Hexagon Inner Content */
.hexagon-inner {
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* Hexagon Border Glow */
.hexagon-border {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #00FFFF, #FF00FF, #00FFFF);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    animation: hexBorderGlow 3s ease-in-out infinite;
}

@keyframes hexBorderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hover Effects */
.tool-hexagon:hover {
    transform: translateY(-15px) scale(1.1) rotate(5deg);
}

.tool-hexagon:hover .hexagon-inner {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.4),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.tool-hexagon:hover .hexagon-border {
    opacity: 1;
    animation: hexBorderGlow 1s ease-in-out infinite;
}

/* Icon Styling */
.hex-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.3);
    transition: all 0.5s ease;
    position: relative;
}

.hex-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tool-hexagon:hover .hex-icon {
    transform: scale(1.2) rotate(360deg);
    background: rgba(0, 255, 255, 0.2);
    border-color: #00FFFF;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.tool-hexagon:hover .hex-icon::before {
    opacity: 1;
}

.hex-icon i {
    font-size: 2rem;
    color: #00FFFF;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.tool-hexagon:hover .hex-icon i {
    color: #FFFFFF;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
    transform: scale(1.1);
}

/* Title Styling */
.hex-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    transition: all 0.4s ease;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.tool-hexagon:hover .hex-title {
    color: #00FFFF;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
    transform: translateY(-3px);
}

/* Description Styling */
.hex-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
    transition: all 0.4s ease;
}

.tool-hexagon:hover .hex-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tools-hexagonal-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }
    
    .tool-hexagon {
        width: 180px;
        height: 210px;
    }
}

@media (max-width: 768px) {
    .tools-hexagonal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px 10px;
    }
    
    .tool-hexagon {
        width: 160px;
        height: 185px;
        margin: 10px 0;
    }
    
    .hex-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .hex-icon i {
        font-size: 1.75rem;
    }
    
    .hex-title {
        font-size: 1rem;
    }
    
    .hex-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .tools-hexagonal-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-hexagon {
        width: 180px;
        height: 210px;
    }
}

/* ============================================
   TOOLS SECTION - Glassmorphism Neon Design (Dark Mode Only) - ALTERNATIVE
   ============================================ */
.tools-section-dark {
    background: #000000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.tools-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.tools-section-dark .section-badge {
    background: rgba(0, 255, 255, 0.15);
    color: #00FFFF;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.tools-section-dark .section-title {
    color: #FFFFFF;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.tools-section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Masonry Grid Layout */
.tools-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 60px auto 0;
    grid-auto-rows: 10px;
}

.tool-panel {
    position: relative;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.tool-panel:nth-child(1) { animation-delay: 0.1s; }
.tool-panel:nth-child(2) { animation-delay: 0.2s; }
.tool-panel:nth-child(3) { animation-delay: 0.3s; }
.tool-panel:nth-child(4) { animation-delay: 0.4s; }
.tool-panel:nth-child(5) { animation-delay: 0.5s; }
.tool-panel:nth-child(6) { animation-delay: 0.6s; }
.tool-panel:nth-child(7) { animation-delay: 0.7s; }
.tool-panel:nth-child(8) { animation-delay: 0.8s; }
.tool-panel:nth-child(9) { animation-delay: 0.9s; }
.tool-panel:nth-child(10) { animation-delay: 1s; }
.tool-panel:nth-child(11) { animation-delay: 1.1s; }
.tool-panel:nth-child(12) { animation-delay: 1.2s; }

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

/* Panel Sizes */
.tool-panel-small {
    grid-row-end: span 18;
    min-height: 200px;
}

.tool-panel-medium {
    grid-row-end: span 22;
    min-height: 240px;
}

.tool-panel-large {
    grid-row-end: span 26;
    min-height: 280px;
}

/* Neon Glow Effect */
.tool-panel-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

/* Accent Colors */
.tool-panel[data-accent="cyan"] {
    --accent-color: #00FFFF;
    --accent-glow: rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.2);
}

.tool-panel[data-accent="magenta"] {
    --accent-color: #FF00FF;
    --accent-glow: rgba(255, 0, 255, 0.3);
    border-color: rgba(255, 0, 255, 0.2);
}

.tool-panel[data-accent="orange"] {
    --accent-color: #FF8C00;
    --accent-glow: rgba(255, 140, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.2);
}

.tool-panel[data-accent="purple"] {
    --accent-color: #9D4EDD;
    --accent-glow: rgba(157, 78, 221, 0.3);
    border-color: rgba(157, 78, 221, 0.2);
}

.tool-panel[data-accent="blue"] {
    --accent-color: #4A90E2;
    --accent-glow: rgba(74, 144, 226, 0.3);
    border-color: rgba(74, 144, 226, 0.2);
}

.tool-panel[data-accent="pink"] {
    --accent-color: #FF69B4;
    --accent-glow: rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.2);
}

.tool-panel[data-accent="red"] {
    --accent-color: #FF4444;
    --accent-glow: rgba(255, 68, 68, 0.3);
    border-color: rgba(255, 68, 68, 0.2);
}

.tool-panel[data-accent="teal"] {
    --accent-color: #20B2AA;
    --accent-glow: rgba(32, 178, 170, 0.3);
    border-color: rgba(32, 178, 170, 0.2);
}

.tool-panel[data-accent="yellow"] {
    --accent-color: #FFD700;
    --accent-glow: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.2);
}

.tool-panel[data-accent="green"] {
    --accent-color: #00FF88;
    --accent-glow: rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.2);
}

/* Hover Effects */
.tool-panel:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(-1deg) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px var(--accent-glow),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    background: rgba(20, 20, 20, 0.6);
}

.tool-panel:hover .tool-panel-glow {
    opacity: 0.4;
    color: var(--accent-color);
}

.tool-panel-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Icon Styling */
.tool-icon-neon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tool-icon-neon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-color), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tool-panel:hover .tool-icon-neon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 30px var(--accent-glow),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.tool-panel:hover .tool-icon-neon::before {
    opacity: 1;
}

.tool-icon-neon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px var(--accent-color));
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.tool-panel:hover .tool-icon-neon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--accent-color));
    color: #FFFFFF;
}

/* Title Styling */
.tool-title-neon {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.02em;
    transition: all 0.4s ease;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.tool-panel:hover .tool-title-neon {
    color: var(--accent-color);
    text-shadow: 0 0 30px var(--accent-color);
    transform: translateY(-2px);
}

/* Description Styling */
.tool-desc-neon {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    text-align: center;
    margin: 0;
    transition: all 0.4s ease;
}

.tool-panel:hover .tool-desc-neon {
    color: rgba(255, 255, 255, 0.9);
}

/* Accent Line */
.tool-accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin: 20px auto 0;
    border-radius: 2px;
    opacity: 0.5;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px var(--accent-color);
}

.tool-panel:hover .tool-accent-line {
    width: 100px;
    opacity: 1;
    box-shadow: 0 0 20px var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tools-masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tools-masonry-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tool-panel-small,
    .tool-panel-medium,
    .tool-panel-large {
        grid-row-end: span 1;
        min-height: auto;
    }
    
    .tool-panel {
        padding: 28px 24px;
    }
    
    .tool-icon-neon {
        width: 70px;
        height: 70px;
    margin-bottom: 20px;
    }
    
    .tool-icon-neon i {
        font-size: 2rem;
    }
    
    .tool-title-neon {
        font-size: 1.2rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION - InShot Dark Theme Style
   ============================================ */
.testimonials-section-dark {
    background: #0F0F0F;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-dark-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.08) 0%, transparent 50%);
    z-index: 0;
}

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

.testimonials-section-dark .section-badge {
    background: rgba(255, 107, 157, 0.15);
    color: #FF6B9D;
    border: 1px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.2);
}

.testimonials-section-dark .section-title {
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.testimonials-section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Carousel Container */
.testimonials-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: hidden;
}

/* Testimonials Grid - Carousel Mode */
.testimonials-grid-dark {
    display: flex;
    gap: 28px;
    will-change: transform;
    animation: scrollContinuous 20s linear infinite;
}

.testimonials-carousel-container:hover .testimonials-grid-dark {
    animation-play-state: paused;
}

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

/* Testimonial Card */
.testimonial-card-dark {
    position: relative;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: testimonialFadeIn 0.8s ease-out forwards;
    min-width: 320px;
    flex-shrink: 0;
}

.testimonial-card-dark:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card-dark:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card-dark:nth-child(3) { animation-delay: 0.5s; }

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

/* Card Glow Effect */
.testimonial-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.testimonial-card-dark:hover .testimonial-card-glow {
    opacity: 1;
}

/* Card Inner */
.testimonial-card-inner {
    position: relative;
    z-index: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hover Effects */
.testimonial-card-dark:hover {
    transform: translateY(-8px);
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 107, 157, 0.2);
}

/* Stars */
.testimonial-stars-dark {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars-dark i {
    font-size: 1.2rem;
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.testimonial-card-dark:hover .testimonial-stars-dark i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

/* Testimonial Text */
.testimonial-text-dark {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 0 24px 0;
    flex: 1;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text-dark::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 3rem;
    color: rgba(255, 107, 157, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card-dark:hover .testimonial-text-dark {
    color: #FFFFFF;
}

/* Author Section */
.testimonial-author-dark {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Avatar */
.author-avatar-dark {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8C42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.author-avatar-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card-dark:hover .author-avatar-dark {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

.testimonial-card-dark:hover .author-avatar-dark::before {
    opacity: 1;
}

.author-avatar-dark span {
    position: relative;
    z-index: 1;
}

/* Author Info */
.author-info-dark {
    flex: 1;
    min-width: 0;
}

.author-name-dark {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    transition: all 0.4s ease;
}

.testimonial-card-dark:hover .author-name-dark {
    color: #FF6B9D;
}

.author-role-dark {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: all 0.4s ease;
}

.testimonial-card-dark:hover .author-role-dark {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-card-dark {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .testimonials-section-dark {
        padding: 80px 0;
    }
    
    .testimonial-card-dark {
        min-width: 100%;
    }
    
    .testimonial-card-inner {
        padding: 28px 24px;
    }
    
    .testimonial-text-dark {
        font-size: 0.95rem;
    }
    
    .author-avatar-dark {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 0.85rem;
    }
}

/* ============================================
   CTA SECTION - InShot Dark Theme Style
   ============================================ */
.cta-section-inshot {
    background: #0F0F0F;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-inshot-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    z-index: 0;
}

.cta-inshot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    z-index: 0;
    animation: ctaPatternMove 20s ease-in-out infinite;
}

@keyframes ctaPatternMove {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

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

.cta-inshot-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Stats Row */
.cta-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: statFadeIn 0.8s ease-out forwards;
}

.cta-stat-item:nth-child(1) { animation-delay: 0.1s; }
.cta-stat-item:nth-child(2) { animation-delay: 0.2s; }
.cta-stat-item:nth-child(3) { animation-delay: 0.3s; }
.cta-stat-item:nth-child(4) { animation-delay: 0.4s; }

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

.cta-stat-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B9D 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.cta-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Main CTA Content */
.cta-main-content {
    position: relative;
    z-index: 1;
}

.cta-badge-inshot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 157, 0.15);
    border: 1px solid rgba(255, 107, 157, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    color: #FF6B9D;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.2);
}

.cta-badge-inshot i {
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

.cta-title-inshot {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.cta-description-inshot {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons-inshot {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-btn-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
    color: #FFFFFF;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.cta-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6);
}

.cta-btn-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover .cta-btn-icon {
    transform: scale(1.2) rotate(90deg);
    background: rgba(255, 255, 255, 0.3);
}

.cta-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cta-btn-label {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
}

.cta-btn-sub {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
    margin-top: 2px;
}

.cta-btn-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-btn-secondary:hover::before {
    opacity: 1;
}

.cta-btn-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

/* Trust Indicators */
.cta-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-item i {
    font-size: 1.2rem;
    color: #FF6B9D;
    filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.5));
}

.trust-item:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}

.trust-item:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px rgba(255, 107, 157, 0.8));
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section-inshot {
        padding: 80px 0;
    }
    
    .cta-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
        padding: 30px 0;
    }
    
    .cta-buttons-inshot {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }
    
    .cta-btn-text {
        align-items: center;
        text-align: center;
    }
    
    .cta-trust-indicators {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .cta-stats-row {
        grid-template-columns: 1fr;
    }
    
    .cta-title-inshot {
        font-size: 2rem;
    }
}

/* ============================================
   FOOTER - Modern Minimal Design
   ============================================ */
.footer-modern {
    background: #0a0a0a;
    color: #FFFFFF;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-modern-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Footer Content */
.footer-main-content {
    display: none;
}

/* Simple InShot-style footer bar */
.footer-bar-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.footer-logo-simple {
    height: 26px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
}

.footer-logo-text-simple {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bar-center {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    flex: 1;
    padding: 0 40px;
    margin-left: 150px;
}

.footer-bar-center a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-bar-center a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bar-center a#privacyPolicyLink {
    margin-right: 150px;
}

.footer-bar-right {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    flex: 0 0 auto;
    text-align: right;
}

@media (max-width: 768px) {
    .footer-bar-simple {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
    
    .footer-bar-right {
        white-space: normal;
    }
}

/* Brand Section */
.footer-brand-modern {
    flex: 1;
    max-width: 400px;
}

.footer-logo-modern-wrapper {
    display: block;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-logo-modern-wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
}

.footer-logo-modern {
    height: 50px !important;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    filter: none;
}

.footer-logo-modern:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.footer-logo-text-modern {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    display: none;
    background: linear-gradient(135deg, #FF6B9D 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-modern-wrapper:has(img[style*="display: none"]) .footer-logo-text-modern,
.footer-logo-modern-wrapper img:not([src]) + .footer-logo-text-modern {
    display: inline-block;
}

.footer-logo-inshot {
    height: 50px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-logo-inshot:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 107, 157, 0.6));
}

.footer-logo-text-inshot {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FF6B9D 0%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Social Links */
.footer-social-modern {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-btn-modern {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

/* YouTube - Classic horizontal red rectangle with white play button */
.social-youtube {
    background: #FF0000;
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    width: 60px;
    height: 42px;
    box-shadow: 0 2px 6px rgba(255, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.social-youtube svg {
    width: 26px;
    height: 18px;
    display: block;
    flex-shrink: 0;
    margin: 0 auto;
}

.social-youtube:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

/* TikTok - Black circle with white note and colored shadows */
.social-tiktok {
    background: #000000;
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.social-tiktok svg {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    margin: 0 auto;
}

.social-tiktok:hover {
    background: #1a1a1a;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Pinterest - Red circle with white P */
.social-pinterest {
    background: #BD081C;
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.social-pinterest svg {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    margin: 0 auto;
}

.social-pinterest:hover {
    background: #9D0718;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(189, 8, 28, 0.4);
}

/* X (Twitter) - White X symbol, no background */
.social-x {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.social-x svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
    color: #FFFFFF;
}

.social-x:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Links Section */
.footer-links-modern {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.footer-nav-group {
    min-width: 140px;
}

.footer-nav-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    display: block;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FF6B9D;
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

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

/* Footer Bottom Bar */
.footer-bottom-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}

.footer-copyright-modern {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-align: center;
}

.footer-copyright-modern p {
    margin: 0;
}

.trust-badge-modern:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 157, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-top-section {
        gap: 60px;
    }
    
    .footer-links-grid {
        gap: 30px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-modern {
        padding: 60px 0 25px;
    }
    
    .footer-main-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .footer-brand-modern {
        max-width: 100%;
    }
    
    .footer-links-modern {
        width: 100%;
        gap: 40px;
        flex-wrap: wrap;
    }
    
    .footer-brand-modern {
        max-width: 100%;
    }
    
    .footer-links-modern {
        width: 100%;
        justify-content: flex-start;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 50px 0 25px;
    }
    
    .footer-main-content {
        gap: 35px;
        margin-bottom: 35px;
        padding-bottom: 35px;
    }
    
    .footer-links-modern {
        gap: 30px;
    }
    
    .footer-bottom-modern {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        gap: 12px;
    }
    
    .footer-logo-modern {
        height: 45px !important;
        max-width: 150px;
    }
}

/* ============================================
   Privacy Policy Modal
   ============================================ */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.privacy-modal-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10000;
}

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

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    border-radius: 20px 20px 0 0;
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2937;
}

.privacy-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6B7280;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    line-height: 1;
}

.privacy-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #1F2937;
}

.privacy-modal-body {
    flex: 1;
    overflow: hidden;
    padding: 0;
    border-radius: 0 0 20px 20px;
}

.privacy-pdf-viewer {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .privacy-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .privacy-modal-header {
        padding: 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .privacy-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .privacy-pdf-viewer {
        height: 65vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .privacy-modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        height: 100vh;
    }
    
    .privacy-modal-header {
        border-radius: 0;
    }
    
    .privacy-modal-body {
        border-radius: 0;
    }
    
    .privacy-pdf-viewer {
        height: calc(100vh - 80px);
        min-height: auto;
    }
}

/* ============================================
   Contact Us Full Screen Modal
   ============================================ */
.contact-modal-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-modal-content-fullscreen {
    position: relative;
    background: #FFFFFF;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    z-index: 10001;
}

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

.contact-modal-header-fullscreen {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    flex-shrink: 0;
}

.contact-modal-header-fullscreen h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2937;
}

.contact-modal-close-fullscreen {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #6B7280;
    cursor: pointer;
    padding: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    line-height: 1;
}

.contact-modal-close-fullscreen:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #1F2937;
}

.contact-modal-body-fullscreen {
    flex: 1;
    overflow: hidden;
    padding: 0;
    width: 100%;
    height: calc(100% - 80px);
}

.contact-pdf-viewer-fullscreen {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .contact-modal-header-fullscreen {
        padding: 15px 20px;
    }
    
    .contact-modal-header-fullscreen h2 {
        font-size: 1.5rem;
    }
    
    .contact-modal-close-fullscreen {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .contact-modal-body-fullscreen {
        height: calc(100% - 70px);
    }
}

@media (max-width: 480px) {
    .contact-modal-header-fullscreen {
        padding: 12px 15px;
    }
    
    .contact-modal-header-fullscreen h2 {
        font-size: 1.25rem;
    }
    
    .contact-modal-close-fullscreen {
        font-size: 1.75rem;
        width: 35px;
        height: 35px;
    }
    
    .contact-modal-body-fullscreen {
        height: calc(100% - 60px);
    }
}

@media (max-width: 480px) {
    .footer-social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-badges {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-badge {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Delay classes */
[data-delay="0"] { transition-delay: 0ms; }
[data-delay="50"] { transition-delay: 50ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="250"] { transition-delay: 250ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="350"] { transition-delay: 350ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="450"] { transition-delay: 450ms; }
[data-delay="500"] { transition-delay: 500ms; }
[data-delay="550"] { transition-delay: 550ms; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .testimonial-card {
        margin-bottom: 24px;
    }
    
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .features-section,
    .tools-section-minimal-dark,
    .tools-section-alt-dark,
    .tools-section-dark,
    .testimonials-section,
    .testimonials-section-dark {
        padding: 60px 0;
    }
    
    .cta-section,
    .cta-section-inshot {
        padding: 60px 0;
    }
}

