/*
 * PRINCE INDIA GROUP - Main Stylesheet
 * All site CSS with comments by section
 */

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #FF6B35;
    --primary-color: #FF6B35;
    --secondary: #004E89;
    --secondary-color: #004E89;
    --accent: #F7B801;
    --accent-color: #F7B801;
    --dark: #0a0e27;
    --dark-bg: #1a1a1a;
    --light: #f8f9fa;
    --light-bg: #f8f9fa;
    --text: #1a1a1a;
    --text-dark: #333;
    --text-light: #666;
}

/* ========== BASE / LAYOUT ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container-lg {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 0 15px;
}
.sticky-top {
   
    z-index: 20 !important;
}
/* ========== TOP BAR (above navbar) ========== */
.top-bar {
    background: linear-gradient(90deg, #0a0e27 0%, #004E89 100%);
    color: rgba(255,255,255,0.9);
    padding: 8px 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

body.has-top-bar .navbar-custom { top: 40px; }
body.has-top-bar .hero,
body.has-top-bar .page-header { margin-top: 110px !important; }
body.has-top-bar .page-header { padding-top: 100px !important; }

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar-link:hover { color: #F7B801; }

.top-bar-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.top-bar-cta {
    background: #FF6B35;
    color: #fff !important;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.top-bar-cta:hover {
    background: #ff5722;
    color: #fff;
}

.top-bar-social { display: flex; gap: 10px; }

.top-bar-social-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
}

.top-bar-social-link:hover {
    background: #F7B801;
    color: #0a0e27;
}

/* ========== NAVBAR ========== */
.navbar-custom {
    background: #fff;
    padding: 0.6rem 0;
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.navbar-custom .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color, #1a3a52) !important;
    letter-spacing: 1px;
}

.navbar-custom .nav-link {
    color: #1a3a52 !important;
    font-weight: 500;
    margin: 0 6px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.navbar-custom .nav-link:hover { color: var(--primary-color, #FF6B35) !important; }

.navbar-custom .navbar-toggler { border-color: rgba(0,0,0,0.2); }
.navbar-custom .navbar-toggler-icon { filter: none; }

/* ========== PAGE HEADER (banner on inner pages) ========== */
.page-header {
    background: linear-gradient(135deg, #004E89 0%, #1a3a52 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}
.page-header .page-header-sub {
    font-size: 1.05rem;
    margin-top: 0.35rem;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    background: transparent;
    padding: 20px 0;
}

.breadcrumb-item a {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary);
}

/* ========== SECTIONS (common) ========== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary);
    display: block;
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
    background: var(--primary);
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary-custom:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 38px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: white;
    color: var(--secondary);
}

/* ========== HOME - HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247,184,1,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(30px); }
}

.hero-content { position: relative; z-index: 2; }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-image { animation: zoomIn 0.8s ease-out 0.4s both; }

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ========== HOME - ABOUT SECTION ========== */
.about-section {
    background: linear-gradient(to bottom, #fff 0%, var(--light) 100%);
}

.about-box {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary);
}

.about-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-box h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.5rem;
}

.about-box p { color: #666; line-height: 1.8; }

.about-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* ========== HOME - SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* DUPLICATE: service cards now in index.php / services.php
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-card h4,
.service-card h3 {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
    transition: all 0.4s ease;
}

.service-card p {
    color: #666;
    transition: all 0.4s ease;
    font-weight: 300;
}
*/

/* ========== HOME - WHY CHOOSE US ========== */
.why-choose { background: var(--light); }

.why-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(255,107,53,0.2);
}

.why-content h4 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.why-content p { color: #666; font-weight: 300; }

/* ========== HOME - UPCOMING EVENTS (mini cards) ========== */
.event-card-mini {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.event-card-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.2);
}

.event-card-mini .event-date-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 700;
}

.event-card-mini .event-date-box .day { font-size: 1.8rem; line-height: 1; }
.event-card-mini .event-date-box .month { font-size: 0.85rem; }
.event-card-mini .event-body { padding: 20px; }
.event-card-mini .event-body h5 { color: var(--secondary); font-weight: 700; margin-bottom: 8px; }
.event-card-mini .event-body p { color: #666; font-size: 0.95rem; margin: 0; }

/* ========== HOME - TESTIMONIALS ========== */
.testimonials-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    color: white;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    border-left: 4px solid var(--accent);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author { display: flex; align-items: center; gap: 15px; }

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.testimonial-name { font-weight: 700; font-size: 1rem; }
.testimonial-role { font-size: 0.9rem; opacity: 0.8; }

/* Testimonials carousel */
.testimonials-section .carousel-item { padding: 10px 0; }

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255,107,53,0.9);
    opacity: 1;
}

.testimonials-section .carousel-control-prev { left: -25px; }
.testimonials-section .carousel-control-next { right: -25px; }
.testimonials-section .carousel-indicators { bottom: -50px; }
.testimonials-section .carousel-indicators button {
    background-color: var(--accent);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* ========== HOME - GALLERY ========== */
.gallery-section { background: white; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 280px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.15); }

.gallery-item:hover .overlay .title {
    transform: translateY(0);
    display: none !important;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,107,53,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after { opacity: 1; }

/* ========== GALLERY LIGHTBOX ========== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.lightbox-open,
.lightbox-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: fixed;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 2.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
    padding: 0;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}
.lightbox-close { top: 20px; right: 20px; font-size: 2.2rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

/* ========== HOME - FAQ ========== */
.faq-section { background: var(--light); }

.accordion-button {
    background-color: white;
    color: var(--text);
    font-weight: 600;
    border: 1px solid #ddd;
    border-radius: 10px !important;
    margin-bottom: 15px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255,107,53,0.25);
}

/* ========== HOME - CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
   
   
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* ========== FOOTER ========== */
.footer-custom {
    background: #0a0e27;
    color: #fff;
   
}

.footer-main {
    padding: 60px 0 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section { margin-bottom: 0; }

.footer-title {
    color: #F7B801;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-title img { display: block; }

.footer-text {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-custom .social-links { display: flex; gap: 12px; }

.footer-custom .social-link {
    width: 45px;
    height: 45px;
    background: #FF6B35;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-custom .social-link:hover {
    background: #F7B801;
    transform: translateY(-5px);
    color: #fff;
}

.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 12px; }

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-link:hover {
    color: #FF6B35;
    padding-left: 10px;
}

.footer-custom .contact-info { margin-top: 15px; }

.footer-custom .contact-item {
    color: #aaa;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-custom .contact-item i {
    color: #FF6B35;
    width: 20px;
}

.footer-custom .contact-item a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-custom .contact-item a:hover { color: #FF6B35; }

.footer-bottom {
    background: rgba(255,255,255,0.05);
    padding: 25px 0;
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: #FF6B35; }

/* ========== CONTACT PAGE ========== */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-info-block {
    padding: 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item-icon {
    font-size: 28px;
    color: var(--primary-color);
    min-width: 50px;
    text-align: center;
    padding-top: 3px;
    flex-shrink: 0;
}

.contact-item-content h5 {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.contact-item-content p {
    margin: 5px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--secondary-color);
}

.form-wrapper {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.form-wrapper h2 {
    color: var(--text-dark);
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.1);
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 22px;
}

.required {
    color: #d32f2f;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid #28a745;
    font-weight: 500;
}

.success-message i {
    margin-right: 10px;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .form-wrapper {
        padding: 35px 25px;
        margin-top: 40px;
    }
    
    .contact-info-block {
        padding-bottom: 30px;
        border-bottom: 2px solid #f0f0f0;
    }

    .btn-submit {
        padding: 12px 30px;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 40px 0;
    }
    
    .form-wrapper {
        padding: 25px 15px;
    }

    .contact-info-block h2 {
        font-size: 1.8rem;
    }

    .form-wrapper h2 {
        font-size: 1.8rem;
    }

    .contact-item {
        margin-bottom: 25px;
    }

    .contact-item-icon {
        font-size: 24px;
        min-width: 40px;
    }
}
/* ========== SERVICES PAGE ========== */
/* Services Section Styling */
.services-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.header-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* DUPLICATE: Service cards - styles in index.php / services.php
.service-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
    align-content: space-around;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card > p,
.service-card-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.service-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
*/

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: bold;
}

/* DUPLICATE: .btn-service-quote in services.php / index.php
.btn-service-quote {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 60px !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 15px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-family: inherit;
}

.btn-service-quote:hover {
    background: transparent;
    color: var(--primary-color);
}
*/

/* Inquiry Section */
.inquiry-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.form-wrapper {
    background: white;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
}

.form-control,
.form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 13px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.form-control:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.1);
    outline: none;
}

.form-control option {
    background: white;
    color: var(--text-dark);
}

.required {
    color: #d32f2f;
    font-weight: 700;
}

.btn-submit-form {
    width: 100%;
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-form:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 18px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid #28a745;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-message i {
    font-size: 1.2rem;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    padding: 18px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid #f5c6cb;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-danger i {
    font-size: 1.2rem;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 20px 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }

    .inquiry-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

    /* .service-card { padding: 30px 20px; } duplicate - in page */
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }

    .inquiry-section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* .service-card duplicate - page has own
    .service-card { padding: 25px 18px; }
    .service-card h3 { font-size: 1.2rem; }
    .service-card > p { font-size: 0.9rem; }
    */

    .service-features {
        margin: 15px 0;
    }

    .form-wrapper {
        padding: 25px 16px;
    }

    .btn-submit-form {
        padding: 13px 30px;
        font-size: 0.95rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-control {
        padding: 11px 14px;
        font-size: 0.9rem;
    }
}

/* Text Utilities */
.text-center {
    text-align: center;
}

/* ========== EVENTS PAGE ========== */
.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.event-card img { width: 100%; height: 220px; object-fit: cover; }
.event-card .card-body { padding: 25px; }
.event-card h3 { color: #004E89; font-weight: 700; margin-bottom: 10px; }
.event-date { color: #FF6B35; font-weight: 600; }

/* ========== BLOG PAGE ========== */
/* .page-header-blog removed - all pages use same .page-header */

.blog-listing-section { background: #f8f9fa; }

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
    line-height: 0;
}

.blog-card-image-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image-link img {
    transform: scale(1.05);
}

.blog-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--primary-color, #FF6B35);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35;
}

.blog-card-title a {
    color: #1a3a52;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover { color: var(--primary-color, #FF6B35); }

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #004E89 0%, #1a3a52 100%);
    color: white !important;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    align-self: flex-start;
}

.blog-card-btn:hover {
    opacity: 0.92;
    transform: translateX(4px);
    color: white;
}

/* ========== BLOG DETAIL (single post) ========== */
.article-body { padding: 50px 0 70px; background: #fff; }

.article-featured-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.article-content {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #333;
}

.article-content p { margin-bottom: 1.25em; }

.article-content h2, .article-content h3 {
    color: #1a3a52;
    font-weight: 700;
    margin-top: 1.75em;
    margin-bottom: 0.6em;
}

.article-content h2 { font-size: 1.5rem; }
.article-content h3 { font-size: 1.25rem; }

.article-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1em 0; }

.article-back-btn {
    display: inline-block;
    margin-top: 36px;
    padding: 12px 24px;
    background: transparent;
    color: #004E89;
    border: 2px solid #004E89;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.article-back-btn:hover {
    background: #004E89;
    color: white;
}

/* ========== ABOUT PAGE - extra sections ========== */
.about-intro { background: var(--light-bg); }

.mission-vision { background: white; }

.mission-card,
.vision-card {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a3a52 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent);
}

.mission-card i,
.vision-card i { font-size: 3rem; margin-bottom: 20px; }

.values-section { background: var(--light-bg); }

.value-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.value-item h4 { color: var(--secondary); font-weight: 700; margin-bottom: 15px; }

.team-section { background: white; }

.team-member {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--primary);
    object-fit: cover;
}

.team-member h4 { color: var(--secondary); font-weight: 700; margin-bottom: 5px; }
.team-member p { color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.team-member .bio { color: var(--text-light); font-size: 0.95rem; }

.journey-section { background: var(--light-bg); }

.timeline { position: relative; padding: 40px 0; }

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.timeline-item { margin-bottom: 50px; position: relative; }

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 52%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 52%;
    margin-right: 0;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 4px solid white;
    border-radius: 50%;
    top: 30px;
    z-index: 10;
    box-shadow: 0 0 0 4px var(--secondary);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.timeline-content h4 { color: var(--secondary); font-weight: 700; margin-bottom: 10px; }
.timeline-content p { color: var(--text-light); }

.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a3a52 100%);
    color: white;
    padding: 80px 0;
}

.stat-item { text-align: center; padding: 30px; }
.stat-number { font-size: 3rem; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
.stat-label { font-size: 1.1rem; opacity: 0.9; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .top-bar { padding: 10px 0; }
    .top-bar-left,
    .top-bar-right { justify-content: center; }

    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }

    .page-header h1 { font-size: 2rem; }

    .section-title h2 { font-size: 2.2rem; }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 30px;
        font-size: 0.9rem;
        margin-right: 10px;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .timeline::before { display: none; }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 0;
        transform: translateX(-50%);
    }

    .stat-number { font-size: 2rem; }
}
