/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5490;
    --secondary-color: #2d7fd8;
    --accent-color: #ff8c42;
    --dark-color: #0f2642;
    --light-color: #f4f7fb;
    --text-color: #2c3e50;
    --success-color: #27ae60;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #0f2642 0%, #1a5490 50%, #2d7fd8 100%);
    box-shadow: 0 2px 20px rgba(15, 38, 66, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 130px;
    width: 130px;
    object-fit: contain;
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 170, 0, 0.6));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 170, 0, 0.7)) drop-shadow(0 0 20px rgba(255, 140, 66, 0.5));
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 6px rgba(255, 170, 0, 0.5)) drop-shadow(0 0 12px rgba(255, 140, 66, 0.3));
    }
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

/* Neon Text Effect */
.neon-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #fff,
        0 0 42px #ffaa00,
        0 0 82px #ff8c42,
        0 0 92px #ff7b29,
        0 0 102px #ff6a10,
        0 0 151px #ff5500;
    animation: neonPulse 3s ease-in-out infinite;
    position: relative;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 
            0 0 7px #fff,
            0 0 10px #fff,
            0 0 21px #fff,
            0 0 42px #ffaa00,
            0 0 82px #ff8c42,
            0 0 92px #ff7b29,
            0 0 102px #ff6a10,
            0 0 151px #ff5500;
        opacity: 1;
    }
    50% {
        text-shadow: 
            0 0 4px #fff,
            0 0 7px #fff,
            0 0 13px #fff,
            0 0 25px #ffaa00,
            0 0 50px #ff8c42,
            0 0 60px #ff7b29,
            0 0 70px #ff6a10,
            0 0 90px #ff5500;
        opacity: 0.85;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.btn-call-header {
    background: white;
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-call-header:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a5490 0%, #2d7fd8 50%, #4a9ae1 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.hero-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--light-color);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: var(--light-color);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.08);
    transition: all 0.3s;
    border: 1px solid rgba(26, 84, 144, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(26, 84, 144, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-color);
}

.service-list li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Why Us Section */
.why-us {
    padding: 5rem 2rem;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Brands Section */
.brands {
    padding: 4rem 2rem;
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.brand-item {
    background: var(--light-color);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.brand-item:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.brand-disclaimer {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 10px;
}

.brand-disclaimer p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #856404;
}

.brand-disclaimer .small-text {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: var(--light-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 0.5rem;
}

.cta-box {
    background: linear-gradient(135deg, #1a5490 0%, #2d7fd8 50%, #4a9ae1 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(26, 84, 144, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f2642 0%, #1a3a5c 100%);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.3rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .legal-links {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom .legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom .legal-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom .trademark-notice {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Legal Pages Styling */
.legal-page {
    padding: 3rem 2rem;
    background: var(--light-color);
    min-height: 60vh;
}

.legal-page h1 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.legal-page h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-page h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.legal-page .info-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
}

.legal-page .info-box p {
    margin-bottom: 0.5rem;
}

.legal-page .back-link {
    text-align: center;
    margin-top: 3rem;
}

.legal-page a:not(.btn) {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-page a:not(.btn):hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .logo-img {
        height: 100px;
        width: 100px;
        filter: brightness(1.2) drop-shadow(0 0 6px rgba(255, 170, 0, 0.5));
    }
    
    .logo {
        gap: 12px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .neon-text {
        font-size: 1.2rem !important;
        letter-spacing: 1px;
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #ffaa00,
            0 0 20px #ff8c42,
            0 0 40px #ff7b29,
            0 0 60px #ff5500;
    }
    
    .hero-logo {
        max-width: 150px;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #0f2642 0%, #1a5490 50%, #2d7fd8 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-grid {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #1a5490 0%, #2d7fd8 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-category {
    background: rgba(255, 140, 66, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-content h2 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Blog Post Page */
.blog-post {
    background: #f8f9fa;
    padding: 3rem 2rem;
}

.blog-post .container {
    max-width: 900px;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-post-content .lead {
    font-size: 1.3rem;
    color: #555;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.blog-post-content h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-content h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.blog-post-content ul, .blog-post-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e83e8c;
}

.blog-post-content pre {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.info-box {
    background: #e7f3ff;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.info-box.warning {
    background: #fff3cd;
    border-left-color: #ff8c42;
}

.info-box h3 {
    margin-top: 0;
    color: var(--dark-color);
}

.faq-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.blog-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.blog-tags span {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.blog-nav {
    margin-top: 2rem;
    text-align: center;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}

.checklist {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.checklist h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.checklist ul {
    list-style: none;
    margin-left: 0;
}

.checklist li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.checklist li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .blog-post .container {
        padding: 1.5rem;
    }
    
    .blog-post-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-post-content {
        font-size: 1rem;
    }
    
    .blog-post-content .lead {
        font-size: 1.1rem;
    }
}

/* Map Container */
.map-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.btn-directions {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-directions:hover {
    background: var(--secondary-color);
    letter-spacing: 2px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
