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

:root {
    --nav-dark: #1e293b;
    --primary-blue: #4c51bf;
    --accent-red: #c53030;
    --accent-pink: #b83280;
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-color: #ffffff;
    --bg-light: #f7fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    .navbar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Responsive container padding */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

.hero-container {
    max-width: 1100px;
}

/* Navigation */
.navbar {
    background-color: var(--nav-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.875rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.brand-dev {
    color: #60a5fa;
    font-weight: 600;
}

.brand-domain {
    color: white;
    font-weight: 700;
}

.nav-brand a {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.625rem 1.125rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    white-space: nowrap;
    min-height: 44px;
    justify-content: center;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-icon {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.nav-text {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.nav-caret {
    font-size: 0.65rem;
    margin-left: 0.25rem;
    opacity: 0.6;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.nav-link:hover {
    color: white;
    transform: translateY(-1px);
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
}

.nav-link.active {
    background: linear-gradient(135deg, #4c51bf 0%, #5a67d8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(76, 81, 191, 0.4);
    font-weight: 600;
    transform: translateY(-1px);
}

.nav-link.active::before {
    opacity: 0;
}

.nav-link.active .nav-icon {
    transform: scale(1.1);
}

.nav-link.active .nav-caret {
    opacity: 1;
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.btn-book {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.btn-book::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;
}

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

.book-icon {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
    transition: transform 0.3s, background 0.3s;
}

.book-text {
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.btn-book:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-book:hover .book-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.35);
}

.btn-book:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background-color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e293b 0%, #4c1d95 50%, #6b21a8 100%);
    color: white;
    padding: 5rem 0 4rem;
    min-height: 75vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
}

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

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 100%;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    opacity: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--accent-red);
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both, titleGlow 3s ease-in-out infinite 1.5s;
    opacity: 0;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease-out 0.6s both;
    opacity: 0;
}

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

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3),
                     0 0 20px rgba(255, 0, 110, 0.1);
    }
    50% {
        text-shadow: 0 2px 20px rgba(255, 0, 110, 0.5),
                     0 0 30px rgba(255, 0, 110, 0.2),
                     0 0 40px rgba(255, 0, 110, 0.1);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
    opacity: 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    animation: buttonPulse 2s ease-in-out infinite 1.2s;
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.6),
                    0 0 30px rgba(37, 99, 235, 0.3);
    }
}

/* Hero Graphics - Glass Morphism */
.hero-graphics {
    position: relative;
    height: 500px;
    width: 100%;
    min-width: 400px;
    animation: fadeInRight 1.2s ease-out 0.3s forwards;
    opacity: 0;
    overflow: visible;
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.main-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    text-align: center;
    z-index: 2;
    animation: cardFloat 6s ease-in-out infinite, cardGlow 3s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translate(-50%, -50%) translateY(-15px) rotate(-1deg);
    }
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                    0 0 0 rgba(255, 0, 110, 0);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                    0 0 30px rgba(255, 0, 110, 0.3),
                    0 0 60px rgba(255, 0, 110, 0.1);
    }
}

.main-card:hover {
    transform: translate(-50%, -50%) translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(255, 0, 110, 0.4);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: iconBounce 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.card-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-graphics .code-snippet {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 1;
    animation-fill-mode: forwards;
}

.hero-graphics .code-snippet code {
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.hero-graphics .code-snippet:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(59, 130, 246, 0.3);
    z-index: 10;
}

.hero-graphics .snippet-1 {
    top: 12%;
    left: 2%;
    animation: float 6s ease-in-out infinite, fadeInSnippet 0.8s ease-out 1.6s forwards;
    will-change: opacity, transform;
    z-index: 3;
}

/* Ensure snippets stay visible after animation */
.hero-graphics .snippet-1,
.hero-graphics .snippet-2,
.hero-graphics .snippet-3 {
    animation-fill-mode: forwards;
}

@keyframes fadeInSnippet {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-graphics .snippet-2 {
    top: 8%;
    right: 5%;
    animation: float 7s ease-in-out infinite 0.5s, fadeInSnippet 1s ease-out 1.8s forwards;
    z-index: 3;
}

.hero-graphics .snippet-3 {
    top: 58%;
    right: 2%;
    animation: float 6.5s ease-in-out infinite 1s, fadeInSnippet 1s ease-out 2s forwards;
    z-index: 3;
}

.snippet-4 {
    bottom: 18%;
    left: 3%;
    animation: float 7.5s ease-in-out infinite 1.5s, fadeInSnippet 1s ease-out 1.6s both;
}

.snippet-5 {
    bottom: 15%;
    right: 8%;
    animation: float 6s ease-in-out infinite 2s, fadeInSnippet 1s ease-out 1.8s both;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% { 
        transform: translateY(-25px) rotate(0deg); 
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}


/* Why Section */
.why-section {
    padding: 6rem 0;
    background: white;
}

.section-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.icon-pink {
    background: linear-gradient(135deg, #f472b6 0%, #fbcfe8 100%);
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Our Story Section */
.our-story-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6b21a8 0%, #9333ea 50%, #a855f7 100%);
    position: relative;
    overflow: hidden;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.story-overlay {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.story-image-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.story-image-icon {
    font-size: 5rem;
    opacity: 0.8;
}

.story-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.story-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.story-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content {
    color: white;
}

.story-content .story-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 600;
    display: block;
}

.story-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--accent-red);
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.story-text {
    margin-bottom: 2.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.story-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.story-feature-item .checkmark {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Statistics Section */
.stats-section {
    padding: 5rem 0;
    background-color: #282c34;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #a0a0a0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Call to Action Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6b21a8 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.btn-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-header {
    height: 6px;
    width: 100%;
}

.gradient-teal-pink {
    background: linear-gradient(90deg, #a7f3d0 0%, #fbcfe8 100%);
}

.gradient-orange-pink {
    background: linear-gradient(90deg, #fed7aa 0%, #fbcfe8 100%);
}

.gradient-pink-red {
    background: linear-gradient(90deg, #fbcfe8 0%, #fca5a5 100%);
}

.gradient-purple {
    background: linear-gradient(90deg, #c4b5fd 0%, #ddd6fe 100%);
}

.gradient-blue {
    background: linear-gradient(90deg, #93c5fd 0%, #bfdbfe 100%);
}

.gradient-green {
    background: linear-gradient(90deg, #86efac 0%, #bbf7d0 100%);
}

.gradient-pink {
    background: linear-gradient(90deg, #f9a8d4 0%, #fbcfe8 100%);
}

/* Icon Background Colors */
.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.icon-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.icon-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.service-card-body {
    padding: 2.5rem;
    text-align: center;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-teal {
    background: linear-gradient(135deg, #5eead4 0%, #a7f3d0 100%);
}

.icon-orange {
    background: linear-gradient(135deg, #fb923c 0%, #fed7aa 100%);
}

.icon-pink-service {
    background: linear-gradient(135deg, #f472b6 0%, #fbcfe8 100%);
}

.icon-purple-service {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
}

.icon-blue-service {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
}

.icon-green {
    background: linear-gradient(135deg, #34d399 0%, #86efac 100%);
}

.service-icon {
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #2563eb 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.chat-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid white;
}

.chat-icon {
    font-size: 1.5rem;
}

.chat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.chat-text strong {
    font-size: 0.9rem;
}

.chat-text span {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e293b 0%, #4c1d95 50%, #6b21a8 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Hero Section */
.about-hero {
    background: linear-gradient(135deg, #4c1d95 0%, #6b21a8 50%, #9333ea 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-hero-content {
    color: white;
}

.about-hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--accent-red);
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.about-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.about-hero-icons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.hero-icon-item {
    width: 80px;
    height: 80px;
}

.hero-icon-item.featured {
    width: 120px;
    height: 120px;
}

.hero-icon-circle {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.hero-icon-item.featured .hero-icon-circle {
    border-width: 4px;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.hero-icon {
    font-size: 2rem;
}

.hero-icon-item.featured .hero-icon {
    font-size: 3rem;
}

/* Our Approach Section */
.approach-section {
    padding: 5rem 0;
    background: white;
}

.approach-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 2rem;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Why Choose Dev's Domain Section */
.why-choose-section {
    padding: 5rem 0;
    background: white;
}

.why-choose-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.why-choose-tagline {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.icon-orange {
    background: linear-gradient(135deg, #fb923c 0%, #fed7aa 100%);
}

.icon-blue-link {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.icon-gradient {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.why-choose-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Our Impact Section */
.impact-section {
    padding: 5rem 0;
    background: #282c34;
}

.impact-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.impact-tagline {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.impact-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ready to Transform Section */
.transform-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6b21a8 0%, #9333ea 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.transform-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.transform-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.transform-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.transform-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-transform-outline {
    background: transparent;
    color: white;
    border: 2px solid #3b82f6;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-transform-outline:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-transform-filled {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: 2px solid transparent;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-transform-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Alerts */
.alert {
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

.alert h3 {
    margin-bottom: 0.5rem;
}

/* Contact Options Section */
.contact-options-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-option-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-option-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
}

.call-icon {
    background: rgba(139, 92, 246, 0.1);
}

.email-icon {
    background: rgba(236, 72, 153, 0.1);
}

.contact-option-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-option-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-email {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.contact-form-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-progress {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--primary-blue);
    font-weight: 600;
}

.form-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.form-section-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-actions {
    margin-top: 2rem;
    text-align: right;
}

.btn-form-submit {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Visit Office Section */
.visit-office-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.office-card {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.office-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.office-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.office-info-item {
    display: flex;
    align-items: flex-start;
}

.office-info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.office-info-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.office-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.skills-section {
    margin-bottom: 4rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-tag {
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
}

.experience-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 0.5rem;
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experience-year {
    min-width: 150px;
    font-weight: bold;
    color: var(--primary-blue);
}

.experience-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.experience-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: normal;
}

.experience-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Portfolio Categories Section */
.portfolio-categories-section {
    padding: 6rem 0;
    background: white;
}

.portfolio-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.portfolio-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.category-card-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.category-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 2rem;
}

.category-card-body {
    padding: 2rem;
}

.category-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.category-card-body > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.category-projects {
    margin-bottom: 1.5rem;
}

.category-projects strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.category-projects ul {
    list-style: none;
    padding-left: 0;
}

.category-projects li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.category-projects li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.category-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.btn-category {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-category:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Featured Projects Section */
.featured-projects-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white 0%, #f8fafc 100%);
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.featured-project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.project-card-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon {
    font-size: 2.5rem;
    color: white;
}

.project-card-body {
    padding: 2rem;
}

.project-card-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.project-card-body > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.btn-project {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-project:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* GitHub Portfolio Section */
.github-portfolio-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #4c1d95 50%, #6b21a8 100%);
}

.github-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.github-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.github-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.github-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.github-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.github-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.github-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
}

/* Portfolio CTA Section */
.portfolio-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6b21a8 0%, #9333ea 50%, #3b82f6 100%);
}

.portfolio-cta-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
}

.portfolio-cta-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.portfolio-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-cta-filled {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: 2px solid transparent;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-cta-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

/* Services Hero Section */
.services-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6b21a8 0%, #3b82f6 50%, #60a5fa 100%);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
}

.services-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.star-icon {
    font-size: 1rem;
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.services-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.services-hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

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

.btn-hero-filled {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-hero-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.services-hero-graphics {
    position: relative;
    height: 500px;
}

.services-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: cardFloat 6s ease-in-out infinite;
}

.main-services-card {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(59, 130, 246, 0.2);
    animation: cardGlow 3s ease-in-out infinite;
}

.services-card-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    background: rgba(236, 72, 153, 0.2);
    animation-delay: 0.5s;
}

.services-card-2 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    background: rgba(107, 114, 128, 0.2);
    animation-delay: 1s;
}

.services-card-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    background: rgba(34, 197, 94, 0.2);
    animation-delay: 1.5s;
}

.services-card-icon {
    font-size: 3rem;
    color: white;
}

/* Digital Solutions Section */
.digital-solutions-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.expertise-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 auto 1rem;
    text-align: center;
    display: block;
    width: fit-content;
}

.solutions-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.solutions-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.solution-card-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.solution-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    font-size: 2rem;
}

.solution-card-body {
    padding: 2rem;
}

.solution-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.solution-card-body > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.solution-tag {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.btn-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: none;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-red {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: none;
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: none;
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: none;
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.btn-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: none;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: white;
}

.why-choose-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.why-choose-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Transform CTA Section */
.transform-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6b21a8 0%, #3b82f6 50%, #60a5fa 100%);
    position: relative;
    overflow: hidden;
}

.transform-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
}

.transform-cta-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.transform-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.transform-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.btn-transform-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: 2px solid transparent;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-transform-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

/* Footer */
.footer {
    background-color: var(--nav-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-footer-link {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-footer-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-footer-logout {
    background: rgba(229, 62, 62, 0.2);
    border-color: rgba(229, 62, 62, 0.3);
}

.btn-footer-logout:hover {
    background: rgba(229, 62, 62, 0.3);
}

.footer-login-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    margin-top: 0.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-seo-links {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-seo-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-seo-links a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-graphics {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar .container {
        gap: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: linear-gradient(180deg, var(--nav-dark) 0%, rgba(30, 41, 59, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: left;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        padding: 1.5rem 0;
        gap: 0.5rem;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        width: 100%;
        justify-content: flex-start;
        border-radius: 0;
        margin: 0 1rem;
        border-radius: 8px;
        min-height: 50px;
    }
    
    .nav-link.active {
        background: linear-gradient(135deg, #4c51bf 0%, #5a67d8 100%);
        border-left: 4px solid #60a5fa;
        box-shadow: 0 4px 12px rgba(76, 81, 191, 0.4);
    }
    
    .nav-link:not(.active):hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-toggle {
        display: flex;
        order: 3;
    }
    
    .btn-book {
        display: none;
    }
    
    .nav-brand {
        flex: 1;
        min-width: 0;
    }
    
    .nav-brand a {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .hero-graphics {
        height: 350px;
    }
    
    .main-card {
        width: 250px;
        padding: 2rem;
    }
    
    .hero-graphics .code-snippet {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .experience-item {
        flex-direction: column;
        gap: 1rem;
    }

    .experience-year {
        min-width: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .approach-title,
    .why-choose-title,
    .impact-title,
    .transform-title {
        font-size: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .github-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-outline,
    .btn-cta-filled {
        width: 100%;
        max-width: 300px;
    }
    
    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-hero-buttons {
        flex-direction: column;
    }
    
    .services-hero-graphics {
        height: 400px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .office-card {
        grid-template-columns: 1fr;
    }
    
    .office-map {
        height: 300px;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-features {
        grid-template-columns: 1fr;
    }
    
    .story-image-placeholder {
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .chat-widget {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1rem;
    }
    
    .chat-text {
        display: none;
    }
    
    .scroll-top {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-icons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transform-title {
        font-size: 2rem;
    }
    
    .transform-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-transform-outline,
    .btn-transform-filled {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-description {
        font-size: 0.95rem;
    }
    
    .services-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .github-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .portfolio-cta-buttons .btn {
        width: 100%;
    }
}

/* Consultation Modal */
.consultation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.consultation-modal.active {
    display: flex;
}

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

.consultation-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease-out;
    position: relative;
}

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

.consultation-modal-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    padding: 2.5rem 2rem 1.5rem;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.consultation-modal-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.consultation-subtitle {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.consultation-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    padding: 0;
}

.consultation-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.consultation-form {
    padding: 2rem;
}

.consultation-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.consultation-form-group {
    margin-bottom: 1.5rem;
}

.consultation-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultation-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
    color: #1a202c;
}

.consultation-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.consultation-input::placeholder {
    color: #a0aec0;
}

.consultation-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.consultation-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.consultation-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.btn-consultation-cancel {
    padding: 0.875rem 2rem;
    background: #e2e8f0;
    color: #4a5568;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-consultation-cancel:hover {
    background: #cbd5e0;
    color: #2d3748;
}

.btn-consultation-submit {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-consultation-submit:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-consultation-submit:active {
    transform: translateY(0);
}

.btn-consultation-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Service Detail Pages */
.service-detail-section {
    padding: 5rem 0;
    background: white;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin: 0;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.service-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.service-feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.service-approach-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.service-approach-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-process-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s;
}

.service-process-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.service-process-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 1rem 0 0.75rem 0;
}

.service-process-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.service-benefits-section {
    padding: 5rem 0;
    background: white;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.service-benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.service-tech-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.tech-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.tech-tag-large {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.tech-tag-large:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 81, 191, 0.3);
}

.service-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #4c1d95 50%, #6b21a8 100%);
    color: white;
}

.service-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.service-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-outline {
    padding: 0.875rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-cta-filled {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-cta-filled:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.services-hero-subdescription {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* Web Development Hero Section */
.webdev-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    padding: 2rem 0 1.5rem;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.webdev-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.webdev-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.webdev-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.webdev-hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: left;
}

.webdev-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ef4444;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.webdev-hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: left;
}

.webdev-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-webdev-outline {
    padding: 0.875rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-webdev-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-webdev-filled {
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-webdev-filled:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.webdev-hero-graphics {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webdev-browser-card {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s ease-in-out infinite;
}

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

.browser-window {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.browser-header {
    background: #2d3748;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
}

.browser-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.control-red {
    background: #ef4444;
}

.control-yellow {
    background: #fbbf24;
}

.control-green {
    background: #10b981;
}

.browser-content {
    padding: 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.browser-content-line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 4px;
    width: 100%;
}

.browser-content-line.short {
    width: 60%;
}

.browser-content-block {
    height: 60px;
    background: #3b82f6;
    border-radius: 8px;
    width: 100%;
    margin: 0.5rem 0;
}

.webdev-browser-label {
    text-align: center;
    margin-top: 1.5rem;
}

.browser-label-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.browser-label-tech {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.webdev-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 4s ease-in-out infinite;
}

.webdev-icon-search {
    left: -30px;
    top: 20%;
    animation-delay: 0s;
}

.webdev-icon-mobile {
    right: -30px;
    top: 10%;
    animation-delay: 1s;
}

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

.webdev-code-snippets {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

/* Webdev service page code snippets - scoped to avoid conflicts */
.webdev-hero-graphics .code-snippet,
.service-web-development .code-snippet {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    animation: fadeInCode 2s ease-in;
}

.code-snippet code {
    background: transparent;
    color: inherit;
    padding: 0;
    border: none;
}

.code-snippet-1 {
    top: 10%;
    left: 5%;
    max-width: 250px;
}

.code-snippet-2 {
    bottom: 15%;
    left: 8%;
    max-width: 200px;
}

.code-snippet-3 {
    top: 20%;
    right: 8%;
    max-width: 220px;
}

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

/* Responsive Web Development Hero */
@media (max-width: 1024px) {
    .webdev-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .webdev-hero-title {
        font-size: 2.5rem;
    }
    
    .webdev-hero-graphics {
        order: -1;
    }
}

@media (max-width: 768px) {
    .webdev-hero {
        padding: 3rem 0 2rem;
        min-height: auto;
    }
    
    .webdev-hero-title {
        font-size: 2rem;
    }
    
    .webdev-hero-description {
        font-size: 1rem;
    }
    
    .webdev-hero-buttons {
        flex-direction: column;
    }
    
    .btn-webdev-outline,
    .btn-webdev-filled {
        width: 100%;
        text-align: center;
    }
    
    .webdev-icon {
        display: none;
    }
    
    .code-snippet {
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .code-snippet-1,
    .code-snippet-2,
    .code-snippet-3 {
        max-width: 150px;
    }
}

/* Application Support & Maintenance Hero Section - Green */
.support-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: white;
    padding: 2rem 0 1.5rem;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.support-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.support-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.support-hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: left;
}

.support-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.support-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.support-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-support-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-support-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-support-filled {
    background: white;
    color: #10b981;
    border: 2px solid transparent;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-support-filled:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.support-hero-graphics {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-browser-card {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.support-browser-label {
    text-align: center;
    margin-top: 1.5rem;
}

.support-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 4s ease-in-out infinite;
}

.support-icon-search {
    left: -30px;
    top: 20%;
    animation-delay: 0s;
}

.support-icon-mobile {
    right: -30px;
    top: 10%;
    animation-delay: 1s;
}

/* Business Process Automation Hero Section - Purple */
.automation-hero {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    color: white;
    padding: 2rem 0 1.5rem;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.automation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.automation-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.automation-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.automation-hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: left;
}

.automation-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.automation-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.automation-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-automation-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-automation-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-automation-filled {
    background: white;
    color: #8b5cf6;
    border: 2px solid transparent;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-automation-filled:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.automation-hero-graphics {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.automation-browser-card {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.automation-browser-label {
    text-align: center;
    margin-top: 1.5rem;
}

.automation-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 4s ease-in-out infinite;
}

.automation-icon-search {
    left: -30px;
    top: 20%;
    animation-delay: 0s;
}

.automation-icon-mobile {
    right: -30px;
    top: 10%;
    animation-delay: 1s;
}

/* Responsive Support & Automation Hero Sections */
@media (max-width: 1024px) {
    .support-hero-content,
    .automation-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .support-hero-title,
    .automation-hero-title {
        font-size: 2.5rem;
    }
    
    .support-hero-graphics,
    .automation-hero-graphics {
        order: -1;
    }
}

@media (max-width: 768px) {
    .support-hero,
    .automation-hero {
        padding: 3rem 0 2rem;
        min-height: auto;
    }
    
    .support-hero-title,
    .automation-hero-title {
        font-size: 2rem;
    }
    
    .support-hero-description,
    .automation-hero-description {
        font-size: 1rem;
    }
    
    .support-hero-buttons,
    .automation-hero-buttons {
        flex-direction: column;
    }
    
    .btn-support-outline,
    .btn-support-filled,
    .btn-automation-outline,
    .btn-automation-filled {
        width: 100%;
        text-align: center;
    }
    
    .support-icon,
    .automation-icon {
        display: none;
    }
}

/* Responsive Service Detail Pages */
@media (max-width: 768px) {
    .service-detail-title {
        font-size: 2rem;
    }
    
    .service-features-grid,
    .service-process-grid,
    .service-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cta-title {
        font-size: 2rem;
    }
    
    .service-cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-outline,
    .btn-cta-filled {
        width: 100%;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .consultation-modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .consultation-modal-content {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
        margin-top: auto;
    }
    
    .consultation-modal-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .consultation-modal-header h2 {
        font-size: 1.5rem;
        padding-right: 3rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
    }
    
    .consultation-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .consultation-form-actions {
        flex-direction: column-reverse;
    }
    
    .btn-consultation-cancel,
    .btn-consultation-submit {
        width: 100%;
    }
}

/* Extra small devices (phones in portrait, < 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.65rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .nav-brand a {
        font-size: 0.9rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-image {
        height: 30px;
        max-width: 100px;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 3rem 0 2rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-graphics {
        height: 300px;
    }
    
    .services-hero {
        padding: 3rem 0;
    }
}

/* Tablet optimizations (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .navbar .container {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 0.15rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .btn-book {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .book-text {
        display: none;
    }
    
    .btn-book .book-icon {
        margin: 0;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-container {
        max-width: 1300px;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    /* Mobile/touch devices */
    .btn,
    .nav-link,
    a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
    }
    
    .btn {
        padding: 1rem 2rem;
    }
    
    /* Remove hover effects on touch devices */
    .btn:hover,
    .nav-link:hover {
        transform: none;
    }
    
    /* Better tap targets */
    .chat-widget,
    .scroll-top {
        min-width: 56px;
        min-height: 56px;
    }
}

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

/* Print styles */
@media print {
    .navbar,
    .chat-widget,
    .scroll-top,
    .btn-book,
    .nav-toggle {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Can be implemented later if dark mode is desired */
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Improve text readability on small screens */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    h3 {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    }
    
    p {
        font-size: clamp(0.95rem, 2.5vw, 1rem);
    }
}

/* Services hero responsive improvements */
@media (max-width: 768px) {
    .services-hero-container {
        padding: 2rem 0;
    }
    
    .services-hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-hero-graphics {
        height: 300px;
    }
    
    .services-glass-card {
        transform: scale(0.9);
    }
}

/* Portfolio responsive improvements */
@media (max-width: 768px) {
    .portfolio-categories-section,
    .featured-projects-section,
    .github-portfolio-section {
        padding: 3rem 0;
    }
}

/* Contact form responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        gap: 2rem;
    }
    
    .form-group-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section ul {
        align-items: center;
    }
}