/* Reset ve genel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Google Fonts import - Preload for performance */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reduce layout shift */
.service-card {
    min-height: 400px;
}

/* Optimize animations for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Critical CSS - Above the fold styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #111111;
    color: #f8f8f8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Stilleri */
.header {
    background: linear-gradient(to right, #0a1118, #152028);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.2));
}

.logo img:hover {
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
    transform: scale(1.05);
}

/* Logo Stilleri */
.logo a {
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Navigasyon Stilleri */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00ffff;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0a1118 0%, #152028 100%);
    color: white;
    padding-top: 140px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 255, 0.15) 0%, rgba(10, 17, 24, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
    letter-spacing: -0.5px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: center;
    min-height: 80vh;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 6rem;
}

.hero-text {
    padding-right: 2rem;
    padding-left: 3rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
    object-fit: cover;
    margin-left: 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 60, 114, 0.2), rgba(42, 82, 152, 0.2));
    border-radius: 20px;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    position: relative;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f8f8f8;
}

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

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #222222);
    border-radius: 15px;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #0a1118, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.service-card h3 {
    color: #f8f8f8;
    margin: 1rem;
    padding: 0 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: #cccccc;
    margin: 1rem;
    padding: 0 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: #bbbbbb;
}

.service-features i {
    color: #00ffff;
    margin-right: 0.5rem;
}



/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #ffffff, #f8f8f8);
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
    color: #dc143c;
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menü */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease-in-out;
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(8px);
}

/* Hamburger Animasyonu */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
}

/* Mobil Menü Stilleri */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 17, 24, 0.98);
        padding: 6rem 2rem 2rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease-in-out;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-menu a {
        color: #1e3c72;
        font-size: 1.2rem;
        font-weight: 600;
        position: relative;
        padding: 0.5rem 1rem;
        transition: all 0.3s ease;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(to right, #1e3c72, #2a5298);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover {
        color: #2a5298;
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

    /* Aktif menü öğesi için stil */
    .nav-menu a.active {
        color: #2a5298;
    }

    .nav-menu a.active::after {
        width: 100%;
    }

    /* Menü arka plan deseni */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, transparent 0%, rgba(42, 82, 152, 0.05) 100%);
        z-index: -1;
    }

    /* Menü üst kısmı için gradient overlay */
    .nav-menu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: linear-gradient(to bottom, rgba(30, 60, 114, 0.1), transparent);
        z-index: -1;
    }

    /* Hero Section Mobil */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-text {
        padding-right: 0;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

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

    .hero-text p {
        font-size: 1rem;
    }

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

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-image {
        margin-top: 2rem;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }



    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        height: 45px;
    }
}



/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

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

.contact-card {
    background: linear-gradient(145deg, #1a1a1a, #222222);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.05), rgba(0, 128, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 255, 255, 0.4);
}

.contact-icon i {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
}

.contact-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact-card p {
    color: #cccccc;
    margin: 0.5rem 0;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.phone-link,
.email-link {
    color: #00ffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin: 0.8rem 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.phone-link:hover,
.email-link:hover {
    color: #ffffff;
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.social-link:hover {
    background: #00ffff;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Contact Section */
@media screen and (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(to right, #0a1118, #152028);
    color: white;
    padding: 4rem 0 0;
    margin-top: 4rem;
}

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

.footer-info {
    grid-column: 1 / 2;
}

.footer-links {
    grid-column: 2 / 3;
}

.footer-services {
    grid-column: 3 / 4;
}

.footer-contact {
    grid-column: 4 / 5;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.footer-social a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

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

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

.footer ul li a:hover {
    color: white;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact ul li i {
    font-size: 1.1rem;
}

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

.copyright {
    opacity: 0.9;
}

.footer-extra-links {
    display: flex;
    gap: 2rem;
}

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

.footer-extra-links a:hover {
    color: white;
}

/* SEO Optimization Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* Responsive Footer */
@media screen and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-info {
        grid-column: 1 / -1;
    }

    .footer-links {
        grid-column: 1 / 2;
    }

    .footer-services {
        grid-column: 2 / 3;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-extra-links {
        justify-content: center;
        gap: 1rem;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 1rem;
        padding: 1rem;
        border-radius: 12px;
        min-height: auto;
        align-items: center;
    }

    .service-image {
        height: 100px;
        border-radius: 8px;
        grid-row: 1 / 3;
    }

    .service-icon {
        display: none;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin: 0;
        padding: 0;
        grid-column: 2;
        grid-row: 1;
    }

    .service-card p {
        display: none;
    }

    .service-features {
        padding: 0;
        margin: 0;
        grid-column: 2;
        grid-row: 2;
    }

    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
        display: flex;
        align-items: center;
    }

    .service-features li::before {
        content: '•';
        color: #00ffff;
        margin-right: 0.5rem;
        font-weight: bold;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .footer-info,
    .footer-links,
    .footer-services,
    .footer-contact {
        grid-column: 1 / -1;
    }
}

/* Mobile Services Optimization */
@media screen and (max-width: 480px) {
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .service-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 0.8rem;
        padding: 0.8rem;
        border-radius: 10px;
        min-height: auto;
        align-items: center;
    }

    .service-image {
        height: 80px;
        border-radius: 6px;
        grid-row: 1 / 3;
    }

    .service-icon {
        display: none;
    }

    .service-card h3 {
        font-size: 1rem;
        margin: 0;
        padding: 0;
        grid-column: 2;
        grid-row: 1;
    }

    .service-card p {
        display: none;
    }

    .service-features {
        padding: 0;
        margin: 0;
        grid-column: 2;
        grid-row: 2;
    }

    .service-features li {
        font-size: 0.8rem;
        margin-bottom: 0.15rem;
        display: flex;
        align-items: center;
    }

    .service-features li::before {
        content: '•';
        color: #00ffff;
        margin-right: 0.4rem;
        font-weight: bold;
    }
}

/* Accessibility Improvements */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Print Styles */
@media print {
    .footer {
        background: none;
        color: black;
    }

    .footer-social,
    .footer-extra-links {
        display: none;
    }
}

/* Footer Updates */
.footer-info.light-bg {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

.footer-info.light-bg h3 {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: linear-gradient(145deg, #1a1a1a, #222222);
    border-radius: 10px;
    z-index: 1001;
    overflow: hidden;
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 1.5rem;
    background: linear-gradient(to right, #000000, #434343);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: white;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    background: #1a1a1a;
    color: #f8f8f8;
}

.modal-body h3 {
    color: #1e3c72;
    margin: 1.5rem 0 1rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-body ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-body li {
    color: #bbbbbb;
    margin-bottom: 0.5rem;
}

/* Responsive Modal */
@media screen and (max-width: 768px) {
    .modal {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

/* Additional Gradient Effects */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, #111111, transparent);
    z-index: 3;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, #111111, transparent);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #0a1118, #00ffff);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #00ffff, #0a1118);
}

/* Selection Color */
::selection {
    background: rgba(0, 255, 255, 0.3);
    color: #ffffff;
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    animation: slideDown 0.3s ease forwards;
}

.form-message i {
    font-size: 1.2rem;
}

.form-message.success {
    background: rgba(0, 255, 128, 0.1);
    border: 1px solid rgba(0, 255, 128, 0.3);
    color: #00ff80;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fiyat Hesaplama Sistemi Stilleri */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f8f8f8;
}

.pricing-calculator {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(145deg, #1a1a1a, #222222);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(0, 255, 255, 0.1);
}

/* Adım Stilleri */
.calculator-step {
    display: none;
}

.calculator-step.active {
    display: block;
}

.calculator-step h3 {
    color: #f8f8f8;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Hizmet Kategorileri */
.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-category-card {
    background: linear-gradient(145deg, #1a1a1a, #222222);
    border: 2px solid rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.service-category-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.service-category-card.selected {
    border-color: #00ffff;
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.1), #1a1a1a);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    transition: all 0.3s ease;
}

.service-category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.service-category-card h4 {
    color: #f8f8f8;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-category-card p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Adım 2 Stilleri */
.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f8f8f8;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.package-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.package-card {
    background: linear-gradient(145deg, #1a1a1a, #222222);
    border: 2px solid rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.package-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.package-card.selected {
    border-color: #00ffff;
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.1), #1a1a1a);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.package-card.selected::after {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #00ffff;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.package-title {
    color: #f8f8f8;
    font-size: 1.2rem;
    font-weight: 600;
}

.package-price {
    color: #00ffff;
    font-size: 1.5rem;
    font-weight: bold;
}

.package-description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.package-features {
    list-style: none;
    padding: 0;
}

.package-features li {
    color: #bbbbbb;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li::before {
    content: '•';
    color: #00ffff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Fiyat Sonucu Stilleri */
.price-result {
    background: linear-gradient(145deg, #1a1a1a, #222222);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

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

.result-header h3 {
    color: #f8f8f8;
    font-size: 1.5rem;
    margin: 0;
}

.new-calculation-btn {
    background: linear-gradient(to right, #00ffff, #0080ff);
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.new-calculation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.selected-package-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.package-details h4 {
    color: #f8f8f8;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.package-details p {
    color: #cccccc;
    line-height: 1.6;
}

.price-details {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.price-breakdown .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.price-breakdown .price-item:last-child {
    margin-bottom: 0;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.price-item span:first-child {
    color: #cccccc;
}

.price-item span:last-child {
    color: #00ffff;
    font-weight: bold;
}

.price-item.total span:last-child {
    font-size: 1.3rem;
}

.contact-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    text-align: center;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-info i {
    color: #00ffff;
    margin-right: 0.5rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 2rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.contact-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

/* Responsive Tasarım */
@media screen and (max-width: 768px) {
    .pricing-section h2 {
        font-size: 2rem;
    }
    
    .pricing-calculator {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .service-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-category-card {
        padding: 1.5rem;
    }
    
    .package-options {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .selected-package-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .result-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .new-calculation-btn {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .pricing-calculator {
        margin: 0 0.5rem;
        padding: 0.8rem;
    }
    
    .service-category-card {
        padding: 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .package-card {
        padding: 1rem;
    }
    
    .price-details {
        padding: 1rem;
    }
    
    .contact-section {
        padding: 1rem;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #0a1118 0%, #152028 100%);
    color: white;
    padding: 140px 0 80px;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 255, 0.15) 0%, rgba(10, 17, 24, 0.95) 100%);
    z-index: 2;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8f8f8;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #f8f8f8;
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.2rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    color: #00ffff;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    color: #f8f8f8;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: #bbbbbb;
    margin: 0;
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Çalışma Süreci */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #f8f8f8;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(to bottom, #00ffff, transparent);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: linear-gradient(145deg, #1a1a1a, #222222);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon i {
    color: #00ffff;
    font-size: 1.5rem;
}

.step-content h3 {
    color: #f8f8f8;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    color: #bbbbbb;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-features i {
    color: #00ffff;
    font-size: 0.8rem;
}

/* Neden Biz? */
.why-us-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

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

.why-us-card {
    background: linear-gradient(145deg, #1a1a1a, #222222);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    color: #000;
    font-size: 2rem;
}

.why-us-card h3 {
    color: #f8f8f8;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-us-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a1118 0%, #152028 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #f8f8f8;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(to right, #00ffff, #0080ff);
    color: #000;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #f8f8f8;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Responsive Tasarım */
@media screen and (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-step::before {
        display: none;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .why-us-card {
        padding: 1.5rem;
    }
}

/* Chatbot Stilleri */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
}

.chatbot-toggle {
    width: auto;
    height: 60px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    padding: 0 20px;
    gap: 10px;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 255, 255, 0.4);
}

.chatbot-icon {
    color: #000;
    font-size: 1.5rem;
    z-index: 2;
}

.chatbot-label {
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
}

.chatbot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: rgba(0, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: linear-gradient(145deg, #1a1a1a, #222222);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
    animation: slideIn 0.3s ease;
}

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

.chatbot-header {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #000;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chatbot-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chatbot-info .status {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chatbot-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    margin-bottom: 0.5rem;
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    position: relative;
}

.bot-message .message-content {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    color: #f8f8f8;
}

.user-message .message-content {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
}

.message-content p {
    margin: 0 0 0.3rem 0;
    line-height: 1.4;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
}

.chatbot-input {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #f8f8f8;
    font-size: 0.9rem;
}

.chatbot-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chatbot-input input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.chatbot-send {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-send:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.chatbot-quick-replies {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-reply {
    padding: 0.6rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    color: #f8f8f8;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-align: left;
}

.quick-reply:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    transform: translateX(5px);
}

/* Responsive Chatbot */
@media screen and (max-width: 480px) {
    .chatbot-window {
        width: 300px;
        height: 450px;
        right: -10px;
    }
    
    .chatbot-toggle {
        width: auto;
        height: 50px;
        padding: 0 15px;
        gap: 8px;
    }
    
    .chatbot-icon {
        font-size: 1.2rem;
    }
    
    .chatbot-label {
        font-size: 0.8rem;
    }
} 