/* Modern, "lit & hot" styles with large fonts */
:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #004E89;
    --accent: #1B998B;
    --light: #F9F9FB;
    --dark: #1A1E24;
    --gray: #64748B;
    --border-radius: 24px;
    --card-shadow: 0 20px 35px -8px rgba(0,0,0,0.07), 0 10px 10px -5px rgba(0,0,0,0.02);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(255,107,53,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(255,107,53,0.4);
}
.btn-outline {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}
.btn-outline:hover {
    background: var(--secondary);
    color: white;
}
.btn-lg { padding: 18px 36px; font-size: 1.25rem; }
.btn-block { width: 100%; }
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #128C7E; }

/* Navbar */
.navbar {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* ============================================ */
/* CIRCULAR LOGO STYLES                         */
/* ============================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B35 0%, #004E89 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.25);
    border: 3px solid white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.logo:hover .logo-circle {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.logo-placeholder {
    background: linear-gradient(135deg, #FF6B35 0%, #004E89 100%);
    color: white;
    font-size: 2rem;
}

.logo-placeholder i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #004E89;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.logo-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #FF6B35;
    margin-left: 6px;
    align-self: flex-end;
    margin-bottom: 4px;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.2rem;
    }
    .logo-circle {
        width: 45px;
        height: 45px;
    }
    .logo-tagline {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none; /* Hide text on very small screens, show only circle */
    }
    .logo-circle {
        width: 50px;
        height: 50px;
    }
}




/* For mobile, adjust spacing */
@media (max-width: 768px) {
    .nav-container {
        gap: 10px;
    }
    .logo {
        margin-right: 0;
    }
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; }

/* Hero */
.hero {
    padding: 80px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(27,153,139,0.08) 0%, transparent 50%);
}
.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
}
.hero-text {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.stats-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.7);
}
.stat-item { margin-bottom: 24px; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--secondary); display: block; }
.stat-label { font-size: 1.1rem; color: var(--gray); }

/* Sections */
.section { padding: 80px 0; }
.section-header { margin-bottom: 56px; }
.section-subtitle { font-size: 1.3rem; color: var(--gray); margin-top: 12px; }
.bg-light { background: white; }

/* Service Grid */
.service-grid-home {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.service-category-card {
    background: white;
    padding: 36px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.2s;
}
.service-category-card:hover { transform: translateY(-8px); }
.category-icon {
    width: 70px; height: 70px;
    background: rgba(0,78,137,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 24px;
}
.service-list-mini { list-style: none; margin: 20px 0; }
.service-list-mini li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.card-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

/* Packages */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.package-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 36px 28px;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: all 0.3s;
}
.package-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}
.package-badge {
    position: absolute;
    top: -12px; right: 24px;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
}
.package-includes, .package-includes-full { margin: 16px 0; color: var(--gray); }
.package-best { font-weight: 500; margin: 12px 0; }
.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 20px 0 8px;
}
.package-savings {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
}

/* Tables */
.service-table, .rate-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.service-table th, .rate-table th {
    background: var(--secondary);
    color: white;
    font-weight: 600;
    padding: 18px 16px;
    text-align: left;
}
.service-table td, .rate-table td {
    padding: 16px;
    border-bottom: 1px solid #eef2f6;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: #ccc; text-decoration: none; }
.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #aaa;
}

/* Contact */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
}
.whatsapp-cta {
    background: #e7f7ef;
    border-radius: 20px;
    padding: 36px;
    text-align: center;
}
.whatsapp-cta i { font-size: 4rem; color: #25D366; margin-bottom: 20px; }

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    .hero-container { grid-template-columns: 1fr; }
    .service-grid-home, .package-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    .service-grid-home, .package-grid { grid-template-columns: 1fr; }
    .contact-card { grid-template-columns: 1fr; }
}
/* Utility Classes */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Why Teaser Section */
.why-teaser {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, rgba(0,78,137,0.05) 0%, rgba(27,153,139,0.05) 100%);
    border-radius: var(--border-radius);
    padding: 50px 40px;
}
.why-content h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}
.why-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}
.why-icon {
    text-align: center;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.8;
}

/* Package Grid Full (for packages page) */
.package-grid.full-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Page Header (for inner pages) */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a5276 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}
.page-header h1 {
    color: white;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Service Section Titles */
.service-section {
    margin-bottom: 60px;
}
.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
}
.section-title i {
    color: var(--primary);
    font-size: 1.8rem;
}

/* Rate Card Container */
.rate-card-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
}
.rate-note {
    margin-top: 30px;
    padding: 15px;
    background: #f0f9ff;
    border-radius: 12px;
    font-style: italic;
}

/* Mobile Navigation Show */
@media (max-width: 768px) {
    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .why-teaser {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* ============================================ */
/* MOBILE RESPONSIVENESS ENHANCEMENTS           */
/* ============================================ */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .container { padding: 0 16px; }
    
    /* Navbar */
    .nav-container { flex-wrap: wrap; }
    .nav-links {
        display: none;
        width: 100%;
        order: 3;
    }
    .nav-links.show {
        display: flex;
        flex-direction: column;
        background: white;
        padding: 20px;
        border-radius: 20px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-actions { margin-left: auto; }
    .mobile-menu-toggle { display: block; }
    
    /* Hero */
    .hero { padding: 40px 0; }
    .hero-container { grid-template-columns: 1fr; gap: 30px; }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    
    /* Service Grid */
    .service-grid-home { grid-template-columns: 1fr; }
    
    /* Package Grid */
    .package-grid { grid-template-columns: 1fr; }
    
    /* Tables scroll */
    .service-table-wrapper { overflow-x: auto; }
    .service-table, .rate-table { min-width: 600px; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    /* Team */
    .team-grid { grid-template-columns: 1fr; }
    
    /* Blog */
    .blog-layout { grid-template-columns: 1fr; }
    .blog-masonry { grid-template-columns: 1fr; }
    .blog-hero .hero-title { font-size: 2rem; }
    
    /* Contact */
    .contact-card { grid-template-columns: 1fr; padding: 24px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .btn { padding: 12px 20px; font-size: 1rem; }
    .logo-text { font-size: 1.2rem; }
}
.countdown {
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}
/* ============================================ */
/* ENHANCED SOCIAL LINKS WITH VISIBLE LABELS    */
/* ============================================ */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.social-link i {
    font-size: 1.2rem;
    width: 22px;
    text-align: center;
    transition: transform 0.3s;
}

.social-label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Hover Animation */
.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Platform-Specific Hover Colors */
.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.3);
}

.social-link.tiktok:hover {
    background: #000000;
    border-color: #00F2EA;
    box-shadow: 0 12px 25px rgba(0, 242, 234, 0.3);
}
.social-link.tiktok:hover i {
    color: #00F2EA;
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    border-color: transparent;
    box-shadow: 0 12px 25px rgba(221, 42, 123, 0.3);
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 12px 25px rgba(24, 119, 242, 0.3);
}

.social-link.x-twitter:hover {
    background: #000000;
    border-color: #1DA1F2;
    box-shadow: 0 12px 25px rgba(29, 161, 242, 0.3);
}
.social-link.x-twitter:hover i {
    color: #1DA1F2;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .social-links {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .social-link {
        padding: 8px 14px;
    }
    
    .social-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        padding: 8px 12px;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
    
    /* Option: Keep labels visible for clarity */
    .social-label {
        display: inline;
    }
}