:root {
    --primary-color: #FF6B35;
    --primary-light: #FF8A5B;
    --primary-dark: #E85A2F;
    --primary-hint: #FFFCF0;
    --secondary-color: #2C3E50;
    --accent-color: #FFB382;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-orange-light: #FFF5F0;
    --bg-orange-medium: #FFEDE2;
    --bg-orange-dark: #FFE4D1;
    --web-color: #FFE561;
    --seo-color: #3DCCAC;
    --host-color: #7DC6DD;
    --email-color: #FEC9D3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-orange-light) 0%, var(--bg-orange-medium) 50%, var(--bg-orange-dark) 100%);
}

/* Header Styles */
.navbar {
    background: var(--primary-color) !important;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.navbar-brand {
    font-weight: 800;
    font-size: 2rem;
    color: white !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 2.2rem;
    margin-right: 0.8rem;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 0.25rem;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 100px 0;
    background: linear-gradient(135deg, var(--bg-orange-light) 0%, var(--bg-orange-medium) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem 1rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 650px;
    line-height: 1.7;
}

.hero-image {
    text-align: center;
    padding: 0 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--primary-hint);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.services .container {
    padding: 0 3rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 3px solid transparent;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-web::before {
    background: var(--web-color);
}

.service-card-seo::before {
    background: var(--seo-color);
}

.service-card-host::before {
    background: var(--host-color);
}

.service-card-email::before {
    background: var(--email-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.service-card h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-orange-medium) 0%, var(--bg-orange-dark) 100%);
    position: relative;
}

.process .container {
    padding: 0 3rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
    margin: 0 15px 2rem 15px;
    height: 95%;
}

.process-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.process-step p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-arrow {
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--primary-color);
    z-index: 1;
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    40% {
        transform: translateY(-50%) translateX(10px);
    }
    60% {
        transform: translateY(-50%) translateX(5px);
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--primary-hint);
}

.contact .container {
    padding: 0 3rem;
}

.contact-form {
    background: linear-gradient(135deg, var(--bg-orange-light) 0%, white 100%);
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--accent-color);
}

.contact-info {
    padding: 2rem;
}

.contact-info h4 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-details i {
    color: var(--primary-color);
    width: 25px;
    margin-right: 1rem;
}

.contact-image {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-image img {
    max-width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.form-control {
    border: 2px solid #E9ECEF;
    border-radius: 15px;
    padding: 18px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #34495e 100%);
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .process-arrow {
        display: none;
    }
    
    .services .container,
    .process .container,
    .contact .container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-content,
    .hero-image {
        padding: 0 1rem 1rem;
    }
    
    .services,
    .process,
    .contact {
        padding: 80px 0;
    }
    
    .contact-form {
        padding: 3rem 2rem;
    }
    
    .services .container,
    .process .container,
    .contact .container {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar-brand {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Additional visual enhancements */
.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
}

.process-step {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}