:root {
            --kerala-gold: #d4a017;
            --kerala-red: #b83b2d;
            --kerala-green: #1d6b4e;
            --warm-sand: #faf3e0;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: #1e2f23;
            background-color: var(--warm-sand);
            scroll-behavior: smooth;
        }
        h1, h2, h3, .navbar-brand, .section-heading {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        .navbar {
            background-color: rgba(255, 248, 235, 0.96);
            backdrop-filter: blur(4px);
            box-shadow: 0 4px 12px rgba(0, 40, 20, 0.08);
        }
        .navbar-brand {
            font-size: 2rem;
            font-weight: 900;
            color: var(--kerala-red) !important;
            letter-spacing: 1px;
        }
        .nav-link {
            font-weight: 600;
            color: #1d4e3a !important;
            margin: 0 6px;
            transition: 0.2s;
            border-radius: 30px;
        }
        .nav-link:hover, .nav-link.active {
            background: var(--kerala-gold);
            color: #000 !important;
        }
        .page-hero {
            min-height: 40vh;
            background: linear-gradient(135deg, rgba(0, 30, 20, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
                        url('../images/about/3.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, #fffaf0, transparent);
            pointer-events: none;
        }
        .section-padding { padding: 80px 0; }
        .section-heading {
            border-left: 12px solid var(--kerala-red);
            padding-left: 28px;
            margin-bottom: 50px;
            font-size: 2.8rem;
        }
        .contact-card {
            background: white;
            border-radius: 30px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
            height: 100%;
        }
        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 40px -15px var(--kerala-red);
        }
        .contact-card i {
            font-size: 3rem;
            color: var(--kerala-red);
            margin-bottom: 1rem;
        }
        .contact-card h4 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 1rem;
        }
        .contact-form {
            background: white;
            border-radius: 30px;
            padding: 2.5rem;
            box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
        }
        .form-control, .form-select {
            border: 2px solid #e0d5c0;
            border-radius: 15px;
            padding: 0.8rem 1.2rem;
            transition: 0.3s;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--kerala-red);
            box-shadow: 0 0 0 0.2rem rgba(184, 59, 45, 0.25);
        }
        .btn-rust {
            background: var(--kerala-red);
            color: white;
            border-radius: 40px;
            padding: 12px 36px;
            font-weight: 600;
            transition: 0.3s;
            border: none;
        }
        .btn-rust:hover {
            background: #8f2e1e;
            color: white;
            transform: translateY(-2px);
        }
        .faq-item {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            transition: 0.3s;
            cursor: pointer;
        }
        .faq-item:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--kerala-green);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: #666;
            padding-top: 0;
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-top: 1rem;
        }
        .map-container {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.15);
        }
        footer {
            background: #172e1c;
            color: #ddd;
        }
        
        @media (max-width: 768px) {
            .section-heading { font-size: 2rem; }
            .page-hero h1 { font-size: 2.5rem; }
            .contact-form { padding: 1.5rem; }
        }

.social-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: 0.3s;
            text-decoration: none;
        }
        .social-circle:hover {
            transform: translateY(-5px);
            color: white;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

/* Footer responsive styles */
        footer {
            background: linear-gradient(145deg, #0a241a 0%, #1a3a2a 100%);
            position: relative;
            margin-top: 0 !important;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--kerala-gold, #d4a017), var(--kerala-red, #b83b2d), var(--kerala-green, #1d6b4e));
        }
        
        .footer-links a, .footer-info a, .footer-contact a {
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover, .footer-info a:hover, .footer-contact a:hover {
            color: var(--kerala-gold) !important;
            padding-left: 5px;
        }
        
        .hover-gold:hover {
            color: var(--kerala-gold) !important;
            transform: translateY(-3px);
            transition: all 0.3s;
        }
        
        .bg-dark-soft {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        /* Responsive breakpoints */
        @media (max-width: 1200px) {
            footer .container {
                max-width: 95%;
            }
        }
        
        @media (max-width: 992px) {
            footer {
                padding: 3rem 0 !important;
            }
            
            .footer-links, .footer-info, .footer-contact {
                margin-bottom: 2rem;
            }
            
            .bg-dark-soft {
                max-width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            footer {
                padding: 2.5rem 0 !important;
            }
            
            footer h3 {
                font-size: 1.8rem;
            }
            
            footer h6 {
                font-size: 1.1rem;
                margin-top: 1rem;
            }
            
            .footer-links, .footer-info, .footer-contact {
                font-size: 0.95rem;
            }
            
            .d-flex.gap-3 {
                justify-content: center;
            }
            
            .bg-dark-soft {
                max-width: 100%;
            }
            
            hr {
                margin: 1.5rem 0;
            }
        }
        
        @media (max-width: 576px) {
            footer {
                text-align: center;
            }
            
            .footer-links .d-flex, .footer-info .d-flex, .footer-contact .d-flex {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .footer-links i, .footer-info i, .footer-contact i {
                margin-right: 0 !important;
                margin-bottom: 0.5rem;
            }
            
            .bg-dark-soft {
                margin: 0 auto;
            }
            
            .row.align-items-center {
                flex-direction: column-reverse;
                gap: 1rem;
            }
            
            .text-center.text-md-end {
                text-align: center !important;
            }
            
            .footer-links a, .footer-info span, .footer-contact span {
                justify-content: center;
            }
            
            .fab.fs-5 {
                font-size: 1.5rem !important;
                margin: 0 8px;
            }
        }
        
        /* Ultra small devices */
        @media (max-width: 380px) {
            footer h3 {
                font-size: 1.5rem;
            }
            
            .small {
                font-size: 0.8rem;
            }
            
            .bg-dark-soft {
                padding: 1rem !important;
            }
        }
        
        /* Icon fixes */
        .fa-chevron-right:before {
            content: "\f054";
        }
        
        .fa-hands-praying:before {
            content: "\f684";
        }
        
        .fa-tshirt:before {
            content: "\f553";
        }
        
        .fa-language:before {
            content: "\f1ab";
        }
        
        .fa-shield-alt:before {
            content: "\f3ed";
        }
        
        .fa-heart:before {
            content: "\f004";
        }