/* Root Variables - Modern SaaS Color Palette */
:root {
    --primary-color: #3D52A0;
    --secondary-color: #7091E6;
    --accent-color: #8697C4;
    --neutral-color: #ADBBD4;
    --background-light: #EDE8F5;
    --background-white: #FFFFFF;
    --text-dark: #3D52A0;
    --text-light: #8697C4;
    --text-muted: #ADBBD4;
    --border-color: #ADBBD4;
    --gradient-primary: linear-gradient(135deg, #3D52A0 0%, #7091E6 100%);
    --gradient-secondary: linear-gradient(135deg, #7091E6 0%, #8697C4 100%);
    --gradient-background: linear-gradient(135deg, #EDE8F5 0%, #FFFFFF 100%);
    --gradient-hero: linear-gradient(135deg, #3D52A0 0%, #7091E6 50%, #8697C4 100%);
    --shadow: 0 4px 16px rgba(61, 82, 160, 0.08);
    --shadow-md: 0 8px 32px rgba(61, 82, 160, 0.12);
    --shadow-lg: 0 16px 48px rgba(61, 82, 160, 0.16);
    --shadow-xl: 0 24px 64px rgba(61, 82, 160, 0.2);
    --shadow-3d: 0 8px 32px rgba(61, 82, 160, 0.15), 0 2px 8px rgba(61, 82, 160, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--background-white);
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: var(--background-light) !important;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 2.5rem;
}

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

/* Social Media Fixed Icons */
.social-fixed {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-fixed a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20b55a;
    transform: scale(1.1);
    color: white;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
    background: rgba(61, 82, 160, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-dark {
    background: rgba(61, 82, 160, 0.95) !important;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.1) rotate(5deg);
}

.brand-text {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    width: 100%;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Hero Container */
.hero-container {
    position: relative;
    padding: 40px 0 80px;
    z-index: 2;
    width: 100%;
}

.hero-content {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-3d {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-3d);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(0deg);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-3d::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-3d:hover::before {
    left: 100%;
}

.btn-3d:hover {
    transform: perspective(1000px) rotateX(-10deg) translateY(-5px);
    box-shadow: 0 16px 40px rgba(61, 82, 160, 0.3);
    color: white;
    background: var(--secondary-color);
}

.btn-secondary-outline {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* 3D Showcase Styles */
.hero-3d-showcase {
    position: relative;
    height: 500px;
    perspective: 1000px;
    margin-top: 2rem;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    width: 160px;
    height: 120px;
    background: var(--background-white);
    border-radius: 16px;
    box-shadow: var(--shadow-3d);
    transition: all 0.3s ease;
    cursor: pointer;
    transform-style: preserve-3d;
}

.floating-card:hover {
    transform: translateY(-10px) rotateY(5deg) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(61, 82, 160, 0.25);
}

.card-1 {
    top: 60px;
    left: 30px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 40px;
    right: 40px;
    animation: float 6s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 120px;
    left: 60px;
    animation: float 6s ease-in-out infinite 2s;
}

.card-4 {
    bottom: 60px;
    right: 20px;
    animation: float 6s ease-in-out infinite 3s;
}

.card-content {
    padding: 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
    font-size: 1.2rem;
}

.card-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.card-content p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.3;
}

/* 3D Cube Platforms */
.cube-platforms {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cube {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateY(45deg);
    opacity: 0.3;
}

.cube::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    transform: rotateY(90deg) translateZ(30px);
}

.cube::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    transform: rotateX(-90deg) translateZ(30px);
}

.cube-1 {
    top: 80px;
    left: 80px;
    animation: rotate3d 20s linear infinite;
}

.cube-2 {
    top: 120px;
    right: 50px;
    animation: rotate3d 20s linear infinite reverse;
}

.cube-3 {
    bottom: 180px;
    left: 50px;
    animation: rotate3d 25s linear infinite;
}

.cube-4 {
    bottom: 110px;
    right: 90px;
    animation: rotate3d 25s linear infinite reverse;
}

/* Background Elements */
.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite 2s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    animation: float 8s ease-in-out infinite 4s;
}

/* Services Hero */
.services-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.services-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--background-white);
}

.about-content {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.design-showcase {
    position: relative;
    width: 300px;
    height: 300px;
}

.showcase-item {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.showcase-1 {
    top: 0;
    left: 0;
    animation: float 6s ease-in-out infinite;
}

.showcase-2 {
    top: 0;
    right: 0;
    animation: float 6s ease-in-out infinite 2s;
}

.showcase-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float 6s ease-in-out infinite 4s;
}

.showcase-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.showcase-item h4 {
    font-size: 0.9rem;
    text-align: center;
}

/* Service Preview Cards */
.service-preview-card {
    background: var(--background-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(61, 82, 160, 0.1);
}

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

.service-preview-card .service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-preview-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-preview-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Categories Filter */
.categories-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: transparent;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--text-dark);
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    transition: all 0.3s ease;
}

.service-item.hidden {
    display: none;
}

.service-card {
    background: var(--background-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 82, 160, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    z-index: 2;
}

.enhanced-card {
    position: relative;
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(61, 82, 160, 0.1);
}

.service-items {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.service-items i {
    color: var(--secondary-color);
}

.type-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.type-image {
    background: rgba(61, 82, 160, 0.1);
    color: var(--primary-color);
}

.type-formal {
    background: rgba(112, 145, 230, 0.1);
    color: var(--secondary-color);
}

.type-social {
    background: rgba(134, 151, 196, 0.1);
    color: var(--accent-color);
}

.service-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.service-actions .btn {
    flex: 1;
    min-width: 140px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: var(--background-white);
}

.portfolio-item {
    margin-bottom: 2rem;
}

.portfolio-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.portfolio-image svg {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 82, 160, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-link {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.portfolio-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.portfolio-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--background-light);
}

.contact-form-wrapper {
    background: var(--background-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(61, 82, 160, 0.1);
}

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

.contact-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-form .form-control {
    border: 1px solid rgba(61, 82, 160, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(112, 145, 230, 0.25);
}

.contact-info {
    padding: 2rem;
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-light);
    margin: 0;
}

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

.footer-about {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

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

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

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    margin-right: 1rem;
    width: 20px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate3d {
    0% { transform: rotateX(60deg) rotateY(45deg); }
    100% { transform: rotateX(60deg) rotateY(405deg); }
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-3d-showcase {
        height: 400px;
    }
    
    .floating-card {
        width: 140px;
        height: 100px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-3d-showcase {
        height: 300px;
    }
    
    .floating-card {
        width: 120px;
        height: 80px;
    }
    
    .card-content {
        padding: 0.75rem;
    }
    
    .card-content h4 {
        font-size: 0.8rem;
    }
    
    .card-content p {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .design-showcase {
        width: 250px;
        height: 250px;
    }
    
    .showcase-item {
        width: 100px;
        height: 100px;
    }
    
    .social-fixed {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        justify-content: center;
        text-align: center;
    }
    
    .hero-3d-showcase {
        display: none;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .categories-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 200px;
        text-align: center;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn {
        width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .services-hero-title {
        font-size: 1.75rem;
    }
    
    .enhanced-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .design-showcase {
        width: 200px;
        height: 200px;
    }
    
    .showcase-item {
        width: 80px;
        height: 80px;
    }
    
    .showcase-item i {
        font-size: 1.5rem;
    }
    
    .showcase-item h4 {
        font-size: 0.75rem;
    }
}

/* Bootstrap Overrides */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: var(--neutral-color);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.form-control {
    border: 1px solid rgba(61, 82, 160, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(112, 145, 230, 0.25);
}

.form-select {
    border: 1px solid rgba(61, 82, 160, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(112, 145, 230, 0.25);
}

.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    background: var(--background-light);
    border-bottom: 1px solid rgba(61, 82, 160, 0.1);
    border-radius: 16px 16px 0 0;
}

.modal-title {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-footer {
    border-top: 1px solid rgba(61, 82, 160, 0.1);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.bg-secondary {
    background: var(--gradient-secondary) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.border-secondary {
    border-color: var(--secondary-color) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Print Styles */
@media print {
    .social-fixed,
    .navbar,
    .footer,
    .hero-background-elements,
    .floating-elements,
    .cube-platforms {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .hero-title,
    .hero-subtitle {
        color: black !important;
    }
}
