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

:root {
    /* Fire Theme Colors - Based on Fire Animation */
    --primary-color: #ec760c;
    --primary-dark: #cd4606;
    --primary-light: #feec85;
    --secondary-color: #973716;
    --accent-color: #ffae34;
    --fire-glow: #fefcc9;
    --fire-hot: #e91e63;
    --fire-warm: #ff6b35;
    
    /* Neutral Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --background: #ffffff;
    --background-secondary: #fffbf7;
    --background-dark: #2a1810;
    --border-color: #f5e6d3;
    --shadow-light: rgba(205, 70, 6, 0.05);
    --shadow-medium: rgba(205, 70, 6, 0.1);
    --shadow-heavy: rgba(205, 70, 6, 0.2);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 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.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-tooltip: 1070;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    width: 120px;
    height: auto;
    margin-bottom: var(--space-lg);
    animation: pulse 2s infinite;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

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

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::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 var(--transition-slow);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: var(--background);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-lg);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    transition: transform var(--transition-normal);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    margin-right: var(--space-xl);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle-icon {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0 var(--space-2xl);
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-highlight-text {
    margin-bottom: var(--space-lg);
    text-align: left;
}

.animated-text {
    display: block !important;
    font-size: var(--font-size-5xl) !important;
    font-weight: 800 !important;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 25%, #ffa726 50%, #ff8c42 75%, #ff6b35 100%) !important;
    background-size: 400% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: #ff6b35 !important;
    animation: gradientMove 3s ease-in-out infinite !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    line-height: 1.2 !important;
}

.black-gradient {
    background: linear-gradient(90deg, #000000 0%, #333333 25%, #666666 50%, #333333 75%, #000000 100%) !important;
    background-size: 400% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: #000000 !important;
    animation: gradientMove 2.5s ease-in-out infinite !important;
}

.sub-highlight {
    display: block !important;
    font-size: var(--font-size-lg) !important;
    font-weight: 600 !important;
    background: linear-gradient(90deg, #ff8c42 0%, #ffa726 50%, #ff6b35 100%) !important;
    background-size: 300% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: #ff8c42 !important;
    animation: gradientMove 2s ease-in-out infinite reverse !important;
    margin-top: var(--space-sm) !important;
}

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

@keyframes glow {
    0% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); }
    100% { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6); }
}

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

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-image-container {
    position: relative;
    perspective: 1000px;
}

.hero-main-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-slow);
    display: block;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

.floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    animation: float 6s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: var(--space-sm);
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    background: white;
    border-radius: calc(var(--radius-lg) - 3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.card-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: -10%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 30%;
    left: -8%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 10%;
    right: -5%;
    animation-delay: 4.5s;
}

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

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -200px;
    right: -200px;
    animation: rotate 20s linear infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -150px;
    animation: rotate 15s linear infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

/* Section Styles */
section {
    padding: var(--space-2xl) 0;
}

.section-header {
    text-align: center;
    /* margin-bottom: var(--space-2xl); */
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

/* Our Expertise Section - Interactive Slider */
.expertise {
    padding: 0;
    margin: 0;
    background: var(--background);
    min-height: auto;
    display: block;
    overflow: hidden;
}

.expertise .section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.expertise-slider {
    position: relative;
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding-top: 370px;
}

/* Hide radio buttons */
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

/* Style for thumbnail labels */
.expertise-checkbox:checked + label,
.expertise-checkbox:not(:checked) + label {
    position: relative;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
    margin-right: 10px;
    margin-left: 10px;
    display: inline-block;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
    transition: all 0.2s ease;
    border-radius: 50%;
}

/* Individual thumbnail images */
.expertise-checkbox.frst + label {
    background-image: url('./assets/ADS/google ads.webp');
}
.expertise-checkbox.scnd + label {
    background-image: url('./assets/ADS/1fb.webp');
}

/* Active thumbnail styling */
.expertise-checkbox:checked + label {
    transform: scale(1.3);
}


/* Main slides container */
.expertise-slides {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    z-index: 100;
    padding: 0;
    margin: 0;
    list-style: none;
}

.expertise-slides li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    z-index: 100;
    padding: 0;
    margin: 0;
    list-style: none;
    height: 350px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Individual slide backgrounds */
.expertise-slides li:nth-child(1) {
    background-image: url('./assets/ADS/google ads.webp');
}
.expertise-slides li:nth-child(2) {
    background-image: url('./assets/ADS/1fb.webp');
}

/* Show active slide */
.expertise-checkbox.frst:checked ~ .expertise-slides li:nth-child(1) {
    opacity: 1;
    pointer-events: auto;
    border-radius: 16px;
}
.expertise-checkbox.scnd:checked ~ .expertise-slides li:nth-child(2) {
    opacity: 1;
    pointer-events: auto;
    border-radius: 16px;
}

/* Responsive design */
@media (max-width: 767px) {
    .expertise {
        min-height: auto;
        padding: 0;
        margin: 0;
    }
    .expertise .section-title {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .expertise-slider {
        padding-top: 270px;
    }
    .expertise-slides li {
        height: 250px;
    }
    .expertise-checkbox:checked + label,
    .expertise-checkbox:not(:checked) + label {
        width: 35px;
        height: 35px;
        margin-right: 8px;
        margin-left: 8px;
    }
}

@media (max-width: 575px) {
    .expertise {
        min-height: auto;
        padding: 0;
        margin: 0;
    }
    .expertise .section-title {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: var(--font-size-3xl);
    }
    .expertise-slider {
        padding-top: 200px;
    }
    .expertise-slides li {
        height: 180px;
    }
    .expertise-checkbox:checked + label,
    .expertise-checkbox:not(:checked) + label {
        width: 25px;
        height: 25px;
        margin-right: 6px;
        margin-left: 6px;
    }
}

/* Google Ads Showcase Section */
.google-ads-showcase {
    padding: var(--space-2xl) 0;
    background: var(--background-secondary);
}

.google-ads-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.google-ads-text h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.google-ads-text .section-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.google-ads-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.ads-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--background);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
}

.ads-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.ads-feature-icon {
    font-size: var(--font-size-xl);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ads-feature-text h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.ads-feature-text p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: 0;
}

.google-ads-image {
    position: relative;
}

.google-ads-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-slow);
}

.google-ads-image:hover img {
    transform: scale(1.02);
}

/* App Development Section */
.app-development {
    padding: var(--space-2xl) 0;
    background: var(--background);
}

.app-development-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    margin-top: var(--space-2xl);
}

.app-development-text h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.app-development-text > p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--background-secondary);
    transition: all var(--transition-normal);
}

.app-feature:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.app-feature-icon {
    font-size: var(--font-size-xl);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-feature-text h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.app-feature-text p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: 0;
}

.app-development-images {
    position: relative;
}

.app-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.app-image-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
    background: var(--background-secondary);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.app-image-item img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform var(--transition-slow);
    background: var(--background-secondary);
}

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

.app-image-item:nth-child(1) {
    transform: translateY(-20px);
}

.app-image-item:nth-child(2) {
    transform: translateY(20px);
}

.app-image-item:nth-child(1):hover {
    transform: translateY(-25px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.app-image-item:nth-child(2):hover {
    transform: translateY(15px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* Image Showcase Section */
.image-showcase {
    padding: var(--space-2xl) 0;
    background: var(--background-secondary);
}

.image-showcase-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* height: 500px; */
    overflow: hidden;
    /* background-color: #c2185b; */
}

.showcase-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.showcase-image img {
    width: 400px;
    /* height: 500px; */
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(216, 0, 0, 0.2);
    background: var(--background);
    align-items: ;
    

    
}

/* @keyframes slide-left-to-right {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(calc(50vw - 200px));
    }
    100% {
        transform: translateX(100vw);
    }
} */

/* Services Section - 3D Slider */
.services {
    background: var(--background-secondary);
    padding: var(--space-2xl) 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.services-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--background);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    box-shadow: 0 3px 10px var(--shadow-light);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: auto;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--shadow-medium);
    border-color: var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

/* Enhanced Branding Card Styling */
.service-card[data-service="branding"] {
    background: linear-gradient(135deg, #fefcc9 0%, #fff 50%, #feec85 100%) !important;
    border: 3px solid var(--primary-color) !important;
    border-radius: 16px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(236, 118, 12, 0.2) !important;
}

.service-card[data-service="branding"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px !important;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color)) !important;
    opacity: 1 !important;
}

.service-card[data-service="branding"]:hover {
    background: linear-gradient(135deg, #fff 0%, #feec85 50%, #fefcc9 100%);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(236, 118, 12, 0.15);
}

.service-card[data-service="branding"]::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 118, 12, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.service-card[data-service="branding"]:hover::after {
    opacity: 1;
}

.service-card[data-service="branding"] .service-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%) !important;
    box-shadow: 0 8px 20px rgba(236, 118, 12, 0.4) !important;
    border-radius: 15px !important;
    width: 60px !important;
    height: 60px !important;
    border: 2px solid white !important;
}

.service-card[data-service="branding"]:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(236, 118, 12, 0.4);
}

.service-card[data-service="branding"] h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 700 !important;
    font-size: 1.4em !important;
    text-shadow: 0 2px 4px rgba(236, 118, 12, 0.2) !important;
}


.service-card[data-service="branding"] .service-features li {
    position: relative;
    padding-left: 24px;
    transition: transform 0.2s ease;
}

.service-card[data-service="branding"] .service-features li:before {
    content: '🔥';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 14px;
}

.service-card[data-service="branding"]:hover .service-features li {
    transform: translateX(3px);
}

.service-card[data-service="branding"] .service-features li:hover {
    color: var(--primary-color);
    transform: translateX(6px);
}

/* Fire Animation for All Headings */
.fire-effect {
    font-family: 'Amethysta', serif;
    text-transform: uppercase;
    letter-spacing: .2em;
    position: relative;
}

.hero-title.fire-effect {
    font-family: 'Amethysta', serif;
}

.fire-effect .fire-text {
    color: #000;
    font-family: 'Caesar Dressing', cursive;
    font-size: 1.2em;
    text-transform: lowercase;
    vertical-align: middle;
    letter-spacing: .1em;
}

.hero-title.fire-effect .fire-text {
    font-size: 1em;
}

.fire {
    animation: fire-animation 1s ease-in-out infinite alternate;
    -moz-animation: fire-animation 1s ease-in-out infinite alternate;
    -webkit-animation: fire-animation 1s ease-in-out infinite alternate;
    -o-animation: fire-animation 1s ease-in-out infinite alternate;
}

.burn {
    animation: fire-animation .65s ease-in-out infinite alternate;
    -moz-animation: fire-animation .65s ease-in-out infinite alternate;
    -webkit-animation: fire-animation .65s ease-in-out infinite alternate;
    -o-animation: fire-animation .65s ease-in-out infinite alternate;
}

@keyframes fire-animation {
    0% {
        text-shadow: 0 0 20px #fefcc9,
        10px -10px 30px #feec85,
        -20px -20px 40px #ffae34,
        20px -40px 50px #ec760c,
        -20px -60px 60px #cd4606,
        0 -80px 70px #973716,
        10px -90px 80px #451b0e;
    }
    100% {
        text-shadow: 0 0 20px #fefcc9,
        10px -10px 30px #fefcc9,
        -20px -20px 40px #feec85,
        22px -42px 60px #ffae34,
        -22px -58px 50px #ec760c,
        0 -82px 80px #cd4606,
        10px -90px 80px #973716;
    }
}

@-moz-keyframes fire-animation {
    0% {
        text-shadow: 0 0 20px #fefcc9,
        10px -10px 30px #feec85,
        -20px -20px 40px #ffae34,
        20px -40px 50px #ec760c,
        -20px -60px 60px #cd4606,
        0 -80px 70px #973716,
        10px -90px 80px #451b0e;
    }
    100% {
        text-shadow: 0 0 20px #fefcc9,
        10px -10px 30px #fefcc9,
        -20px -20px 40px #feec85,
        22px -42px 60px #ffae34,
        -22px -58px 50px #ec760c,
        0 -82px 80px #cd4606,
        10px -90px 80px #973716;
    }
}

@-webkit-keyframes fire-animation {
    0% {
        text-shadow: 0 0 20px #fefcc9,
        10px -10px 30px #feec85,
        -20px -20px 40px #ffae34,
        20px -40px 50px #ec760c,
        -20px -60px 60px #cd4606,
        0 -80px 70px #973716,
        10px -90px 80px #451b0e;
    }
    100% {
        text-shadow: 0 0 20px #fefcc9,
        10px -10px 30px #fefcc9,
        -20px -20px 40px #feec85,
        22px -42px 60px #ffae34,
        -22px -58px 50px #ec760c,
        0 -82px 80px #cd4606,
        10px -90px 80px #973716;
    }
}

@-o-keyframes fire-animation {
    0% {
        text-shadow: 0 0 20px #fefcc9,
        10px -10px 30px #feec85,
        -20px -20px 40px #ffae34,
        20px -40px 50px #ec760c,
        -20px -60px 60px #cd4606,
        0 -80px 70px #973716,
        10px -90px 80px #451b0e;
    }
    100% {
        text-shadow: 0 0 20px #fefcc9,
        10px -10px 30px #fefcc9,
        -20px -20px 40px #feec85,
        22px -42px 60px #ffae34,
        -22px -58px 50px #ec760c,
        0 -82px 80px #cd4606,
        10px -90px 80px #973716;
    }
}


.service-icon svg {
    color: white;
    width: 18px;
    height: 18px;
}

.service-content h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
    line-height: 1.2;
}

.service-content p {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-sm);
    padding: 0;
}

.service-features li {
    font-size: 10px;
    color: var(--text-secondary);
    margin-bottom: 2px;
    padding-left: 0;
}



/* Mobile Services Slider */
.services-mobile-slider {
    display: none;
}

.mobile-service-content {
    text-align: center;
    padding: var(--space-lg);
    background: var(--background);
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.mobile-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.mobile-service-icon svg {
    color: white;
    width: 24px;
    height: 24px;
}

.mobile-service-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.mobile-service-content p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}


.service-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.service-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--border-color);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.dot.active {
    background: var(--primary-color);
}

.services-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--background-secondary), var(--background));
    border-radius: var(--radius-lg);
}

.services-cta h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.services-cta p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* 3D Slider Variables */
.services {
    --slide-width: min(30vw, 350px);
    --slide-aspect: 4 / 3;
    --slide-transition-duration: 800ms;
    --slide-transition-easing: ease;
}

.slider {
    width: calc(3 * var(--slide-width));
    height: 500px;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.slider--btn {
    --size: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 999;
    background: none;
    border: none;
    cursor: pointer;
}

.slider--btn:focus {
    outline: none;
    border: none;
}

.slider--btn svg {
    width: var(--size);
    height: var(--size);
    stroke: var(--text-primary);
}

.slider--btn:hover {
    opacity: 1;
}

.slides__wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.slides__wrapper > * {
    grid-area: 1 / -1;
}

.slides {
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: grid;
    place-items: center;
}

.slides > * {
    grid-area: 1 / -1;
}

/* Individual Slide Styles */
.slide {
    --slide-tx: 0px;
    --slide-ty: 0vh;
    --padding: 0px;
    --offset: 0;
    width: var(--slide-width);
    height: auto;
    aspect-ratio: var(--slide-aspect);
    user-select: none;
    perspective: 800px;
    transform: perspective(1000px)
        translate3d(var(--slide-tx), var(--slide-ty), var(--slide-tz, 0))
        rotateY(var(--slide-rotY)) scale(var(--slide-scale));
    transition: transform var(--slide-transition-duration)
        var(--slide-transition-easing);
}

.slide[data-current] {
    --slide-scale: 1.2;
    --slide-tz: 0px;
    --slide-tx: 0px;
    --slide-rotY: 0;
    pointer-events: auto;
}

.slide[data-next] {
    --slide-tx: calc(1 * var(--slide-width) * 1.07);
    --slide-rotY: -45deg;
}

.slide[data-previous] {
    --slide-tx: calc(-1 * var(--slide-width) * 1.07);
    --slide-rotY: 45deg;
}

.slide:not([data-current]) {
    --slide-scale: 1;
    --slide-tz: 0;
    pointer-events: none;
}

.slide[data-current] .slide--image {
    filter: brightness(1.0);
}

.slide:not([data-current]) .slide--image {
    filter: brightness(0.9);
}

.slide__inner {
    --rotX: 0;
    --rotY: 0;
    --bgPosX: 0%;
    --bgPosY: 0%;
    position: relative;
    left: calc(var(--padding) / 2);
    top: calc(var(--padding) / 2);
    width: calc(100% - var(--padding));
    height: calc(100% - var(--padding));
    transform-style: preserve-3d;
    transform: rotateX(var(--rotX)) rotateY(var(--rotY));
}

.slide--image__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    border-radius: var(--radius-lg);
    padding: 15px;
    box-sizing: border-box;
    background: transparent;
}

.slide--image {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    object-fit: contain;
    transform: scale(1.0) translate3d(var(--bgPosX), var(--bgPosY), 0);
    transition: filter var(--slide-transition-duration)
        var(--slide-transition-easing);
    border-radius: var(--radius-md);
}

.slide__bg {
    position: fixed;
    inset: -20%;
    background-image: var(--bg);
    background-size: cover;
    background-position: center center;
    z-index: -1;
    pointer-events: none;
    transition: opacity var(--slide-transition-duration) ease,
        transform var(--slide-transition-duration) ease;
}

.slide__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
}

.slide__bg:not([data-current]) {
    opacity: 0;
}

.slide__bg[data-previous] {
    transform: translateX(-10%);
}

.slide__bg[data-next] {
    transform: translateX(10%);
}

/* Services Loader */
.services-loader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.services-loader__text {
    font-family: var(--font-family-display);
    font-size: clamp(2rem, 2vw, 5rem);
    font-weight: 800;
    color: #fff;
}

/* Our Work Section */
.our-work {
    padding: var(--space-2xl) 0;
    background: var(--background);
}

.work-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-md);
}

.websites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.website-card {
    background: var(--background);
    border-radius: var(--radius-md);
    box-shadow: 0 3px 10px var(--shadow-light);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.website-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.website-preview {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.website-preview {
    width: 100%;
    height: 100%;
    background: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.browser-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6f6f6;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid #e0e0e0;
}

.browser-buttons {
    display: flex;
    gap: var(--space-xs);
}

.browser-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close {
    background: #ff5f57;
}

.btn-minimize {
    background: #ffbd2e;
}

.btn-maximize {
    background: #28ca42;
}

.url-bar {
    background: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    border: 1px solid #e0e0e0;
    flex: 1;
    margin: 0 var(--space-md);
}

.browser-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6f6f6;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid #e0e0e0;
    height: 40px;
}

.url-bar {
    background: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    border: 1px solid #e0e0e0;
    flex: 1;
    margin: 0 var(--space-md);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.website-content {
    width: 100%;
    height: calc(100% - 40px);
    position: relative;
    overflow: hidden;
}

.website-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(0.8);
    transform-origin: top left;
    width: 125%;
    height: 125%;
}

.website-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.website-card:hover .website-overlay {
    opacity: 1;
}

.view-website-btn {
    background: var(--primary-color);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.view-website-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
}

.website-info {
    padding: var(--space-md);
    text-align: center;
}

.website-info h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
    line-height: 1.2;
}

.website-info p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.visit-link {
    display: inline-block;
    padding: 6px var(--space-md);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: var(--font-size-xs);
    transition: all var(--transition-normal);
}

.visit-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

/* Graphics Design Showcase */
/* Graphics Design Showcase - Expandable Cards */
.graphics-showcase {
    padding: var(--space-2xl) 0;
    background: var(--background-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.graphics-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.graphics-options {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    min-width: 600px;
    max-width: 900px;
    width: calc(100% - 100px);
    height: 400px;
    margin: 0 auto;
}

.graphics-option {
    position: relative;
    overflow: hidden;
    min-width: 60px;
    margin: 10px;
    background: var(--optionBackground, var(--background));
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    border-radius: 30px;
}

.graphics-option.active {
    flex-grow: 10000;
    transform: scale(1);
    max-width: 600px;
    margin: 0px;
    border-radius: 40px;
    background-size: cover;
}

.graphics-option.active .graphics-shadow {
    box-shadow: inset 0 -120px 120px -120px rgba(0, 0, 0, 0.1), 
                inset 0 -120px 120px -100px rgba(0, 0, 0, 0.1);
}

.graphics-option:not(.active) {
    flex-grow: 1;
    border-radius: 30px;
}

.graphics-option:not(.active) .graphics-shadow {
    bottom: -40px;
    box-shadow: inset 0 -120px 0px -120px rgba(0, 0, 0, 0.1), 
                inset 0 -120px 0px -100px rgba(0, 0, 0, 0.1);
}

.graphics-shadow {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 120px;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

/* Responsive Design for Graphics Options */
@media screen and (max-width: 1024px) {
    .graphics-showcase {
        min-height: 60vh;
        padding: var(--space-xl) 0;
    }
    
    .graphics-options {
        min-width: 500px;
        max-width: 700px;
        height: 350px;
    }
}

/* Portfolio Responsive Breakpoints */
@media screen and (max-width: 1200px) and (min-width: 901px) {
    .websites-grid {
        max-width: 1000px;
        gap: var(--space-md);
    }
    
    .website-preview {
        height: 180px;
    }
    
    .website-info {
        padding: var(--space-sm);
    }
    
    .website-info h3 {
        font-size: var(--font-size-sm);
    }
    
    .website-info p {
        font-size: var(--font-size-xs);
    }
    
    .visit-link {
        padding: 4px var(--space-sm);
        font-size: 10px;
    }
    
    .view-website-btn {
        padding: 6px var(--space-md);
        font-size: var(--font-size-xs);
    }
}

@media screen and (max-width: 900px) and (min-width: 769px) {
    .websites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        max-width: 700px;
    }
    
    .website-preview {
        height: 200px;
    }
}

/* Large Tablet - Keep 3 columns but more compact */
@media screen and (max-width: 1200px) and (min-width: 901px) {
    .services-grid {
        max-width: 1000px;
        gap: var(--space-sm);
    }
    
    .service-card {
        padding: var(--space-sm);
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
    }
    
    .service-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .service-content h3 {
        font-size: var(--font-size-sm);
    }
    
    .service-content p {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .service-features li {
        font-size: 9px;
    }
}

/* Tablet Responsive Styles - Switch to 2 columns */
@media screen and (max-width: 900px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        max-width: 700px;
    }
    
    .service-card {
        padding: var(--space-md);
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .service-content h3 {
        font-size: var(--font-size-base);
    }
    
    .service-content p {
        font-size: var(--font-size-xs);
    }
}


@media screen and (max-width: 768px) {
    .graphics-showcase {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    .graphics-options {
        flex-direction: column;
        min-width: auto;
        max-width: 90%;
        width: 90%;
        height: auto;
        gap: var(--space-md);
    }
    
    .graphics-option {
        min-width: auto;
        width: 100%;
        height: 200px;
        margin: 0;
        border-radius: var(--radius-lg);
        position: relative;
        overflow: hidden;
    }
    
    .graphics-option.active {
        flex-grow: 1;
        transform: none;
        max-width: none;
        height: 250px;
        border-radius: var(--radius-lg);
    }
    
    .graphics-option:not(.active) {
        flex-grow: 1;
        height: 180px;
        opacity: 0.8;
    }
    
    .graphics-option::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 40%, rgba(0,0,0,0.3));
        pointer-events: none;
    }
    
    .graphics-option.active::after {
        background: linear-gradient(45deg, transparent 60%, rgba(0,0,0,0.2));
    }
}

@media screen and (max-width: 480px) {
    .graphics-options {
        width: 95%;
        gap: var(--space-sm);
    }
    
    .graphics-option {
        height: 150px;
    }
    
    .graphics-option.active {
        height: 180px;
    }
    
    .graphics-option:not(.active) {
        height: 120px;
    }
}

/* Rotating Services Showcase */
.rotating-showcase {
    padding: var(--space-2xl) 0;
    background: var(--background);
    overflow: hidden;
}

.showcase-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-md);
}

.rotate-slider {
    margin: 5em auto;
    height: 360px;
    width: 480px;
    max-width: 90vw;
}

.rotate-slider ul.slides {
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    top: 0;
    left: 50%;
    transform-origin: center center;
    width: 100%;
}

.rotate-slider ul.slides.animate {
    transition: all 0.75s ease-in-out;
}

.rotate-slider ul.slides li {
    background-position: center;
    background-size: cover;
    display: block;
    color: white;
    list-style: none;
    position: absolute;
    top: 0;
    left: 50%;
    text-align: center;
    transform-origin: bottom center;
    width: 100%;
}

.rotate-slider ul.slides li:nth-of-type(1) {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.rotate-slider ul.slides li:nth-of-type(2) {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.rotate-slider ul.slides li:nth-of-type(3) {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.rotate-slider ul.slides li:nth-of-type(4) {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.rotate-slider ul.slides li:nth-of-type(5) {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.rotate-slider ul.slides li:nth-of-type(6) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.rotate-slider ul.slides li .inner {
    box-sizing: border-box;
    padding: 2em;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rotate-slider ul.slides li .inner h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rotate-slider ul.slides li .inner p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 300px;
}

.portfolio-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.portfolio-content p {
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.portfolio-tags {
    display: flex;
    gap: var(--space-xs);
    justify-content: center;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

/* About Section */
.about {
    background: var(--background-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: var(--space-lg);
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.feature-icon {
    font-size: var(--font-size-2xl);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-showcase-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 30px var(--shadow-medium);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-showcase-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-heavy);
}

/* Social Media Section */
.social-media {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.social-media .section-title,
.social-media .section-description {
    color: white;
}

.social-links {
    margin-bottom: var(--space-2xl);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.2);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-icon {
    font-size: var(--font-size-xl);
}

.instagram-preview {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.instagram-post {
    width: 400px;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-normal);
}

.instagram-post:hover {
    transform: scale(1.05) rotateY(5deg);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    background: var(--background-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-form {
    background: var(--background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    transition: all var(--transition-normal);
    background: var(--background);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.contact-info {
    display: grid;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--background);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
}

.contact-icon {
    font-size: var(--font-size-2xl);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
    display: none;
}

.btn.loading .btn-loader {
    display: block;
}

.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-brand img {
    width: auto;
    max-width: 220px;
    height: 80px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: var(--font-size-lg);
}

.footer-social .social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: white;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.75rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-md);
    }
    
    .google-ads-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .app-development-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .showcase-image img {
        width: 300px;
        /* height: 400px; */
    }
    
    .image-showcase-content {
        /* height: 400px; */
    }
    
    /* Services Section for Tablets */
    .services {
        --slide-width: min(35vw, 280px);
        min-height: 60vh;
        padding: var(--space-xl) 0;
    }
    
    .slider {
        height: 450px;
    }
    
    .slider--btn {
        --size: 35px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Enhanced Mobile Navigation */
    .header {
        padding: 0;
        backdrop-filter: blur(15px);
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    }
    
    .nav {
        padding: var(--space-sm) var(--space-md);
    }
    
    .nav-logo img {
        height: 45px;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--background) 0%, var(--background-secondary) 100%);
        padding: var(--space-xl) var(--space-lg);
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: var(--z-fixed);
        border-top: 3px solid var(--primary-color);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--space-xl);
        margin-right: 0;
        text-align: center;
    }
    
    .nav-link {
        font-size: var(--font-size-lg);
        font-weight: 600;
        padding: var(--space-sm) 0;
        display: block;
        border-radius: var(--radius-md);
        transition: all var(--transition-normal);
    }
    
    .nav-link:hover, .nav-link.active {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        transform: scale(1.05);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: var(--space-xs);
        border-radius: var(--radius-sm);
        transition: all var(--transition-normal);
    }
    
    .nav-toggle:hover {
        background: var(--background-secondary);
    }
    
    .nav-toggle-icon {
        width: 28px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all var(--transition-normal);
    }
    
    .nav .btn {
        display: none;
    }
    
    /* Enhanced Mobile Hero Section */
    .hero {
        padding: 100px 0 var(--space-2xl);
        align-items: center;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(255, 64, 129, 0.1) 0%, transparent 50%);
        pointer-events: none;
        z-index: 1;
    }
    
    .hero-container {
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        text-align: center;
        margin-bottom: var(--space-xl);
    }
    
    .animated-text {
        font-size: var(--font-size-4xl) !important;
        letter-spacing: 1px !important;
        text-align: center !important;
        margin-bottom: var(--space-sm) !important;
        line-height: 1.1 !important;
    }
    
    .sub-highlight {
        font-size: var(--font-size-lg) !important;
        text-align: center !important;
    }
    
    .hero-description {
        text-align: center;
        font-size: var(--font-size-lg);
        line-height: 1.6;
        color: var(--text-secondary);
        margin-bottom: var(--space-2xl);
        padding: 0 var(--space-sm);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: center;
        margin-bottom: var(--space-2xl);
    }
    
    .hero-buttons .btn {
        width: 80%;
        max-width: 300px;
        justify-content: center;
        font-weight: 700;
        font-size: var(--font-size-lg);
        padding: var(--space-lg) var(--space-xl);
        box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
        transform: translateY(0);
        transition: all var(--transition-normal);
    }
    
    .hero-buttons .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
    }
    
    .hero-buttons .btn-secondary {
        background: white;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: var(--space-xl);
        border-radius: var(--radius-xl);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: var(--space-xl) var(--space-sm) 0;
    }
    
    .stat {
        padding: var(--space-md);
        border-radius: var(--radius-lg);
        background: linear-gradient(135deg, var(--background) 0%, var(--background-secondary) 100%);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform var(--transition-normal);
    }
    
    .stat:hover {
        transform: translateY(-2px);
    }
    
    .stat-number {
        font-size: var(--font-size-3xl);
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .stat-label {
        font-size: var(--font-size-base);
        font-weight: 600;
        margin-top: var(--space-xs);
    }
    
    .hero-image {
        min-height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: var(--space-xl);
    }
    
    .hero-main-image {
        width: 90%;
        height: auto;
        max-height: 350px;
        object-fit: contain;
        border-radius: var(--radius-xl);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }
    
    .floating-card {
        width: 70px;
        height: 70px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.9);
    }
    
    .card-text {
        font-size: var(--font-size-xs) !important;
        padding: var(--space-xs) !important;
        font-weight: 800 !important;
        line-height: 1 !important;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .expertise-image {
        height: 200px;
    }
    
    .google-ads-text h2 {
        font-size: var(--font-size-2xl);
    }
    
    .google-ads-features {
        gap: var(--space-md);
    }
    
    .app-development-text h3 {
        font-size: var(--font-size-xl);
    }
    
    .app-features {
        gap: var(--space-md);
    }
    
    .app-image-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .app-image-item {
        min-height: 250px;
    }
    
    .app-image-item:nth-child(1),
    .app-image-item:nth-child(2) {
        transform: none;
    }
    
    .app-image-item:nth-child(1):hover,
    .app-image-item:nth-child(2):hover {
        transform: translateY(-5px);
    }
    
    .app-image-item img {
        max-height: 300px;
    }
    
    .showcase-image img {
        width: 250px;
        /* height: 350px; */
    }
    
    .image-showcase-content {
        /* height: 350px; */
    }
    
    .services-images-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .websites-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        margin-top: var(--space-lg);
    }
    
    .website-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .website-preview {
        height: 220px;
    }
    
    /* Hide overlay button on mobile */
    .website-overlay {
        display: none;
    }
    
    .browser-bar {
        height: 35px;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .url-bar {
        font-size: var(--font-size-xs);
        padding: 4px var(--space-xs);
    }
    
    .website-content iframe {
        transform: scale(0.7);
        transform-origin: top left;
        width: 143%;
        height: 143%;
    }
    
    .graphics-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-lg);
    }
    
    .graphics-image {
        height: 200px;
    }
    
    .rotate-slider {
        height: 250px;
        width: 320px;
        max-width: 90vw;
    }
    
    .rotate-slider ul.slides li .inner {
        padding: 1.5em;
    }
    
    .rotate-slider ul.slides li .inner h2 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-sm);
    }
    
    .rotate-slider ul.slides li .inner p {
        font-size: var(--font-size-sm);
        max-width: 250px;
    }
    
    /* Mobile Services Grid - Keep 2 columns on larger mobile screens */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
        max-width: none;
        padding: 0 var(--space-sm);
    }
    
    .service-card {
        padding: var(--space-sm);
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        margin-bottom: var(--space-sm);
    }
    
    .service-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .service-content h3 {
        font-size: var(--font-size-sm);
        margin-bottom: 6px;
    }
    
    .service-content p {
        font-size: var(--font-size-xs);
        line-height: 1.3;
        margin-bottom: var(--space-sm);
    }
    
    .service-features li {
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    
    .services-mobile-slider {
        display: none;
    }
    
    .service-slides {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-lg);
        padding: 0 var(--space-md);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .service-slides::-webkit-scrollbar {
        display: none;
    }
    
    .service-slide {
        min-width: 240px;
        flex: 0 0 240px;
        scroll-snap-align: center;
    }
    
    .service-slide.active {
        transform: scale(1.05);
    }

    /* Alternative Mobile Services Layout */
    .services {
        --slide-width: 90vw;
        min-height: auto;
        padding: var(--space-xl) 0;
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .services-title {
        order: 1;
        margin-bottom: var(--space-lg);
    }
    
    .slider {
        order: 2;
        width: 90vw;
        max-width: 400px;
        height: 350px;
        flex-direction: column;
    }
    
    .slider--btn {
        --size: 40px;
        position: relative;
        margin: var(--space-sm) 0;
    }
    
    .slider--btn__prev {
        order: 3;
    }
    
    .slides__wrapper {
        order: 2;
        width: 100%;
        height: 300px;
    }
    
    .slider--btn__next {
        order: 1;
    }
    
    .slide {
        --slide-tx: 0px;
        --slide-scale: 1;
        width: 100%;
        max-width: 350px;
    }
    
    .slide[data-current] {
        --slide-scale: 1;
        --slide-tz: 0px;
        --slide-rotY: 0;
    }
    
    .slide[data-next],
    .slide[data-previous] {
        display: none;
    }
    
    .service-image {
        height: 200px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        max-width: none;
    }
    
    .portfolio-item {
        aspect-ratio: 4/3;
    }
    
    .instagram-post {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
    
    /* Enhanced Mobile Sections */
    .section-title {
        font-size: var(--font-size-3xl) !important;
        text-align: center;
        margin-bottom: var(--space-xl);
        padding: 0 var(--space-sm);
        line-height: 1.2;
    }
    
    .section-description {
        font-size: var(--font-size-lg) !important;
        text-align: center;
        line-height: 1.6;
        padding: 0 var(--space-md);
        margin-bottom: var(--space-xl);
    }
    
    /* Mobile Google Ads Section */
    .google-ads-text h2 {
        font-size: var(--font-size-2xl);
        text-align: center;
        margin-bottom: var(--space-lg);
    }
    
    .google-ads-features {
        gap: var(--space-lg);
    }
    
    .ads-feature {
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
        background: white;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        margin-bottom: var(--space-md);
    }
    
    .ads-feature-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-2xl);
        margin-bottom: var(--space-sm);
    }
    
    .ads-feature-text h4 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-sm);
        color: var(--primary-color);
    }
    
    /* Mobile App Development Section */
    .app-development-text h3 {
        font-size: var(--font-size-2xl);
        text-align: center;
        margin-bottom: var(--space-lg);
    }
    
    .app-development-text > p {
        font-size: var(--font-size-lg);
        text-align: center;
        line-height: 1.7;
        padding: 0 var(--space-sm);
        margin-bottom: var(--space-xl);
    }
    
    .app-features {
        gap: var(--space-lg);
    }
    
    .app-feature {
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
        background: white;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        margin-bottom: var(--space-md);
    }
    
    .app-feature-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-2xl);
        margin-bottom: var(--space-sm);
    }
    
    .app-feature-text h4 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-sm);
        color: var(--primary-color);
    }
    
    /* Mobile Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        padding: 0 var(--space-sm);
    }
    
    .contact-form {
        padding: var(--space-xl);
        background: white;
        border-radius: var(--radius-xl);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        margin-bottom: var(--space-xl);
    }
    
    .form-group {
        margin-bottom: var(--space-xl);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: var(--font-size-lg);
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
        border: 2px solid var(--border-color);
        transition: all var(--transition-normal);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
        transform: translateY(-2px);
    }
    
    .contact-info {
        gap: var(--space-lg);
    }
    
    .contact-item {
        padding: var(--space-xl);
        background: white;
        border-radius: var(--radius-xl);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform var(--transition-normal);
    }
    
    .contact-item:hover {
        transform: translateY(-3px);
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: var(--font-size-2xl);
        margin: 0 auto var(--space-md);
        border-radius: var(--radius-full);
    }
    
    .contact-details h3 {
        font-size: var(--font-size-xl);
        color: var(--primary-color);
        margin-bottom: var(--space-sm);
    }
    
    .contact-details p {
        font-size: var(--font-size-lg);
        font-weight: 600;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-5xl: 1.75rem;
        --font-size-4xl: 1.5rem;
        --font-size-3xl: 1.25rem;
        --font-size-2xl: 1.125rem;
        --font-size-xl: 1rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    /* Ultra Mobile Hero Optimization */
    .hero {
        min-height: 90vh;
        padding: 80px 0 var(--space-2xl);
    }
    
    .hero-title {
        margin-bottom: var(--space-lg);
    }
    
    .animated-text {
        font-size: var(--font-size-3xl) !important;
        letter-spacing: 0.5px !important;
        line-height: 1.1 !important;
    }
    
    .sub-highlight {
        font-size: var(--font-size-base) !important;
    }
    
    .hero-description {
        font-size: var(--font-size-base) !important;
        padding: 0 var(--space-xs);
    }
    
    .hero-buttons .btn {
        width: 90%;
        font-size: var(--font-size-base);
        padding: var(--space-lg);
        min-height: 48px; /* Touch target size */
    }
    
    .hero-stats {
        gap: var(--space-md);
        padding: var(--space-lg);
        margin: var(--space-lg) var(--space-xs) 0;
    }
    
    .stat {
        padding: var(--space-lg);
        min-height: 100px; /* Consistent height */
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .stat-label {
        font-size: var(--font-size-sm);
    }
    
    .hero-image {
        min-height: 280px;
    }
    
    .hero-main-image {
        width: 95%;
        max-height: 250px;
    }
    
    .floating-cards {
        display: none;
    }
    
    /* Enhanced Touch Interactions */
    .btn-large {
        padding: var(--space-lg);
        font-size: var(--font-size-base);
        min-height: 48px;
        border-radius: var(--radius-lg);
    }
    
    /* All interactive elements minimum 44px touch target */
    .nav-link,
    .btn,
    .contact-item,
    .graphics-option {
        min-height: 44px;
        min-width: 44px;
    }
    
    .rotate-slider {
        height: 220px;
        width: 280px;
    }
    
    .rotate-slider ul.slides li .inner {
        padding: 1em;
    }
    
    .rotate-slider ul.slides li .inner h2 {
        font-size: var(--font-size-base);
    }
    
    .rotate-slider ul.slides li .inner p {
        font-size: var(--font-size-xs);
        max-width: 200px;
    }
    
    /* Ultra Mobile Services Layout */
    .services {
        --slide-width: 95vw;
        padding: var(--space-lg) 0;
    }
    
    .slider {
        width: 95vw;
        max-width: 320px;
        height: 300px;
    }
    
    .slides__wrapper {
        height: 250px;
    }
    
    .slider--btn {
        --size: 35px;
    }
    
    .slide {
        max-width: 300px;
    }
    
    .slide--image__wrapper {
        padding: 10px;
    }
    
    .website-preview {
        height: 220px;
    }
    
    .website-content iframe {
        transform: scale(0.6);
        width: 167%;
        height: 167%;
    }
    
    .contact-form {
        padding: var(--space-md);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--space-xs);
        font-size: var(--font-size-sm);
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    /* Mobile-Specific Section Enhancements */
    .section-title {
        font-size: var(--font-size-2xl) !important;
        padding: 0 var(--space-xs);
    }
    
    .section-description {
        font-size: var(--font-size-base) !important;
        padding: 0 var(--space-sm);
    }
    
    /* Enhanced Mobile Contact Form */
    .contact-form {
        padding: var(--space-lg);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: var(--font-size-base);
        padding: var(--space-md);
        min-height: 48px; /* Touch accessibility */
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-xl);
    }
    
    /* Mobile Portfolio Cards */
    .website-preview {
        height: 200px;
    }
    
    .website-content iframe {
        transform: scale(0.5);
        width: 200%;
        height: 200%;
    }
    
    /* Mobile Graphics Options */
    .graphics-option {
        height: 120px;
        margin-bottom: var(--space-xs);
    }
    
    .graphics-option.active {
        height: 150px;
    }
    
    .graphics-option:not(.active) {
        height: 100px;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce animations for better performance */
    .floating-card {
        animation-duration: 4s;
    }
    
    .hero::before {
        opacity: 0.7; /* Reduce complex gradients */
    }
    
    /* Optimize images for mobile */
    .hero-main-image,
    .showcase-image img,
    .website-content iframe {
        will-change: transform;
        backface-visibility: hidden;
    }
    
    /* Improve scroll performance */
    .hero,
    .services,
    .graphics-showcase {
        transform: translateZ(0); /* Force GPU acceleration */
    }
}

/* Mobile-First Loading States */
@media (max-width: 768px) {
    .loader-logo {
        width: 80px;
    }
    
    .loader-spinner {
        width: 30px;
        height: 30px;
    }
}

/* Landscape orientation on mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 var(--space-lg);
        min-height: 60vh;
    }
    
    .hero-image {
        min-height: 250px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }
    
    .rotate-slider {
        height: 200px;
        width: 300px;
    }
    
    .services {
        min-height: 50vh;
    }
    
    .slider {
        height: 300px;
    }
}

/* Mobile-Specific Footer Enhancement */
@media (max-width: 768px) {
    .footer {
        padding: var(--space-xl) 0;
    }
    
    .footer-content {
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
        gap: var(--space-lg);
    }
    
    .footer-brand img {
        max-width: 180px;
        height: 60px;
    }
    
    .footer-social {
        justify-content: center;
        gap: var(--space-lg);
    }
    
    .footer-social .social-icon {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-xl);
        transition: all var(--transition-normal);
    }
    
    .footer-social .social-icon:hover {
        transform: translateY(-3px) scale(1.1);
    }
    
    .footer-column {
        margin-bottom: var(--space-xl);
    }
    
    .footer-column h3 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-lg);
        color: var(--primary-color);
    }
    
    .footer-column ul {
        gap: var(--space-md);
    }
    
    .footer-column a {
        font-size: var(--font-size-lg);
        padding: var(--space-xs) 0;
        transition: all var(--transition-normal);
    }
    
    .footer-column a:hover {
        color: var(--primary-color);
        transform: translateX(5px);
    }
    
    .footer-bottom {
        padding-top: var(--space-xl);
        gap: var(--space-md);
    }
    
    .footer-bottom p {
        font-size: var(--font-size-base);
        font-weight: 500;
    }
}

/* Mobile Swipe Indicators */
@media (max-width: 768px) and (pointer: coarse) {
    .graphics-options::after {
        content: '← Swipe to explore →';
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: var(--font-size-sm);
        color: var(--text-secondary);
        opacity: 0.7;
        animation: fadeInOut 3s ease-in-out infinite;
    }
    
    .services::after {
        content: '← Swipe for more services →';
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: var(--font-size-sm);
        color: var(--text-secondary);
        opacity: 0.7;
        animation: fadeInOut 3s ease-in-out infinite 1.5s;
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 0.8; }
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin-top: var(--space-lg);
        max-width: none;
        padding: 0 var(--space-sm);
    }
    
    .service-card {
        padding: var(--space-md);
        margin: 0 var(--space-sm);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .service-content h3 {
        font-size: var(--font-size-base);
    }
    
    .service-content p {
        font-size: var(--font-size-xs);
    }
    
    .service-features li {
        font-size: var(--font-size-xs);
    }
    
    .mobile-service-content {
        padding: var(--space-md);
    }
    
    .mobile-service-icon {
        width: 50px;
        height: 50px;
    }
    
    .mobile-service-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .service-slide {
        min-width: 220px;
        flex: 0 0 220px;
    }
    
    .services-cta {
        padding: var(--space-lg) var(--space-md);
    }
    
    .services-cta h3 {
        font-size: var(--font-size-lg);
    }
    
    .services-cta p {
        font-size: var(--font-size-sm);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-main-image,
    .showcase-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Critical CSS for above-the-fold content */
.critical {
    font-display: swap;
}

/* Lazy loading optimization */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity var(--transition-normal);
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .btn,
    .loader,
    .floating-cards,
    .hero-bg-shapes {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-lg) 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: rgba(0, 0, 0, 0.3);
        --shadow-medium: rgba(0, 0, 0, 0.5);
        --shadow-heavy: rgba(0, 0, 0, 0.7);
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}