/* ============================================
   CSS Variables & Root Styles
   ============================================ */
:root {
    /* Colors */
    --primary-color: #1a7f7f;
    --primary-light: #2a9d9d;
    --secondary-color: #5dd5d5;
    --accent-color: #7ee8e8;
    --dark-teal: #0d4d4d;
    --darker-teal: #0a3838;
    --bg-dark: #0f3d3d;
    --bg-gradient-start: #0a4848;
    --bg-gradient-end: #0d2f2f;
    --text-light: #ffffff;
    --text-gray: #b8e6e6;
    --card-bg: rgba(26, 127, 127, 0.3);
    --card-hover: rgba(26, 127, 127, 0.5);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-button: 0 6px 20px rgba(93, 213, 213, 0.4);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Typography */
    --font-family: 'Tajawal', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

ul {
    list-style: none;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ============================================
   Fixed Buttons - No Transform
   ============================================ */
.btn-fixed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 24px;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    border: none;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn-fixed-primary {
    background: linear-gradient(135deg, #1a7f7f 0%, #2a9d9d 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(93, 213, 213, 0.4);
}

.btn-fixed-primary:hover {
    opacity: 0.9;
    box-shadow: 0 8px 24px rgba(93, 213, 213, 0.5);
}

.btn-fixed-hero-primary {
    background: linear-gradient(135deg, #5dd5d5 0%, #7ee8e8 100%);
    color: #ffffff;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 8px 24px rgba(93, 213, 213, 0.4);
}

.btn-fixed-hero-primary:hover {
    opacity: 0.95;
    box-shadow: 0 12px 32px rgba(93, 213, 213, 0.6);
}

.btn-fixed-hero-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(93, 213, 213, 0.5);
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
    backdrop-filter: blur(5px);
}

.btn-fixed-hero-secondary:hover {
    background: rgba(93, 213, 213, 0.1);
    border-color: #5dd5d5;
    box-shadow: 0 8px 24px rgba(93, 213, 213, 0.3);
}

/* ============================================
   Old Buttons - Keep for other sections
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 2rem;
    font-size: var(--font-size-base);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base);
    white-space: nowrap;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    transform: none !important;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:focus-visible {
    transform: none !important;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    box-shadow: 0 8px 24px rgba(93, 213, 213, 0.5);
    transform: none !important;
    outline: none;
}

.btn-secondary {
    background: rgba(93, 213, 213, 0.15);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: rgba(93, 213, 213, 0.25);
}

.btn-secondary:active {
    transform: translateY(0px) scale(1) !important;
}

.btn-secondary:focus {
    outline: none;
    transform: scale(1) !important;
}

/* Templates Button - Enhanced */
.btn-templates {
    position: relative;
    background: linear-gradient(135deg, #5dd5d5 0%, #7ee8e8 100%);
    color: var(--text-light);
    border: none;
    padding: 1.125rem 2.5rem;
    font-size: var(--font-size-lg);
    font-weight: 700;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(93, 213, 213, 0.4);
}

.btn-templates .btn-text {
    position: relative;
    z-index: 2;
    transition: var(--transition-base);
}

.btn-templates .btn-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    transition: transform var(--transition-base);
}

.btn-templates .btn-bg-effect {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7ee8e8 0%, #5dd5d5 100%);
    transition: right 0.4s ease;
    z-index: 1;
}

.btn-templates:hover {
    box-shadow: 0 12px 32px rgba(93, 213, 213, 0.6);
}

.btn-templates:hover .btn-bg-effect {
    right: 0;
}

.btn-templates:hover .btn-icon {
    transform: translateX(-5px);
}

.btn-templates:active {
    transform: translateY(0px) scale(1) !important;
}

.btn-templates:focus {
    outline: none;
    transform: translateY(0px) scale(1) !important;
}

/* Custom Project Button - Enhanced */
.btn-custom-project {
    position: relative;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-custom-project .btn-text {
    position: relative;
    z-index: 2;
    transition: var(--transition-base);
}

.btn-custom-project .btn-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
}

.btn-custom-project .btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 1;
}

.btn-custom-project:hover {
    background: var(--secondary-color);
    color: var(--dark-teal);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(93, 213, 213, 0.5);
}

.btn-custom-project:hover .btn-icon {
    opacity: 1;
    transform: translateX(0);
}

.btn-custom-project:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

.btn-custom-project:active {
    transform: translateY(0px) scale(1) !important;
}

.btn-custom-project:focus {
    outline: none;
    transform: translateY(0px) scale(1) !important;
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
    padding: 0.75rem 1.5rem;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--dark-teal);
}

.btn-outline:active {
    transform: scale(1) !important;
}

.btn-outline:focus {
    outline: none;
    transform: scale(1) !important;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: var(--font-size-lg);
}

.btn-large:hover,
.btn-large:active,
.btn-large:focus {
    transform: none !important;
    outline: none;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 72, 72, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-md);
}

.navbar .btn:hover,
.navbar .btn:active,
.navbar .btn:focus {
    transform: none !important;
    outline: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.nav-links a:hover {
    background: rgba(93, 213, 213, 0.15);
    color: var(--secondary-color);
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
}

/* ============================================
   Hero Section - Enhanced
   ============================================ */
.hero {
    position: relative;
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

/* Particles Canvas */
#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Animated Gradient Background */
.hero-gradient-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(93, 213, 213, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(126, 232, 232, 0.1) 0%, transparent 50%);
    animation: gradientMove 15s ease infinite;
    z-index: 0;
}

@keyframes gradientMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(5%, 5%) rotate(120deg);
    }
    66% {
        transform: translate(-5%, 5%) rotate(240deg);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* Floating Stats Badges */
.hero-stats {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.stat-badge {
    position: absolute;
    background: rgba(26, 127, 127, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 213, 213, 0.3);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: floatBadge 3s ease-in-out infinite;
}

.stat-badge-1 {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.stat-badge-2 {
    top: 45%;
    left: 8%;
    animation-delay: 1s;
}

.stat-badge-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-base);
}

.stat-badge:hover .stat-icon {
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.stat-text strong {
    font-size: var(--font-size-lg);
    color: var(--secondary-color);
    font-weight: 800;
}

.stat-text span {
    font-size: var(--font-size-xs);
    color: var(--text-gray);
}

/* Floating Icons */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    opacity: 0.4;
    animation: floatIcon 4s ease-in-out infinite;
}

.floating-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.floating-icon-3 {
    top: 30%;
    right: 8%;
    animation-delay: 2s;
}

.floating-icon-4 {
    bottom: 15%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-text {
    padding-left: var(--spacing-lg);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(93, 213, 213, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 213, 213, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: var(--spacing-md);
    animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 3s linear infinite;
}

.badge-icon svg {
    filter: drop-shadow(0 2px 4px rgba(93, 213, 213, 0.4));
}

.badge-text {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--secondary-color);
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .title-line {
    display: block;
    animation: slideInRight 0.8s ease;
}

.hero-title .highlight {
    color: var(--secondary-color);
    display: block;
    margin-top: var(--spacing-sm);
    background: linear-gradient(135deg, #5dd5d5 0%, #7ee8e8 50%, #5dd5d5 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s linear infinite, slideInLeft 0.8s ease 0.3s both;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
    animation: fadeIn 0.8s ease 0.5s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-buttons .btn {
    transition: all 0.2s ease;
}

.hero-buttons .btn:hover,
.hero-buttons .btn:active,
.hero-buttons .btn:focus {
    transform: none !important;
    outline: none;
}

.btn-hero-primary {
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover,
.btn-hero-primary:active,
.btn-hero-primary:focus {
    transform: none !important;
    outline: none;
}

.btn-hero-primary .btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotateGlow 3s linear infinite;
    pointer-events: none;
}

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

.btn-outline-hero {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(93, 213, 213, 0.5);
    padding: 1.125rem 2rem;
    font-size: var(--font-size-lg);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(5px);
}

.btn-outline-hero:hover,
.btn-outline-hero:active,
.btn-outline-hero:focus {
    background: rgba(93, 213, 213, 0.1);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(93, 213, 213, 0.3);
    transform: none !important;
    outline: none;
}

/* Hero Image Enhanced */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(93, 213, 213, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

.hero-image img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Animated Rings */
.image-ring {
    position: absolute;
    border: 2px solid rgba(93, 213, 213, 0.2);
    border-radius: 50%;
    animation: ringPulse 3s ease-out infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.ring-2 {
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.ring-3 {
    width: 140%;
    height: 140%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes bounceX {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-8px);
    }
    75% {
        transform: translateX(8px);
    }
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
}

.indicator.active {
    background: var(--secondary-color);
    width: 32px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Hero Responsive */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-text {
        padding-left: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-badge {
        display: inline-flex;
    }
    
    .stat-badge {
        display: none;
    }
    
    .floating-icon {
        opacity: 0.2;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .hero-description {
        font-size: var(--font-size-base);
    }
}

/* ============================================
   Section Titles
   ============================================ */
.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    line-height: 1.3;
}

.section-title .highlight {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .section-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-lg);
    }
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio {
    padding: var(--spacing-xxl) 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.portfolio-item-large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.portfolio-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

/* Project Pages Styles */
.project-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(93, 213, 213, 0.05) 0%, rgba(126, 232, 232, 0.05) 100%);
}

.project-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(93, 213, 213, 0.1);
    border: 1px solid rgba(93, 213, 213, 0.3);
    border-radius: 50px;
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    color: #5dd5d5;
}

.project-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.project-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.project-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Phone Mockup Styles */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    object-fit: cover;
    display: block;
}

.phone-frame-small {
    position: relative;
    width: 200px;
    height: 420px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.phone-frame-small::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.phone-frame-small img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    display: block;
}

/* Project Overview */
.project-overview {
    padding: 80px 0;
    background: #ffffff;
}

.project-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.project-info-card {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(93, 213, 213, 0.15);
}

.info-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.project-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.project-info-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Project Screenshots */
.project-screenshots {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(93, 213, 213, 0.03) 0%, rgba(126, 232, 232, 0.03) 100%);
}

.phone-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.phone-screenshot {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.screenshot-caption {
    text-align: center;
}

.screenshot-caption h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.screenshot-caption p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Project Features */
.project-features {
    padding: 80px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Project Features - Different from Pricing Features */
.project-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.project-features .feature-icon {
    margin-bottom: 24px;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Project CTA */
.project-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #5dd5d5 0%, #7ee8e8 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .project-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .phone-frame {
        width: 220px;
        height: 460px;
    }
    
    .phone-frame-small {
        width: 160px;
        height: 340px;
    }
    
    .phone-screenshots {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* App Detail Page Styles */
.app-detail-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(93, 213, 213, 0.05) 0%, rgba(126, 232, 232, 0.05) 100%);
}

.app-detail-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.app-main-image-container {
    position: sticky;
    top: 120px;
}

.app-main-image-wrapper {
    position: relative;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.app-main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    max-width: 100%;
}

.zoom-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: rgba(93, 213, 213, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.zoom-btn:hover {
    background: rgba(126, 232, 232, 0.95);
    transform: scale(1.1);
}

.app-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.thumbnail-item {
    position: relative;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.thumbnail-item:hover {
    border-color: rgba(93, 213, 213, 0.5);
    transform: translateY(-3px);
}

.thumbnail-item.active {
    border-color: #5dd5d5;
    box-shadow: 0 4px 12px rgba(93, 213, 213, 0.4);
}

.thumbnail-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.app-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(93, 213, 213, 0.1);
    border: 1px solid rgba(93, 213, 213, 0.3);
    border-radius: 50px;
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    color: #5dd5d5;
}

.app-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.app-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

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

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-gray);
}

.app-feature-item svg {
    flex-shrink: 0;
}

.app-pricing {
    padding: 24px;
    background: rgba(93, 213, 213, 0.1);
    border: 1px solid rgba(93, 213, 213, 0.2);
    border-radius: 16px;
}

.app-price-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.app-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #5dd5d5;
    line-height: 1;
}

.app-price-amount .currency {
    font-size: 1.25rem;
    font-weight: 600;
}

.app-price-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 8px;
}

.btn-add-to-cart {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #5dd5d5 0%, #7ee8e8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(93, 213, 213, 0.4);
}

.btn-add-to-cart:hover {
    box-shadow: 0 12px 32px rgba(93, 213, 213, 0.6);
    transform: translateY(-2px);
}

.app-gallery-section {
    margin-top: 80px;
}

.app-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.image-modal-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90vh;
    animation: scaleIn 0.3s ease;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.image-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.image-modal-close svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

    .app-main-image-container {
        position: static;
    }

    .app-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .app-title {
        font-size: 2rem;
    }

    .app-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .app-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }

    .image-modal-close {
        top: -40px;
        left: -10px;
    }
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    display: block;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: var(--spacing-lg);
    transform: translateY(100%);
    transition: var(--transition-base);
}

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

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

.portfolio-item:hover {
    box-shadow: var(--shadow-lg);
}

.portfolio-overlay h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.portfolio-overlay p {
    font-size: var(--font-size-sm);
    color: var(--text-gray);
}

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

/* Portfolio Responsive */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item-large {
        grid-row: span 1;
    }
}

/* ============================================
   Start Project Section
   ============================================ */
.start-project {
    padding: var(--spacing-xxl) 0;
    background: radial-gradient(ellipse at center, rgba(93, 213, 213, 0.08) 0%, transparent 70%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid rgba(93, 213, 213, 0.2);
}

.service-card:hover {
    background: var(--card-hover);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: var(--transition-base);
}

.service-icon svg {
    transition: var(--transition-base);
}

.service-card:hover .service-icon svg {
    filter: drop-shadow(0 4px 12px rgba(93, 213, 213, 0.4));
}

.service-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    font-size: var(--font-size-base);
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition-base);
}

.service-link:hover {
    gap: var(--spacing-sm);
}

/* Custom Project Card - Enhanced */
.custom-project-card {
    background: linear-gradient(135deg, rgba(26, 127, 127, 0.4) 0%, rgba(93, 213, 213, 0.2) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xxl);
    text-align: center;
    border: 2px solid rgba(93, 213, 213, 0.3);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.custom-project-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(93, 213, 213, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.custom-project-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 16px 48px rgba(93, 213, 213, 0.3);
}

.custom-project-card:active {
    transform: translateY(-1px);
}

.custom-card-icon {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

.custom-project-card h3 {
    position: relative;
    z-index: 1;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.custom-project-card p {
    position: relative;
    z-index: 1;
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    margin-bottom: var(--spacing-xl);
}

/* Services Grid Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Additional Services Section
   ============================================ */
.additional-services {
    padding: var(--spacing-xxl) 0;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.service-card-alt {
    background: rgba(26, 127, 127, 0.25);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid rgba(93, 213, 213, 0.2);
    position: relative;
}

.service-card-featured {
    background: linear-gradient(135deg, rgba(26, 127, 127, 0.4) 0%, rgba(93, 213, 213, 0.25) 100%);
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(93, 213, 213, 0.5);
}

.service-card-alt:hover {
    box-shadow: var(--shadow-lg);
}

.service-card-featured:hover {
    box-shadow: var(--shadow-lg);
}

.service-illustration {
    margin-bottom: var(--spacing-lg);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-illustration img {
    max-width: 150px;
    height: auto;
}

.service-card-alt h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.service-card-alt p {
    font-size: var(--font-size-sm);
    color: var(--text-gray);
    line-height: 1.8;
}

/* Services Row Responsive */
@media (max-width: 1400px) {
    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .service-card-featured {
        transform: scale(1);
    }
    
    .service-card-featured:hover {
        box-shadow: var(--shadow-lg);
    }
}

/* ============================================
   Partners Section
   ============================================ */
.partners {
    padding: var(--spacing-xxl) 0;
    background: rgba(13, 77, 77, 0.3);
}

.partners-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--text-gray);
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--spacing-xl);
    align-items: center;
    justify-items: center;
}

.partner-logo {
    opacity: 0.6;
    transition: var(--transition-base);
    filter: grayscale(100%);
}

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

.partner-logo img {
    height: 40px;
    width: auto;
}

/* Partners Responsive */
@media (max-width: 992px) {
    .partners-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    position: relative;
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    background: linear-gradient(180deg, transparent 0%, var(--darker-teal) 30%);
    margin-top: var(--spacing-xxl);
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-100%);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-column a {
    font-size: var(--font-size-sm);
    color: var(--text-gray);
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: var(--text-light);
    padding-right: var(--spacing-xs);
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-logo img {
    height: 72px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(93, 213, 213, 0.2);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

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

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

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

.copyright {
    font-size: var(--font-size-sm);
    color: var(--text-gray);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo {
        grid-column: span 2;
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        grid-column: 1;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-column a:hover {
        padding-right: 0;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Scroll animations */
.fade-in {
    animation: fadeIn 0.8s ease;
}

.slide-in-right {
    animation: slideInRight 0.8s ease;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease;
}

/* ============================================
   Loading States
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: var(--spacing-xxl) 0;
    background: radial-gradient(ellipse at top, rgba(93, 213, 213, 0.05) 0%, transparent 70%);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.pricing-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

/* Payment Badge */
.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

.payment-badge svg {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
    animation: pulse 2s ease-in-out infinite;
}

.payment-badge span {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Pricing Toggle - Keep for compatibility */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(26, 127, 127, 0.3);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    border: 1px solid rgba(93, 213, 213, 0.2);
}

.toggle-label {
    font-size: var(--font-size-base);
    color: var(--text-gray);
    transition: var(--transition-base);
}

.toggle-label.active {
    color: var(--secondary-color);
    font-weight: 700;
}

.save-badge {
    display: inline-block;
    background: linear-gradient(135deg, #5dd5d5 0%, #7ee8e8 100%);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    margin-right: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(93, 213, 213, 0.2);
    border-radius: 34px;
    transition: var(--transition-base);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    right: 4px;
    bottom: 4px;
    background: var(--text-light);
    border-radius: 50%;
    transition: var(--transition-base);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--secondary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(-28px);
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
    width: 100%;
}

.pricing-card {
    position: relative;
    background: rgba(26, 127, 127, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 213, 213, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(93, 213, 213, 0.3);
    border-color: var(--secondary-color);
}

/* Popular Card */
.pricing-card-popular {
    border: 2px solid var(--secondary-color);
    background: rgba(26, 127, 127, 0.35);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5dd5d5 0%, #7ee8e8 100%);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(93, 213, 213, 0.5);
}

/* Featured Card */
.pricing-card-featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(26, 127, 127, 0.4) 0%, rgba(93, 213, 213, 0.25) 100%);
    overflow: hidden;
}

.featured-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(93, 213, 213, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.plan-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.plan-icon {
    display: inline-flex;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

.plan-name {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.plan-description {
    font-size: var(--font-size-sm);
    color: var(--text-gray);
    line-height: 1.6;
}

/* Plan Price */
.plan-price {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(93, 213, 213, 0.2);
    border-bottom: 1px solid rgba(93, 213, 213, 0.2);
}

/* One-time Payment Styles */
.price-onetime {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.price-onetime .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1;
    background: linear-gradient(135deg, #5dd5d5 0%, #7ee8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-onetime .currency {
    font-size: var(--font-size-xl);
    color: var(--secondary-color);
    font-weight: 700;
}

.price-description {
    font-size: var(--font-size-base);
    color: var(--accent-color);
    font-weight: 600;
    text-align: center;
}

/* Monthly/Annual Styles - Keep for compatibility */
.price-monthly {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: var(--spacing-xs);
}

.currency {
    font-size: var(--font-size-base);
    color: var(--text-gray);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

.period {
    font-size: var(--font-size-base);
    color: var(--text-gray);
}

.price-annual {
    font-size: var(--font-size-sm);
    color: var(--text-gray);
}

/* Plan Button */
.btn-plan {
    width: 100%;
    padding: 1rem 2rem;
    font-size: var(--font-size-base);
    font-weight: 700;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--text-light);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    margin-bottom: var(--spacing-lg);
}

.btn-plan:hover {
    background: var(--secondary-color);
    color: var(--dark-teal);
    box-shadow: 0 8px 24px rgba(93, 213, 213, 0.4);
}

.btn-plan-primary {
    background: linear-gradient(135deg, #5dd5d5 0%, #7ee8e8 100%);
    border: none;
    color: var(--text-light);
}

.btn-plan-primary:hover {
    background: linear-gradient(135deg, #7ee8e8 0%, #5dd5d5 100%);
    box-shadow: 0 12px 32px rgba(93, 213, 213, 0.6);
}

.btn-plan-featured {
    background: linear-gradient(135deg, #7ee8e8 0%, #5dd5d5 100%);
    border: none;
    color: var(--text-light);
    box-shadow: 0 8px 24px rgba(126, 232, 232, 0.5);
}

.btn-plan-featured:hover {
    background: linear-gradient(135deg, #5dd5d5 0%, #7ee8e8 100%);
    box-shadow: 0 12px 32px rgba(126, 232, 232, 0.7);
}

/* Plan Features */
.plan-features {
    flex: 1;
}

.features-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list .feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

.features-list .feature-item span {
    flex: 1;
    display: inline-block;
    line-height: 1.4;
}

.features-list .feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.features-list .feature-item-highlight {
    background: rgba(126, 232, 232, 0.1);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    border-right: 3px solid var(--accent-color);
    align-items: flex-start;
}

.features-list .feature-item-highlight .feature-icon {
    margin-top: 2px;
    align-self: flex-start;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark-teal);
    padding: 0.125rem 0.5rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

/* Enterprise Section */
.enterprise-section {
    background: linear-gradient(135deg, rgba(26, 127, 127, 0.4) 0%, rgba(93, 213, 213, 0.2) 100%);
    border: 2px solid rgba(93, 213, 213, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
    position: relative;
    overflow: hidden;
}

.enterprise-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(93, 213, 213, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.enterprise-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-xl);
    align-items: center;
}

.enterprise-icon {
    animation: float 4s ease-in-out infinite;
}

.enterprise-text h3 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.enterprise-text p {
    font-size: var(--font-size-base);
    color: var(--text-gray);
    line-height: 1.6;
}

.btn-enterprise {
    padding: 1rem 2.5rem;
    font-size: var(--font-size-base);
    font-weight: 700;
    background: linear-gradient(135deg, #5dd5d5 0%, #7ee8e8 100%);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 8px 24px rgba(93, 213, 213, 0.4);
    white-space: nowrap;
}

.btn-enterprise:hover {
    background: linear-gradient(135deg, #7ee8e8 0%, #5dd5d5 100%);
    box-shadow: 0 12px 32px rgba(93, 213, 213, 0.6);
    transform: translateY(-2px);
}

/* FAQ Section */
.pricing-faq {
    margin-top: var(--spacing-xxl);
}

.faq-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--text-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.faq-item {
    background: rgba(26, 127, 127, 0.25);
    border: 1px solid rgba(93, 213, 213, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(93, 213, 213, 0.2);
}

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

.faq-question h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--text-light);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item:hover .faq-icon {
    transform: translateY(3px);
}

.faq-item.faq-open {
    background: rgba(26, 127, 127, 0.35);
    border-color: var(--secondary-color);
}

.faq-item.faq-open .faq-question {
    background: rgba(93, 213, 213, 0.1);
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
    font-size: var(--font-size-sm);
    color: var(--text-gray);
    line-height: 1.6;
}

/* Pricing Responsive */
@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-card-popular {
        transform: scale(1);
    }
    
    .pricing-card-popular:hover {
        transform: translateY(-10px);
    }
    
    .enterprise-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .enterprise-icon {
        justify-self: center;
    }
    
    .btn-enterprise {
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .pricing-toggle {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .btn,
    .carousel-indicators {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

