/* ==========================================================
   SmartVisa168 - KK Law Group (Orange Theme)
   file: style.css
   ========================================================== */

/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FAFAFA;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* --- Header & Nav (Orange Theme) --- */
.main-header {
    background-color: #D1560A; /* CHANGED: Dark Orange */
    padding: 15px 0;
    border-bottom: 3px solid #F37021; /* CHANGED: Primary Orange */
}

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

.header-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logo {
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}
.logo .smart { color: #FFD180; } /* CHANGED: Light Orange Highlight */
.logo .numbers { color: #FFF3E0; } /* CHANGED: Very Light Orange */
.logo .tagline { font-size: 16px; font-weight: normal; margin-left: 10px; }

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}
.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}
.main-nav a:hover { color: #FFD180; } /* CHANGED: Light Orange on hover */

.header-right {
    display: flex;
    align-items: center;
}

.header-promo-img {
    max-height: 90px;
    width: auto;
    border-radius: 8px;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* --- Content Section --- */
.main-content { padding: 40px 0; }
.page-title { font-size: 36px; color: #D1560A; margin-bottom: 10px; } /* CHANGED: Dark Orange heading */
.sub-heading { max-width: 800px; margin: 0 auto 40px auto; color: #555; font-size: 1.1rem; }

/* --- Utilities --- */
.box-shadowed {
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    background-color: #fff;
}
.rounded { border-radius: 8px; }

/* --- Featured Business Section (Orange Theme) --- */
.featured-business-section {
    background-color: #FFF3E0; /* CHANGED: Light Orange background */
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    border-left: 6px solid #F37021; /* CHANGED: Primary Orange border */
}
.business-container { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; }
.business-text { flex: 1; min-width: 300px; }
.business-text h2 { color: #D1560A; font-size: 2rem; margin-bottom: 20px; } /* CHANGED: Dark Orange */
.business-list { list-style: none; margin-bottom: 25px; }
.business-list li { margin-bottom: 12px; font-size: 1.1rem; font-weight: 500; }
.business-list i { color: #F37021; margin-right: 10px; font-size: 1.2rem; } /* CHANGED: Primary Orange icons */
.business-image { flex: 1; min-width: 300px; text-align: center; }
.contained-image { max-width: 100%; height: auto; border: 5px solid #fff; }

/* --- Services Grid (3 Cards) --- */
.grid-title { font-size: 2rem; color: #D1560A; margin-bottom: 40px; } /* CHANGED: Dark Orange */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px;
}
.service-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; 
    transition: transform 0.3s ease;
    background-color: #fff;
}
.service-card:hover { transform: translateY(-5px); }
.card-image-container { height: 220px; overflow: hidden; }
.card-image { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.card-body h3 { font-size: 1.4rem; margin-bottom: 15px; color: #333; }
.card-body p { font-size: 1rem; color: #555; margin-bottom: 25px; flex-grow: 1; }

/* --- Buttons (Orange Theme) --- */
.btn, .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn { background-color: #F37021; color: #fff; border: none; } /* CHANGED: Primary Orange */
.btn:hover { background-color: #D1560A; } /* CHANGED: Dark Orange on hover */

.btn-outline { background-color: transparent; color: #F37021; border: 1px solid #F37021; } /* CHANGED: Primary Orange */
.btn-outline:hover { background-color: #F37021; color: #fff; } /* CHANGED: Primary Orange on hover */

/* Utility for mt-auto button placement in cards */
.mt-auto { margin-top: auto; }

/* --- Complete Services Directory (Bottom Section) --- */
.complete-services-section { margin-bottom: 60px; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.padding-40 { padding: 40px; }
.bg-white { background-color: #fff; }
.color-dark-orange { color: #D1560A; } /* CHANGED: Dark Orange class */
.icon-orange { color: #F37021; margin-right: 10px; } /* CHANGED: Primary Orange class */
.border-top-orange { border-top: 5px solid #F37021; } /* CHANGED: Primary Orange class */
.btn-lg { padding: 15px 30px; font-size: 1.1rem; }

.directory-banner { width: 100%; height: auto; object-fit: cover; }

.services-directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.directory-col {
    background-color: #FDFBFA; /* CHANGED: Very light warm background */
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #EEE;
}

.directory-col h3 {
    font-size: 1.4rem;
    color: #D1560A; /* CHANGED: Dark Orange */
    margin-bottom: 20px;
    border-bottom: 2px solid #FFF3E0; /* CHANGED: Light Orange border */
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.directory-list { list-style: none; padding: 0; margin: 0; }
.directory-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}
/* FontAwesome circle icon with orange color */
.directory-list li::before {
    content: "\f111"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #F37021; /* CHANGED: Primary Orange */
    font-size: 0.6rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* --- Redesigned Footer (Orange Theme) --- */
.main-footer {
    background-color: #A34105; /* CHANGED: Deep Dark Orange (almost brown-orange) */
    color: #fff;
    padding: 60px 0 0 0;
    margin-top: 60px;
    border-top: 4px solid #F37021; /* CHANGED: Primary Orange */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    color: #FFD180; /* CHANGED: Light Orange Highlight */
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: #e0e0e0; text-decoration: none; transition: color 0.3s ease; }
.footer-col a:hover { color: #fff; text-decoration: underline; }

.footer-logo { font-size: 1.6rem; font-weight: bold; color: #fff; margin-bottom: 5px; display: block; text-decoration: none;}
.tagline { color: #FFD180; font-size: 0.9rem; margin-bottom: 10px; } /* CHANGED: Light Orange Highlight */
.about-summary { color: #cccccc; font-size: 0.95rem; margin-bottom: 20px; }

.social-icons { display: flex; gap: 15px; font-size: 1.4rem; }
.social-icons a { color: #fff; text-decoration: none; }
.social-icons a:hover { color: #FFD180; } /* CHANGED: Light Orange Highlight */

.contact-col p { margin-bottom: 15px; display: flex; align-items: flex-start; color: #e0e0e0; }
.contact-col i {
    margin-right: 12px;
    margin-top: 5px;
    color: #FFD180; /* CHANGED: Light Orange Highlight */
    width: 20px;
    text-align: center;
}

/* --- Footer Bottom (Copyright, PDPA, Language) --- */
.footer-bottom {
    background-color: #7D3002; /* CHANGED: Deepest Dark Orange */
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #aaaaaa;
}

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

.pdpa-links a,
.language-switcher a { color: #aaaaaa; text-decoration: none; margin: 0 5px; }
.pdpa-links a:hover, .language-switcher a:hover { color: #fff; }

.language-switcher a.active {
    color: #FFD180; /* CHANGED: Light Orange Highlight */
    font-weight: bold;
}

/* --- PDPA Page Styles --- */
.pdpa-page { padding-bottom: 60px; }
.policy-content { padding: 40px; }
.policy-content section { margin-bottom: 30px; }
.policy-content h2 { color: #D1560A; font-size: 1.5rem; margin-top: 0; margin-bottom: 15px; } /* CHANGED: Dark Orange */
.policy-content p { color: #444; margin-bottom: 15px; }
.policy-content ul { margin-left: 20px; margin-bottom: 20px; color: #444; }
.policy-content li { margin-bottom: 8px; }
.contact-highlight { background-color: #FFF3E0; padding: 20px; border-radius: 8px; border-left: 5px solid #F37021; } /* CHANGED: Light Orange bg, Primary Orange border */

/* --- Border Run VIP Page Specific Styles --- */
.service-image-large { max-width: 100%; height: auto; max-height: 400px; object-fit: cover; width: 100%; }

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px;
}
.gallery-image { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s ease; }
.gallery-image:hover { transform: scale(1.03); }

.content-flex-row { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; margin-top: 20px; }
.text-content { flex: 1; min-width: 300px; }
.lunch-images { flex: 1; display: flex; gap: 15px; min-width: 300px; }
.lunch-img { width: 50%; height: auto; object-fit: cover; }

/* --- Cookie Consent Banner (Orange Theme) --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #D1560A; /* CHANGED: Dark Orange */
    color: #fff;
    padding: 20px 0;
    z-index: 9999;
    border-top: 4px solid #FFD180; /* CHANGED: Light Orange Highlight border */
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-banner.hide { transform: translateY(100%); opacity: 0; visibility: hidden; }
.cookie-banner.show { transform: translateY(0); opacity: 1; visibility: visible; }

.cookie-flex { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cookie-text { display: flex; align-items: center; flex: 2; }
.cookie-icon { font-size: 2.5rem; color: #FFD180; margin-right: 20px; } /* CHANGED: Light Orange Highlight */
.cookie-text p { font-size: 0.95rem; margin: 0; color: #FFF3E0; } /* CHANGED: Very Light Orange */
.cookie-text a { color: #FFD180; text-decoration: underline; } /* CHANGED: Light Orange Highlight */

.cookie-buttons { display: flex; gap: 15px; flex: 1; justify-content: flex-end; }
.btn-accept { background-color: #FFD180; color: #7D3002; border: none; } /* CHANGED: Light Orange bg, Deep Orange text */
.btn-accept:hover { background-color: #fff; color: #000; }

.btn-decline { background-color: transparent; color: #FFF3E0; border: 1px solid #FFF3E0; } /* CHANGED: Very Light Orange */
.btn-decline:hover { background-color: rgba(255,255,255,0.1); }

/* --- Responsive adjustments --- */
@media (max-width: 900px) {
    .header-flex { flex-direction: column; align-items: flex-start; gap: 15px;}
    .header-promo-img { display: none; }
    .featured-business-section { padding: 25px; }
    .business-container { flex-direction: column-reverse; }
    .business-text h2 { font-size: 1.6rem; }
    .page-title { font-size: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .pdpa-links a, .language-switcher a { margin: 0 3px; font-size: 0.8rem; }
    .policy-content { padding: 20px; }
}

@media (max-width: 768px) {
    .content-flex-row { flex-direction: column; }
    .lunch-images { width: 100%; }
    .bottom-flex { flex-direction: column; gap: 10px; text-align: center; }
    .pdpa-links, .language-switcher { margin-top: 5px; }
    .cookie-flex { flex-direction: column; text-align: center; gap: 15px; }
    .cookie-buttons { justify-content: center; width: 100%; }
    .cookie-icon { margin-right: 0; margin-bottom: 10px; }
    .cookie-text { flex-direction: column; }
}

@media (max-width: 600px) {
    .main-nav ul { flex-direction: column; gap: 8px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .contact-col p { justify-content: center; }
    .social-icons { justify-content: center; }
    .featured-business-section { padding: 15px; }
}