/* Index Page Specific Styles - Ewory Medya Inspired Light Theme */

/* Color Palette */
:root {
    --primary-color: #2c2c2c;
    --secondary-color: #4a4a4a;
    --accent-color: #6b6b6b;
    --light-gray: #f8f8f8;
    --medium-gray: #e8e8e8;
    --dark-gray: #2c2c2c;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --black: #000000;
    --gradient-primary: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    --gradient-accent: linear-gradient(135deg, #6b6b6b 0%, #8a8a8a 100%);
}

/* Creative Navigation Styles */
.creative-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
    transition: all 0.3s ease;
    height: 80px;
}

/* Ensure no underlines on navbar links */
.creative-navbar a {
    text-decoration: none !important;
}

.creative-navbar a:hover {
    text-decoration: none !important;
}

.creative-navbar a:focus {
    text-decoration: none !important;
    outline: none;
}

.creative-navbar a:visited {
    text-decoration: none !important;
}

.creative-navbar a:active {
    text-decoration: none !important;
}

.creative-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(44, 44, 44, 0.1);
    height: 70px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo Section */
.nav-logo-section {
    flex: 0 0 auto;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.logo-container:hover .logo-bg {
    opacity: 1;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    letter-spacing: 2px;
    text-decoration: none !important;
}

.nav-logo a {
    color: inherit;
    text-decoration: none !important;
}

.nav-logo a:hover {
    text-decoration: none !important;
}

.nav-logo a:focus {
    text-decoration: none !important;
    outline: none;
}

.nav-logo a:visited {
    text-decoration: none !important;
}

.nav-logo a:active {
    text-decoration: none !important;
}

/* Specific styling for the logo link */
.logo-container a {
    text-decoration: none !important;
    color: inherit;
}

.logo-container a:hover {
    text-decoration: none !important;
}

.logo-container a:focus {
    text-decoration: none !important;
    outline: none;
}

.logo-container a:visited {
    text-decoration: none !important;
}

.logo-container a:active {
    text-decoration: none !important;
}

.logo-container:hover .nav-logo {
    color: var(--white);
}

.logo-accent {
    position: absolute;
    top: 50%;
    right: -10px;
    width: 6px;
    height: 6px;
    background: var(--gradient-accent);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.logo-container:hover .logo-accent {
    opacity: 1;
    transform: translateY(-50%) scale(1.5);
}

/* Center Navigation */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

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

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    border-radius: 50px;
}

.nav-link:hover::before {
    left: 0;
}

.nav-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.nav-link:hover .nav-text {
    color: var(--white);
}

.nav-indicator {
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover .nav-indicator {
    width: 80%;
}

.nav-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--medium-gray), transparent);
    transform: translateY(-50%);
    z-index: -1;
}

/* Right Section */
.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.3);
}

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

.cta-button:hover .cta-icon {
    transform: rotate(45deg);
}

/* Modern Mobile Toggle */
.nav-toggle {
    display: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    position: relative;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.nav-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-toggle:hover::before {
    left: 100%;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: auto;
    cursor: pointer;
}

.line {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.hamburger.active .line-1 {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary-color);
}

.hamburger.active .line-2 {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active .line-3 {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary-color);
}

.nav-toggle.active {
    background: rgba(74, 144, 226, 0.1);
    border-color: rgba(74, 144, 226, 0.3);
    transform: scale(1.1);
}

/* Floating Elements */
.nav-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 50%;
    animation: floatDot 6s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.dot-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatDot {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 0.8;
    }
}

/* Simple Mobile Menu */
.simple-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

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

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f8f8;
}

.mobile-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c2c2c;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mobile-close-btn:hover {
    background: #e0e0e0;
    color: #2c2c2c;
}

.mobile-nav-links {
    padding: 20px 0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    background: #f8f8f8;
    color: #000;
}

.mobile-nav-link.active {
    background: #2c2c2c;
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Mobile and Tablet Responsive */
@media (max-width: 768px) {
    .creative-navbar {
        height: 70px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-center {
        display: none !important;
    }
    
    .nav-cta {
        display: none !important;
    }
    
    .nav-toggle {
        display: block !important;
    }
    
    /* Mobile Menu Overlay - Force mobile styles */
    .mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 9999 !important;
        transition: left 0.4s ease !important;
        pointer-events: none;
        overflow: hidden;
    }
    
    .mobile-menu-overlay.active {
        left: 0 !important;
        pointer-events: auto !important;
    }
    
    .mobile-menu-content {
        position: relative !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        padding: 120px 35px 40px;
        color: #2c2c2c !important;
    }
    
    .mobile-link {
        font-size: 2rem;
        padding: 16px 0;
        color: #2c2c2c !important;
        display: block !important;
    }
    
    .mobile-close {
        position: absolute !important;
        top: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        background: #f0f0f0 !important;
        color: #2c2c2c !important;
        border: 2px solid #ddd !important;
    }
    
    .mobile-menu-logo {
        position: absolute !important;
        top: 30px;
        left: 35px;
        color: #2c2c2c !important;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
    
    .logo-container {
        padding: 8px 15px;
    }
    
    /* Force mobile menu to override desktop styles */
    .mobile-menu-overlay .mobile-menu-content {
        padding: 120px 35px 40px !important;
        position: relative !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        color: #2c2c2c !important;
        z-index: 10000 !important;
        background: transparent !important;
    }
    
    .mobile-menu-overlay .mobile-link {
        font-size: 2rem !important;
        padding: 16px 0 !important;
        color: #2c2c2c !important;
        display: block !important;
        position: relative !important;
        text-decoration: none !important;
        font-weight: 700 !important;
        transition: all 0.4s ease !important;
        overflow: hidden !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        border-radius: 12px !important;
        margin-bottom: 8px !important;
        transform: translateX(-50px) !important;
        opacity: 0 !important;
    }
    
    .mobile-menu-overlay.active .mobile-link {
        transform: translateX(0) !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-overlay .mobile-close {
        position: absolute !important;
        top: 25px !important;
        right: 25px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
        background: #f0f0f0 !important;
        color: #2c2c2c !important;
        border: 2px solid #ddd !important;
        cursor: pointer !important;
        padding: 12px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
        pointer-events: auto !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .mobile-menu-overlay .mobile-menu-logo {
        position: absolute !important;
        top: 30px !important;
        left: 35px !important;
        color: #2c2c2c !important;
        font-size: 1.5rem !important;
        font-weight: 900 !important;
        letter-spacing: 1px !important;
    }
    
    /* Ensure mobile menu links are properly styled */
    .mobile-menu-overlay .mobile-menu-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        margin-bottom: 60px !important;
        width: 100% !important;
    }
    
    .mobile-menu-overlay .mobile-menu-cta {
        margin-top: 40px !important;
        transform: translateX(-50px) !important;
        opacity: 0 !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        transition-delay: 0.3s !important;
    }
    
    .mobile-menu-overlay.active .mobile-menu-cta {
        transform: translateX(0) !important;
        opacity: 1 !important;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-center {
        display: none !important;
    }
    
    .nav-cta {
        display: none !important;
    }
    
    .nav-toggle {
        display: block !important;
    }
    
    .mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 9999 !important;
        transition: left 0.4s ease !important;
        pointer-events: none;
        overflow: hidden;
    }
    
    .mobile-menu-overlay.active {
        left: 0 !important;
        pointer-events: auto !important;
    }
    
    .mobile-menu-content {
        position: relative !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        padding: 100px 25px 40px;
        color: #2c2c2c !important;
    }
    
    .mobile-link {
        font-size: 1.8rem;
        padding: 14px 0;
        color: #2c2c2c !important;
        display: block !important;
    }
    
    .mobile-close {
        position: absolute !important;
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
        background: #f0f0f0 !important;
        color: #2c2c2c !important;
        border: 2px solid #ddd !important;
    }
    
    .mobile-menu-logo {
        position: absolute !important;
        top: 25px;
        left: 25px;
        font-size: 1.3rem;
        color: #2c2c2c !important;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .logo-container {
        padding: 6px 12px;
    }
    
    .mobile-menu-content {
        width: 95%;
    }
    
    .mobile-link {
        font-size: 1.3rem;
    }
    
    .mobile-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(44, 44, 44, 0.1), rgba(44, 44, 44, 0.05));
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: -125px;
    background: linear-gradient(45deg, rgba(44, 44, 44, 0.08), rgba(44, 44, 44, 0.03));
    animation: float 12s ease-in-out infinite;
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 25%;
    left: -90px;
    background: linear-gradient(45deg, rgba(44, 44, 44, 0.06), rgba(44, 44, 44, 0.02));
    animation: float 9s ease-in-out infinite reverse;
}

.shape-6 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: -100px;
    background: linear-gradient(45deg, rgba(44, 44, 44, 0.07), rgba(44, 44, 44, 0.03));
    animation: float 13s ease-in-out infinite;
}

.shape-7 {
    width: 160px;
    height: 160px;
    bottom: 30%;
    right: -80px;
    background: linear-gradient(45deg, rgba(44, 44, 44, 0.05), rgba(44, 44, 44, 0.02));
    animation: float 10s ease-in-out infinite reverse;
}

.shape-8 {
    width: 220px;
    height: 220px;
    top: 20%;
    right: -110px;
    background: linear-gradient(45deg, rgba(44, 44, 44, 0.06), rgba(44, 44, 44, 0.03));
    animation: float 14s ease-in-out infinite;
}

.shape-9 {
    width: 140px;
    height: 140px;
    bottom: 30%;
    left: -70px;
    background: linear-gradient(45deg, rgba(44, 44, 44, 0.08), rgba(44, 44, 44, 0.04));
    animation: float 9s ease-in-out infinite reverse;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    animation: heroContentFadeIn 0.6s ease-out;
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.title-line {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    animation: none !important;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.title-line.highlight {
    background: linear-gradient(45deg, var(--text-dark), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 1;
    transform: translateY(0);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 1;
    transform: translateY(0);
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    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 0.5s ease;
}

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

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 200px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn-large:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: translateX(0);
    animation: heroImageFadeIn 0.6s ease-out 0.2s both;
}

@keyframes heroImageFadeIn {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--text-dark);
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(44, 44, 44, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-stories {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    z-index: 2;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.story-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(44, 44, 44, 0.1);
    transition: transform 0.3s ease;
}

.story-item:hover .story-icon {
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--text-dark);
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.1);
    position: relative;
    overflow: hidden;
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.portfolio-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.portfolio-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--medium-gray);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 44, 44, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.filter-btn.active,
.filter-btn:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
    border: 1px solid var(--medium-gray);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.15);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.portfolio-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(44, 44, 44, 0.1), transparent);
    animation: shine 3s infinite;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.8) 0%, rgba(44, 44, 44, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    padding: 20px;
}

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

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

.project-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

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

.overlay-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.overlay-content p {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.portfolio-link {
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--white);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-link:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: scale(1.05);
}

.portfolio-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 44, 44, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 30px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-content {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.contact-form {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--medium-gray);
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.1);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--light-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo p {
    color: var(--light-gray);
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

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

.footer-link {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--secondary-color);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.legal-link {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--white);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Responsive - Enhanced */
@media (max-width: 768px) {
    /* Mobile Navbar Enhancements */
    .creative-navbar {
        height: 65px;
        padding: 0;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 100%;
    }
    
    .nav-logo {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .logo-container {
        padding: 8px 16px;
    }
    
    .hamburger {
        width: 28px;
        height: 18px;
    }
    
    .line {
        height: 2px;
    }
    
    /* Mobile Menu Overlay Enhancements */
    .mobile-menu-overlay {
        background: rgba(44, 44, 44, 0.98);
        backdrop-filter: blur(25px);
    }
    
    .mobile-menu-content {
        width: 95%;
        max-width: 350px;
    }
    
    .mobile-menu-header h3 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .mobile-link {
        font-size: 1.3rem;
        padding: 15px 0;
    }
    
    .mobile-cta-button {
        padding: 18px 35px;
        font-size: 1rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        margin-top: 65px;
        padding: 40px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 25px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 16px 32px;
        font-size: 16px;
        min-width: 180px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
        min-width: 180px;
    }
    
    .image-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .image-placeholder {
        font-size: 60px;
    }
    
    .hero-stories {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 50px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
        padding: 0 20px;
    }
    
    .story-item {
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    .story-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .story-item p {
        font-size: 13px;
        margin-top: 8px;
    }
    
    /* About Section Mobile */
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 15px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .about-image .image-container {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
    
    .about-placeholder {
        font-size: 50px;
    }
    
    /* Portfolio Section Mobile */
    .portfolio {
        padding: 80px 0;
    }
    
    .portfolio-filter {
        gap: 15px;
        margin-bottom: 50px;
        padding: 0 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 80px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .portfolio-item {
        border-radius: 12px;
    }
    
    .portfolio-image {
        height: 250px;
    }
    
    .portfolio-placeholder {
        font-size: 40px;
    }
    
    .overlay-content h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .portfolio-link {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    /* Services Section Mobile */
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 35px 25px;
        border-radius: 15px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 80px 0;
    }
    
    .contact-form {
        padding: 40px 25px;
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .footer-logo p {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-link {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .legal-link {
        font-size: 0.85rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 60px;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Hide decorative shapes on mobile */
    .shape {
        display: none;
    }
    
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Navbar for small mobile */
    .creative-navbar {
        height: 60px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .logo-container {
        padding: 6px 12px;
    }
    
    .hamburger {
        width: 25px;
        height: 16px;
    }
    
    .line {
        height: 2px;
    }
    
    /* Mobile menu for small screens */
    .mobile-menu-content {
        width: 98%;
        max-width: 320px;
    }
    
    .mobile-menu-header h3 {
        font-size: 1.6rem;
    }
    
    .mobile-link {
        font-size: 1.2rem;
        padding: 12px 0;
    }
    
    .mobile-cta-button {
        padding: 16px 30px;
        font-size: 0.95rem;
    }
    
    /* Hero section for small mobile */
    .hero {
        margin-top: 60px;
        padding: 30px 0;
    }
    
    .hero-container {
        gap: 40px;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.4;
        padding: 0 5px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 15px;
        min-width: 160px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
        min-width: 160px;
    }
    
    .image-container {
        width: 240px;
        height: 240px;
    }
    
    .image-placeholder {
        font-size: 50px;
    }
    
    .hero-stories {
        margin-top: 40px;
        gap: 20px;
        padding: 0 15px;
    }
    
    .story-item {
        min-width: 100px;
    }
    
    .story-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .story-item p {
        font-size: 12px;
        margin-top: 6px;
    }
    
    /* About section for small mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 40px;
        padding: 0 10px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .about-image .image-container {
        max-width: 300px;
        height: 220px;
    }
    
    .about-placeholder {
        font-size: 45px;
    }
    
    /* Portfolio section for small mobile */
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio-filter {
        gap: 12px;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 70px;
    }
    
    .portfolio-grid {
        gap: 20px;
        padding: 0 10px;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .portfolio-placeholder {
        font-size: 35px;
    }
    
    .overlay-content h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .overlay-content p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .portfolio-link {
        padding: 6px 14px;
        font-size: 13px;
    }
    
    /* Services section for small mobile */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        gap: 25px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    
    /* Contact section for small mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 6px;
    }
    
    /* Footer for small mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 35px;
        padding: 0 10px;
    }
    
    .footer-logo h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .footer-logo p {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .footer-section {
        gap: 12px;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        gap: 15px;
        padding: 0 10px;
    }
    
    .footer-legal {
        gap: 12px;
    }
    
    .legal-link {
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Section headers for small mobile */
    .section-header {
        margin-bottom: 50px;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Container adjustments for small mobile */
    .container {
        padding: 0 10px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 140px;
    }
    
    .image-container {
        width: 200px;
        height: 200px;
    }
    
    .image-placeholder {
        font-size: 40px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Better touch targets */
    .btn, .filter-btn, .portfolio-link, .mobile-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improved form inputs for mobile */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
    }
    
    /* Better mobile menu animations */
    .mobile-menu-overlay {
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-menu-content {
        transition: transform 0.3s ease;
        transform: translate(-50%, -50%) scale(0.9);
    }
    
    .mobile-menu-overlay.active .mobile-menu-content {
        transform: translate(-50%, -50%) scale(1);
    }
    
    /* Mobile-specific button styles */
    .btn:active {
        transform: scale(0.95);
    }
    
    /* Improved mobile navigation */
    .nav-toggle:active {
        transform: scale(0.9);
    }
    
    /* Mobile portfolio grid improvements */
    .portfolio-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .portfolio-item {
        width: 100%;
        margin: 0;
    }
    
    /* Mobile service grid improvements */
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .service-card {
        width: 100%;
        margin: 0;
    }
    
    /* Mobile contact form improvements */
    .contact-form {
        width: calc(100% - 30px);
        margin: 0 auto;
    }
    
    /* Mobile footer improvements */
    .footer-content {
        text-align: center;
    }
    
    .footer-links {
        margin-top: 20px;
    }
    
    /* Mobile hero improvements */
    .hero {
        min-height: calc(100vh - 65px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Mobile story items improvements */
    .hero-stories {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }
    
    .story-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 100px;
    }
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: auto;
    opacity: 1 !important;
    transform: none !important;
}

[data-aos].aos-animate {
    pointer-events: auto;
    opacity: 1 !important;
    transform: none !important;
}

/* Disable AOS on mobile for better performance */
@media (max-width: 768px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Ensure portfolio CTA is always visible */
.portfolio-cta {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: block !important;
}

/* Scroll-triggered animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

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

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

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

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- Fix: Ensure navbar elements remain visible on mobile (index page) --- */
@media (max-width: 768px) {
    .logo-container,
    .nav-link,
    .cta-button {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Contact CTA Section Styles */
.contact-cta {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.1);
    border: 1px solid rgba(44, 44, 44, 0.05);
}

.cta-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.cta-buttons .btn {
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    min-width: 200px;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 44, 44, 0.2);
    text-decoration: none;
}

.cta-buttons .btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-buttons .btn-primary:hover {
    background: var(--gradient-accent);
    color: var(--white);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact CTA Responsive */
@media (max-width: 768px) {
    .contact-cta {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .cta-text h3 {
        font-size: 2rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 25px;
        font-size: 16px;
    }
}