/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color .3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.floating-buttons {
    right: 20px;
    bottom: 20px;
}
.floating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: transform .3s, box-shadow .3s;
    animation: floatPulse 2s ease-in-out infinite;
}
.floating-btn:hover { transform: scale(1.08); box-shadow: 0 6px 30px rgba(0,0,0,.35); }
.floating-btn i { font-size: 22px; }
.whatsapp-btn { background: #25D366; }
.phone-btn { background: #0066ff; }

@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.floating-btn:hover { animation: none; transform: scale(1.08); }

/* Second set - left side phone */
@media (min-width: 769px) {
    .floating-buttons { right: 20px; }
}

/* ===== TOP BAR ===== */
.top-bar { background: #1a1a2e; color: #fff; padding: 8px 0; font-size: 13px; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left a { color: #ccc; transition: color .3s; }
.top-bar-left a:hover { color: #25D366; }
.top-bar-left i, .top-bar-right i { margin-right: 5px; }
.top-bar-right { color: #aaa; }

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo-img { height: 45px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 5px; }
.nav-menu > li > a {
    padding: 10px 16px;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: background .3s, color .3s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-menu > li > a:hover { background: #f0f4ff; color: #0066ff; }
.nav-cta {
    background: #0066ff !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}
.nav-cta:hover { background: #0052cc !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s;
    z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    transition: background .3s, color .3s;
}
.dropdown-menu li a:hover { background: #f0f4ff; color: #0066ff; }
.dropdown-mega { min-width: 280px; max-height: 400px; overflow-y: auto; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { width: 28px; height: 3px; background: #1a1a2e; border-radius: 3px; transition: all .3s; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0066ff 0%, #1a1a2e 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 700px; }
.hero-image { display: flex; justify-content: center; }
.hero-image img { border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.3); width: 100%; height: auto; object-fit: cover; max-height: 420px; }
.hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 20px; opacity: .9; margin-bottom: 30px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all .3s;
    border: none;
    cursor: pointer;
}
.btn-primary { background: #25D366; color: #fff; }
.btn-primary:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.3); }
.btn-secondary { background: rgba(255,255,255,.15); color: #fff; border: 2px solid rgba(255,255,255,.3); }
.btn-secondary:hover { background: rgba(255,255,255,.25); }
.btn-blue { background: #0066ff; color: #fff; }
.btn-blue:hover { background: #0052cc; transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-gray { background: #f8f9fc; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 36px; font-weight: 800; color: #1a1a2e; margin-bottom: 15px; }
.section-title p { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,.12); }
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: #666; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    transition: transform .3s;
}
.service-card:hover { transform: translateY(-5px); }
.service-card-icon {
    height: 180px;
    background: linear-gradient(135deg, #0066ff, #1a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #fff;
}
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 25px; }
.service-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card-body p { font-size: 14px; color: #666; margin-bottom: 15px; }
.service-card-body a { color: #0066ff; font-weight: 600; font-size: 14px; }
.service-card-body a:hover { text-decoration: underline; }

/* ===== ILCE GRID ===== */
.ilce-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.ilce-card {
    background: #fff;
    border: 2px solid #e8ecf4;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all .3s;
    font-weight: 600;
    font-size: 14px;
}
.ilce-card:hover { border-color: #0066ff; background: #f0f4ff; color: #0066ff; transform: translateY(-2px); }
.ilce-card i { display: block; margin-bottom: 8px; font-size: 20px; color: #0066ff; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0066ff 0%, #1a1a2e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
.cta-section p { font-size: 18px; opacity: .9; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
}
.review-stars { color: #ffc107; margin-bottom: 15px; font-size: 18px; }
.review-text { font-size: 15px; color: #444; margin-bottom: 15px; font-style: italic; }
.review-author { font-weight: 700; color: #1a1a2e; }

/* ===== PRICING TABLE ===== */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    margin-bottom: 30px;
}
.pricing-table th {
    background: #0066ff;
    color: #fff;
    padding: 18px 25px;
    text-align: left;
    font-weight: 600;
}
.pricing-table td {
    padding: 16px 25px;
    border-bottom: 1px solid #eee;
}
.pricing-table tr:nth-child(even) { background: #f8f9fc; }
.pricing-table tr:last-child td { border-bottom: none; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,.05);
    overflow: hidden;
}
.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .3s;
}
.faq-question:hover { background: #f8f9fc; }
.faq-question i { transition: transform .3s; color: #0066ff; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
}
.faq-answer-inner { padding: 0 25px 20px; color: #555; line-height: 1.8; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    transition: transform .3s;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 25px; }
.blog-card-date { font-size: 13px; color: #999; margin-bottom: 10px; }
.blog-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: #666; margin-bottom: 15px; }

/* ===== BLOG POST ===== */
.blog-content { max-width: 800px; margin: 0 auto; }
.blog-content h2 { font-size: 24px; font-weight: 700; margin: 35px 0 15px; color: #1a1a2e; }
.blog-content p { margin-bottom: 15px; color: #444; }
.blog-content ul { margin: 15px 0; padding-left: 20px; }
.blog-content ul li { margin-bottom: 8px; color: #444; list-style: disc; }
.blog-content strong { color: #1a1a2e; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #0066ff 0%, #1a1a2e 100%);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
}
.page-header h1 { font-size: 40px; font-weight: 800; margin-bottom: 15px; }
.page-header p { font-size: 18px; opacity: .9; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; margin-top: 20px; font-size: 14px; opacity: .8; }
.breadcrumb a { color: #fff; opacity: .7; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { opacity: .5; }

/* ===== MAP ===== */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,.1);
    margin: 30px 0;
}
.map-container iframe { width: 100%; height: 350px; border: 0; }

/* ===== CONTENT BOX ===== */
.content-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    margin-bottom: 30px;
}
.content-box h2 { font-size: 24px; font-weight: 700; margin-bottom: 15px; color: #1a1a2e; }
.content-box p { color: #555; margin-bottom: 15px; }
.content-image { margin-bottom: 20px; border-radius: 12px; overflow: hidden; }
.content-image img { width: 100%; height: 300px; object-fit: cover; border-radius: 12px; }

/* ===== CONTACT FORM SECTION ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-info-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.contact-info-card p { font-size: 14px; color: #666; }
.contact-info-card a { color: #0066ff; }

/* ===== WHATSAPP CTA ===== */
.whatsapp-cta {
    background: #25D366;
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin: 30px 0;
}
.whatsapp-cta h3 { font-size: 22px; margin-bottom: 10px; }
.whatsapp-cta p { margin-bottom: 15px; opacity: .9; }

/* ===== FOOTER ===== */
.footer { background: #1a1a2e; color: #ccc; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: #fff; font-size: 18px; margin-bottom: 20px; }
.footer-col p { font-size: 14px; line-height: 1.8; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #aaa; transition: color .3s; }
.footer-col ul li a:hover { color: #0066ff; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: #0066ff; width: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .3s;
}
.footer-social a:hover { background: #0066ff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #aaa; }
.footer-bottom-links a:hover { color: #fff; }

/* ===== ABOUT PAGE ===== */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin: 40px 0; }
.stat-card {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,.06);
}
.stat-number { font-size: 42px; font-weight: 800; color: #0066ff; }
.stat-label { font-size: 14px; color: #666; margin-top: 5px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .ilce-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar-content { justify-content: center; text-align: center; }
    .top-bar-right { display: none; }

    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,.15);
        transition: right .3s;
        overflow-y: auto;
        align-items: stretch;
        z-index: 999;
    }
    .nav-menu.active { right: 0; }
    .nav-menu > li > a { padding: 12px 0; border-bottom: 1px solid #eee; }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 15px;
        display: none;
    }
    .dropdown.active .dropdown-menu { display: block; }
    .nav-cta { text-align: center; margin-top: 15px; }

    .hero { padding: 60px 0 50px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }

    .section { padding: 50px 0; }
    .section-title h2 { font-size: 28px; }

    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .ilce-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }

    .page-header h1 { font-size: 28px; }
    .content-box { padding: 25px; }

    .cta-section h2 { font-size: 28px; }

    .floating-btn .btn-text { display: none; }
    .floating-btn { padding: 14px; border-radius: 50%; }

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

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .ilce-grid { grid-template-columns: 1fr 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}
