/* --------------------------------------------------
   A.K. & ASSOCIATES - PREMIUM LEGAL & TAX ADVOCATES
   Core Stylesheet - css/style.css
-------------------------------------------------- */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Custom Properties / Design System */
:root {
    /* Color Palette */
    --primary-color: #0b1c3a;       /* Deep Imperial Navy */
    --primary-light: #152b54;       /* Lighter Navy */
    --primary-dark: #060e1d;        /* Deepest Navy */
    --secondary-color: #c5a880;     /* Champagne Gold */
    --secondary-hover: #a3875f;     /* Darker Gold */
    --accent-color: #d4af37;        /* Pure Metallic Gold */
    --text-dark: #1e2229;           /* Charcoal Body */
    --text-muted: #6b7280;          /* Gray text */
    --text-light: #ffffff;          /* White text */
    --bg-light: #f6f9fc;            /* Ice white background */
    --bg-white: #ffffff;
    --border-color: #e5e9f0;
    --success: #10b981;
    --error: #ef4444;

    /* Fonts */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(11, 28, 58, 0.05), 0 8px 10px -6px rgba(11, 28, 58, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(11, 28, 58, 0.1), 0 15px 15px -10px rgba(11, 28, 58, 0.05);
    --shadow-gold: 0 10px 30px rgba(197, 168, 128, 0.25);
    
    /* Layout Constants */
    --container-width: 1200px;
    --header-height: 85px;
    --header-top-height: 40px;
}

/* Reset and Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

/* Utility Components */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

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

.section-title-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Header Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.top-bar-contact {
    display: flex;
    gap: 25px;
}

.top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
}

.top-bar-contact a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

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

.top-bar-social a {
    opacity: 0.8;
}

.top-bar-social a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Header Navigation */
.main-header {
    background-color: var(--bg-white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 75px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.logo-text {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    display: block;
    margin-top: -4px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
    position: relative;
    padding: 8px 0;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

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

.hero-badge {
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    border: 1px solid rgba(197, 168, 128, 0.25);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Quick Inquiry Box */
.quick-inquiry-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.inquiry-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.inquiry-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 4px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.form-select option {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.form-submit-btn {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.form-submit-btn:hover {
    background-color: var(--secondary-hover);
    color: var(--text-light);
    box-shadow: var(--shadow-gold);
}

/* Services Overview */
.services-section {
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 6px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    color: var(--text-light);
}

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

.service-card:hover::before {
    background-color: var(--secondary-color);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--text-light);
}

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

.service-card:hover .service-card-title {
    color: var(--secondary-color);
}

.service-card-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-learn-more {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card:hover .service-learn-more {
    color: var(--secondary-color);
}

/* Why Choose Us Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-images {
    position: relative;
    padding-bottom: 40px;
}

.main-image {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--bg-light);
    z-index: 1;
    position: relative;
}

.accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 30px 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--secondary-color);
    z-index: 2;
}

.accent-box-num {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1;
}

.accent-box-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
}

.feature-list {
    margin-top: 35px;
}

.feature-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.feature-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    position: relative;
    padding: 80px 0;
    text-align: center;
}

.cta-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--text-light);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(197, 168, 128, 0.25);
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.client-company {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

/* Footer Section */
.main-footer {
    background-color: #0d1117;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    font-size: 0.92rem;
    border-top: 4px solid var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-widget-title {
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-about-logo {
    margin-bottom: 20px;
}

.footer-about-logo .logo-text {
    color: var(--text-light);
    font-size: 1.4rem;
}

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

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

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

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

.footer-contact-icon {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact-text span {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 2px;
}

/* Bar Council of India Disclaimer text */
.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
    font-size: 0.78rem;
    text-align: justify;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
    background-color: #080b0f;
    padding: 20px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

/* BCI Disclaimer Modal */
.disclaimer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 14, 29, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.disclaimer-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.disclaimer-box {
    background-color: var(--bg-white);
    max-width: 650px;
    width: 90%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-top: 6px solid var(--secondary-color);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px;
}

.disclaimer-modal.active .disclaimer-box {
    transform: translateY(0);
}

.disclaimer-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.disclaimer-title i {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.disclaimer-content {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.7;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 15px;
    text-align: justify;
}

.disclaimer-content p {
    color: var(--text-dark);
    margin-bottom: 12px;
}

.disclaimer-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-disagree {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-disagree:hover {
    background-color: var(--border-color);
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(rgba(11, 28, 58, 0.85), rgba(11, 28, 58, 0.95)), url('../images/legal-bg.jpg') no-repeat center center / cover;
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.inner-hero-title {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content-highlight {
    font-family: var(--font-title);
    font-size: 1.35rem;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 25px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
}

.intro-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.intro-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.intro-img {
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.intro-img-accent {
    grid-column: span 2;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 30px;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 25px;
}

.intro-img-accent-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.intro-img-accent-text h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.intro-img-accent-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Values Grid */
.values-section {
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 25px;
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: var(--bg-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

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

.team-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.team-img-placeholder {
    font-size: 5rem;
    opacity: 0.5;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.team-designation {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-credentials {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Services Page Specific Styles */
.services-tabs-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    margin-top: 40px;
}

.services-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-tab-btn {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 18px 25px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.services-tab-btn i {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.services-tab-btn:hover {
    background-color: rgba(197, 168, 128, 0.05);
    border-color: var(--secondary-color);
}

.services-tab-btn.active {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.services-tab-btn.active i {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.services-tab-content-wrap {
    background-color: var(--bg-white);
}

.services-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.services-tab-panel.active {
    display: block;
}

.panel-header {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 20px;
}

.panel-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.panel-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

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

.detailed-service-card {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 30px;
    background-color: var(--bg-white);
    transition: var(--transition-smooth);
}

.detailed-service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.detailed-card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.detailed-card-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bullet-list {
    margin-top: 15px;
}

.bullet-list li {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    align-items: flex-start;
    color: var(--text-dark);
}

.bullet-list i {
    color: var(--success);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Contact Page Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-panel {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 50px 40px;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--secondary-color);
}

.contact-panel-title {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-panel-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.contact-details-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-text span {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-detail-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.98rem;
}

.contact-detail-text a:hover {
    color: var(--secondary-color);
}

.contact-form-panel {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.contact-form-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.contact-form-desc {
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-grid .form-group:nth-child(5),
.contact-form-grid .form-group:nth-child(6) {
    grid-column: span 2;
}

.contact-form-panel .form-label {
    color: var(--text-dark);
}

.contact-form-panel .form-input,
.contact-form-panel .form-select,
.contact-form-panel .form-textarea {
    background: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-dark);
}

.contact-form-panel .form-input:focus,
.contact-form-panel .form-select:focus,
.contact-form-panel .form-textarea:focus {
    border-color: var(--secondary-color);
    background: var(--bg-white);
}

.contact-form-panel .form-select option {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.form-response-msg {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.92rem;
    font-weight: 500;
    display: none;
}

.form-response-msg.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: block;
}

.form-response-msg.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}

/* Map Section */
.map-section {
    padding-top: 0;
}

.map-container {
    height: 450px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

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

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Drawer Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 14, 29, 0.5);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quick-inquiry-box {
        max-width: 550px;
        margin: 0 auto;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-tabs-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .services-tab-btn {
        flex-shrink: 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-header {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px;
        gap: 20px;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 101;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--text-light);
        font-size: 1.1rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 12px;
    }

    .nav-menu .nav-cta {
        margin-top: 20px;
        width: 100%;
    }

    .nav-menu .nav-cta .btn {
        width: 100%;
    }

    .mobile-nav-toggle {
        display: block;
        z-index: 102;
    }

    .mobile-nav-toggle.active {
        color: var(--text-light);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-grid .form-group:nth-child(5),
    .contact-form-grid .form-group:nth-child(6) {
        grid-column: span 1;
    }

    .contact-form-panel {
        padding: 30px 20px;
    }

    .testimonial-slide {
        padding: 30px 20px;
    }
}
