/* Global Styles */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #7BB3F0;
    --accent-color: #8B9DC3;
    --text-dark: #2D3748;
    --text-light: #4A5568;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow: 0 8px 32px rgba(74, 144, 226, 0.15);
    --shadow-lg: 0 20px 60px rgba(74, 144, 226, 0.25);
    --retro-gradient: linear-gradient(135deg, #4A90E2, #7BB3F0, #8B9DC3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 28px;
}

.logo-text {
    background: linear-gradient(120deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-contact {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-contact:hover::after {
    width: 0;
}

.btn-contact:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-content h1 {
    background: linear-gradient(120deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-highlight {
    background: var(--retro-gradient);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 16px;
    border-radius: 25px;
    margin: 15px auto 20px auto;
    box-shadow: var(--shadow);
    width: fit-content;
    border: 2px solid var(--accent-color);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.hero-highlight:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.hero-highlight strong {
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.gradient-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 30% 30%, rgba(212, 165, 116, 0.15), transparent);
    border-radius: 50%;
    filter: blur(40px);
    top: -50px;
    right: -50px;
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 0;
    left: 30%;
    animation-delay: 2s;
}

.card-4 {
    top: 30%;
    left: 50%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF8F3 100%);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    hover-effect: lift;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    width: 70px;
    height: 70px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon.azure {
    color: #0078d4;
    background: rgba(0, 120, 212, 0.1);
}

.service-icon.devops {
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
}

.service-icon.web {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.service-icon.ai {
    color: #9C27B0;
    background: rgba(156, 39, 176, 0.1);
}

.service-icon.app {
    color: #2196F3;
    background: rgba(33, 150, 243, 0.1);
}

.service-icon.gcp {
    color: #EA4335;
    background: rgba(234, 67, 53, 0.1);
}

.service-icon.security {
    color: #00BFA5;
    background: rgba(0, 191, 165, 0.1);
}

.service-icon.data {
    color: #FF7043;
    background: rgba(255, 112, 67, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 15px 0;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Pricing Highlight Section */
.pricing-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    text-align: center;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.pricing-badge {
    background: var(--bg-white);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.pricing-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.pricing-badge h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-badge p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.pricing-benefits {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit i {
    font-size: 1.2rem;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: linear-gradient(180deg, #FAF8F3 0%, #FFFFFF 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(61, 61, 61, 0.2);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.portfolio-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 165, 116, 0.15);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat p {
    color: var(--text-light);
    margin: 0;
}

.about-visual {
    position: relative;
    height: 400px;
}

.about-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual-element {
    position: absolute;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(230, 212, 192, 0.1));
    border: 2px solid var(--border-color);
}

.elem-1 {
    width: 200px;
    height: 150px;
    top: 0;
    left: 0;
    animation: float-slow 4s ease-in-out infinite;
}

.elem-2 {
    width: 150px;
    height: 200px;
    bottom: 0;
    right: 0;
    animation: float-slow 5s ease-in-out infinite;
    animation-delay: 1s;
}

.elem-3 {
    width: 170px;
    height: 170px;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: float-slow 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) translateX(-50%); }
    50% { transform: translateY(-30px) translateX(-50%); }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, #FAF8F3 0%, #FFFFFF 100%);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 5rem;
    color: rgba(212, 165, 116, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.ai-avatar.av-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.ai-avatar.av-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.ai-avatar.av-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.ai-avatar.av-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.ai-avatar.av-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.ai-avatar.av-6 {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    color: white;
}

.testimonial-info h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: #FFB800;
    font-size: 1rem;
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F3 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.contact-form button {
    grid-column: 1 / -1;
    align-self: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 60px;
    display: flex;
    align-items: center;
}

.info-item h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-visual {
        height: 300px;
    }

    .gradient-circle {
        width: 300px;
        height: 300px;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 300px;
    }

    .elem-1, .elem-2, .elem-3 {
        animation: none !important;
        transform: none !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-benefits {
        flex-direction: column;
        gap: 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .pricing-badge h3 {
        font-size: 1.5rem;
    }

    .pricing-badge {
        padding: 20px 25px;
    }

    .floating-card {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
}
