/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a202c;
    background-color: #f8fafc;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #22c55e);
    border-radius: 2px;
}

.section-title p {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: #0ea5e9;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 10px;
    font-family: inherit;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
    background: white;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
}

.btn-secondary:hover {
    background: #0ea5e9;
    color: white;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
    transition: box-shadow 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 55px;
    width: 200px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    color: #4a5568;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #22c55e);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #0ea5e9;
}

.nav-links a.active {
    color: #0ea5e9;
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #4a5568;
    cursor: pointer;
    padding: 8px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1a202c 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #f9fafb;
    padding: 20px 0;
    margin-top: 40px;
}

.disclaimer-section p {
    font-size: 14px;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission & Vision Section */
.mission-vision {
    background: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
    width: 100%;
}

.mission-card, .vision-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    width: 100%;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

.mission-card {
    border-top: 4px solid #0ea5e9;
}

.vision-card {
    border-top: 4px solid #22c55e;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vision-card .card-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.card-icon i {
    font-size: 30px;
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.mission-card p, .vision-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Services Overview */
.services-overview {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e2e8f0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.1);
    border-color: #0ea5e9;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a202c;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.service-link {
    color: #0ea5e9;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    text-decoration: none;
}

.service-link:hover {
    gap: 12px;
}

/* Footer */
.tv-footer {
    background-color: #13343b;
    color: rgba(255, 255, 255, 0.9);
    padding: 32px 16px;
    margin-bottom: 0;
    width: 100%;
}

.tv-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.tv-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
    width: 100%;
}

.tv-footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.tv-footer-logo {
    font-size: 28px;
    font-weight: 600;
    color: #32b8c6;
    margin-bottom: 16px;
}

.tv-footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.tv-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.tv-footer-links li {
    margin: 0;
}

.tv-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s ease;
    display: block;
}

.tv-footer-links a:hover {
    color: #32b8c6;
}

/* Social Media Styles */
.social-media-section {
    margin-top: 25px;
    position: relative;
}

.social-media-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.social-media-circle {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

.social-media-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(32, 128, 141, 0.4);
}

.social-icons-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-decoration: none;
    margin: 0 auto;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0A66C2 100%);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #FD5949 0%, #D6249F 50%, #285AEB 100%);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005E8D 100%);
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1BA854 100%);
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

.tv-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tv-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tv-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: #32b8c6;
    flex-shrink: 0;
    margin-top: 2px;
}

.tv-contact-item a,
.tv-contact-item span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s ease;
    line-height: 1.5;
}

.tv-contact-item a:hover {
    color: #32b8c6;
}

.tv-footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
}

.tv-footer-bottom a {
    color: #32b8c6;
    text-decoration: underline;
}

/* Mobile Bottom Navigation */
.tv-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fffcfd;
    border-top: 2px solid #20808d;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease;
    width: 100%;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tv-mobile-nav-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 8px 4px;
    width: 100%;
}

.tv-mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #626c71;
    transition: all 0.15s ease;
    padding: 8px 4px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    gap: 4px;
    min-height: 60px;
}

.tv-mobile-nav-link svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: all 0.15s ease;
}

.tv-mobile-nav-link:active,
.tv-mobile-nav-link:hover {
    color: #20808d;
    background-color: rgba(32, 128, 141, 0.08);
}

.tv-mobile-nav-link:active svg,
.tv-mobile-nav-link:hover svg {
    stroke-width: 2;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Body padding for mobile nav */
    body {
        padding-bottom: 70px;
    }
    
    /* Show mobile nav */
    .tv-mobile-nav {
        display: block;
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hide desktop nav items on mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 20px;
        z-index: 999;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .section-title p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .mission-card, .vision-card {
        padding: 30px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .tv-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-media-circle {
        width: 140px;
        height: 140px;
    }
    
    .social-icons-grid {
        gap: 15px;
        padding: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 30px;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .section-title p {
        font-size: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 20px;
    }
    
    .mission-card p, .vision-card p {
        font-size: 15px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-card p {
        font-size: 15px;
    }
    
    .tv-footer {
        padding: 24px 12px;
    }
    
    .tv-footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .tv-footer-logo {
        font-size: 24px;
    }
    
    .social-media-circle {
        width: 120px;
        height: 120px;
    }
    
    .social-icons-grid {
        gap: 10px;
        padding: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .tv-mobile-nav-link {
        padding: 6px 2px;
        font-size: 10px;
        min-height: 55px;
    }
    
    .tv-mobile-nav-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .mission-card, .vision-card {
        padding: 20px 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .tv-mobile-nav-link {
        font-size: 9px;
    }
    
    .tv-mobile-nav-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Hide mobile nav on desktop */
@media (min-width: 769px) {
    .tv-mobile-nav {
        display: none !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
}