/* ==========================================================================
   Faujdar Green Infra - Main Stylesheet
   Domain: faujdargreeninfra.com
   Tagline: Powering a Sustainable Tomorrow
   Colors Extracted from Logo:
   - Primary Dark Blue/Teal: #004F6E
   - Secondary Green: #00A859
   - Accent Sun Yellow/Orange: #F9A825
   ========================================================================== */



:root {
    /* Color Palette */
    --primary-color: #004F6E;       /* Deep Solar Teal/Blue */
    --primary-light: #00729E;       /* Light Solar Teal */
    --primary-dark: #00364C;        /* Dark Navy Blue */
    --secondary-color: #00A859;     /* Green Infra */
    --secondary-light: #8CC63F;     /* Lime Green Accent */
    --secondary-dark: #006837;      /* Rich Dark Green */
    --accent-color: #F9A825;         /* Sun Gold */
    --body-color: #4A5B64;          /* Soft Charcoal for Text */
    --heading-color: #1A2B32;       /* Near Black for Headings */
    --bg-light: #F4F8F6;            /* Eco Soft Light Gray/Green background */
    --bg-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 79, 110, 0.05);
    --shadow-md: 0 8px 20px rgba(0, 79, 110, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 79, 110, 0.12);
    --shadow-hover: 0 20px 45px rgba(0, 168, 89, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--body-color);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Section Header Styles */
.section-padding {
    padding: 100px 0;
}

.bg-light-sec {
    background-color: var(--bg-light);
}

.section-title-wrap {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(0, 168, 89, 0.08);
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
}

.section-title span {
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin: 15px auto 0;
}

.section-title-wrap.text-start .section-title::after {
    margin: 15px 0 0;
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */
.btn-custom {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white) !important;
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--bg-white) !important;
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-secondary-custom:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    transform: translateY(-2px);
}

.btn-white-custom {
    background: var(--bg-white);
    color: var(--primary-color) !important;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-white-custom:hover {
    background: var(--secondary-color);
    color: var(--bg-white) !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-info a {
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-info a:hover {
    color: var(--secondary-light);
}

.top-bar-socials a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 15px;
    font-size: 0.9rem;
}

.top-bar-socials a:hover {
    color: var(--secondary-light);
}

.navbar {
    padding: 15px 0;
    transition: var(--transition-base);
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
}

.navbar.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 79, 110, 0.1);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar-brand img {
    max-height: 55px;
    transition: var(--transition-base);
}

.navbar.sticky-nav .navbar-brand img {
    max-height: 48px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--heading-color) !important;
    padding: 10px 15px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 2px;
    left: 15px;
    background: var(--secondary-color);
    transition: var(--transition-base);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ==========================================================================
   Hero Banner Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 180px 0 140px;
    background: linear-gradient(135deg, rgba(0, 79, 110, 0.95), rgba(0, 104, 55, 0.9)), url('../images/logo.png') center/contain no-repeat;
    background-attachment: scroll;
    color: var(--bg-white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(249, 168, 37, 0.15) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

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

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--bg-white);
}

.hero-title span {
    color: var(--secondary-light);
    background: linear-gradient(90deg, #FFFFFF, var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Hero Badge */
.hero-badge-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-badge-logo {
    max-height: 120px;
    background-color: var(--bg-white);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.hero-badge-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 5px;
}

.hero-badge-sub {
    font-size: 0.9rem;
    color: var(--secondary-light);
    font-weight: 600;
}

/* ==========================================================================
   About Section & Badges
   ========================================================================== */
.about-image-wrap {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.about-image-main {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 180px;
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--heading-color);
}

.about-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ==========================================================================
   Services Section (Modern Cards)
   ========================================================================== */
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 79, 110, 0.05);
    height: 100%;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 79, 110, 0.06);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition-base);
}

.service-card:hover .service-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    transition: var(--transition-base);
}

.service-card:hover h3 {
    color: var(--bg-white);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    transition: var(--transition-base);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card:hover .service-link {
    color: var(--accent-color);
}

.service-link i {
    font-size: 0.8rem;
    transition: var(--transition-base);
}

.service-link:hover i,
.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.feature-box {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 79, 110, 0.04);
    height: 100%;
    transition: var(--transition-base);
    text-align: center;
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-top: 4px solid var(--secondary-color);
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background-color: rgba(0, 168, 89, 0.08);
    color: var(--secondary-color);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-base);
}

.feature-box:hover .feature-icon-wrap {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: rotate(360deg);
}

.feature-box h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Solar Benefits Overlay */
.benefit-card {
    background: linear-gradient(135deg, #ffffff, #f7faf8);
    border: 1px solid rgba(0, 168, 89, 0.1);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    height: 100%;
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.benefit-content h5 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.benefit-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Installation Process Timeline
   ========================================================================== */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--secondary-light));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

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

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-badge {
    position: absolute;
    top: 25px;
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.timeline-item:nth-child(odd) .timeline-badge {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -20px;
}

.timeline-item:hover .timeline-badge {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: scale(1.15);
}

.timeline-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 79, 110, 0.05);
    transition: var(--transition-base);
}

.timeline-item:hover .timeline-card {
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.timeline-item:nth-child(odd):hover .timeline-card {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.timeline-step {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.timeline-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.timeline-card p {
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Industries We Serve
   ========================================================================== */
.industry-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 79, 110, 0.04);
    height: 100%;
    transition: var(--transition-base);
    text-align: center;
    padding: 30px 20px;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid var(--secondary-color);
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.industry-card:hover .industry-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.industry-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Projects Section (Gallery)
   ========================================================================== */
.project-filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 50px;
    background: var(--bg-light);
    color: var(--body-color);
    border: none;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
}

.project-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 79, 110, 0.05);
    height: 100%;
    transition: var(--transition-slow);
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.project-img-wrap {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.project-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-img {
    transform: scale(1.1) rotate(1deg);
    opacity: 0.85;
}

.project-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-capacity {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 79, 110, 0.9);
    backdrop-filter: blur(5px);
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
}

.project-body {
    padding: 25px;
}

.project-location {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.project-body h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-top: 1px solid rgba(0, 79, 110, 0.08);
    padding-top: 15px;
    color: rgba(74, 91, 100, 0.8);
}

/* ==========================================================================
   Statistics Banner
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 90%, rgba(0, 168, 89, 0.15) 0%, rgba(0, 0, 0, 0) 50%);
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-icon {
    font-size: 2.8rem;
    color: var(--secondary-light);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 5px;
    color: var(--bg-white);
}

.stat-title {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Testimonial Cards
   ========================================================================== */
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 79, 110, 0.04);
    position: relative;
    height: 100%;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(0, 168, 89, 0.08);
    position: absolute;
    top: 20px;
    right: 30px;
}

.stars-rating {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 79, 110, 0.06);
    padding-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.client-details h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.client-details span {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* ==========================================================================
   FAQ Section (Accordion overrides)
   ========================================================================== */
.faq-accordion .accordion-item {
    border: 1px solid rgba(0, 79, 110, 0.08);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--heading-color);
    font-size: 1.05rem;
    padding: 20px 25px;
    transition: var(--transition-base);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(0, 79, 110, 0.03);
    color: var(--primary-color);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-size: 1rem;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 79, 110, 0.1);
}

.faq-accordion .accordion-body {
    padding: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
    background-color: var(--bg-white);
    border-top: 1px solid rgba(0, 79, 110, 0.05);
}

/* ==========================================================================
   Call To Action (CTA) Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 79, 110, 0.95), rgba(0, 104, 55, 0.9)), url('../images/logo.png') center/contain no-repeat;
    background-attachment: fixed;
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 35px;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ==========================================================================
   Contact Page & Form Elements
   ========================================================================== */
.contact-info-wrap {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 79, 110, 0.05);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 168, 89, 0.08);
    color: var(--secondary-color);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-info-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-info-content a {
    color: var(--body-color);
}

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

.map-placeholder {
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 79, 110, 0.05);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Form Styling */
.form-wrap {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 79, 110, 0.05);
}

.form-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.form-control-custom {
    font-family: var(--font-body);
    width: 100%;
    padding: 12px 18px;
    font-size: 0.95rem;
    border: 1.5px solid rgba(0, 79, 110, 0.1);
    border-radius: var(--radius-sm);
    background-color: var(--bg-light);
    color: var(--heading-color);
    transition: var(--transition-base);
}

.form-control-custom:focus {
    background-color: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.15);
    outline: none;
}

.form-control-custom::placeholder {
    color: rgba(74, 91, 100, 0.5);
}

.error-feedback {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

/* ==========================================================================
   About Page Specific Styling
   ========================================================================== */
.strength-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
    height: 100%;
}

.strength-card h4 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.strength-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.vision-mission-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 168, 89, 0.08);
    height: 100%;
    position: relative;
}

.vision-mission-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.vm-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vision-mission-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.vision-mission-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-top {
    background-color: #0f1c21;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 50px;
    font-size: 0.92rem;
}

.footer-logo {
    background-color: var(--bg-white);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
    display: inline-block;
}

.footer-logo img {
    max-height: 38px;
    width: auto;
    display: block;
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition-base);
}

.footer-social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.footer-widget-title {
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.75rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--secondary-light);
    padding-left: 5px;
}

.footer-links a:hover i {
    color: var(--secondary-color);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact-info li i {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 5px;
}

.footer-contact-info li span {
    line-height: 1.5;
}

.footer-contact-info li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info li a:hover {
    color: var(--secondary-light);
}

.footer-bottom {
    background-color: #0b1418;
    color: rgba(255, 255, 255, 0.5);
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-bottom-links li {
    display: inline-block;
    margin: 0;
}

.footer-bottom-links a,
.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0;
    transition: var(--transition-base);
}

.footer-bottom-links a:hover,
.footer-bottom-links li a:hover {
    color: var(--bg-white);
}

/* ==========================================================================
   Floating Quick Action Widgets
   ========================================================================== */
.quick-action-panel {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-base);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    color: var(--bg-white);
}

.floating-whatsapp {
    background-color: #25D366;
}

.floating-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-phone {
    background-color: var(--primary-color);
}

.floating-phone:hover {
    box-shadow: 0 6px 20px rgba(0, 79, 110, 0.4);
}

.floating-quote {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.floating-quote:hover {
    box-shadow: 0 6px 20px rgba(0, 168, 89, 0.4);
}

.floating-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 65px;
    background-color: var(--primary-dark);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.floating-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--heading-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 0.8;
    visibility: visible;
}

.back-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

/* ==========================================================================
   Thank You Page Styling
   ========================================================================== */
.thank-you-box {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 79, 110, 0.05);
    max-width: 600px;
    margin: 80px auto;
}

.thank-you-icon {
    font-size: 4.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    animation: scaleCheck 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleCheck {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.thank-you-box h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thank-you-box p {
    font-size: 1.05rem;
    margin-bottom: 35px;
    color: var(--body-color);
}

/* ==========================================================================
   Form Submit Button Overrides
   ========================================================================== */
.contact-page-form button[type="submit"],
.wpcf7-form input[type="submit"],
.wpcf7 input[type="submit"],
.wpcf7-submit,
input.wpcf7-submit[type="submit"] {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-family: var(--font-heading) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition-base) !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: auto !important;
}

.contact-page-form button[type="submit"]:hover,
.wpcf7-form input[type="submit"]:hover,
.wpcf7 input[type="submit"]:hover,
.wpcf7-submit:hover,
input.wpcf7-submit[type="submit"]:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    box-shadow: var(--shadow-hover) !important;
    transform: translateY(-2px) !important;
}
