@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #70005C;
    --primary-rgb: 112, 0, 92;
    --primary-light: #fbeff9;
    --secondary: #9D2B8A;
    --accent: #C59B27;
    --accent-hover: #d9ad32;
    --text-dark: #2B1027;
    --text-light: #FAF7F9;
    --text-muted: #7E6079;
    --bg-light: #FAF7F9;
    --bg-white: #ffffff;
    --bg-dark: #1F0219;
    --card-border: rgba(112, 0, 92, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(112, 0, 92, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(112, 0, 92, 0.08), 0 4px 6px -2px rgba(112, 0, 92, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(112, 0, 92, 0.12), 0 10px 10px -5px rgba(112, 0, 92, 0.04);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(250, 247, 249, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(112, 0, 92, 0.05);
}

header.scrolled {
    background: rgba(112, 0, 92, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled .logo-text,
header.scrolled nav a {
    color: var(--text-light);
}

header.scrolled nav a.active {
    color: var(--accent);
}

header.scrolled nav a::after {
    background-color: var(--accent);
}

header.scrolled .contact-btn {
    background: var(--accent);
    color: var(--bg-dark);
}

header.scrolled .contact-btn:hover {
    background: var(--text-light);
    color: var(--primary);
}

header.scrolled .mobile-menu-toggle span {
    background-color: var(--text-light);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .nav-wrapper {
    height: 70px;
}

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

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

header.scrolled .logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary);
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

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

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

nav a.active {
    color: var(--primary);
    font-weight: 600;
}

.contact-btn {
    background: var(--primary);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.contact-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1010;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    max-width: 650px;
    color: var(--text-light);
}

.slide-tagline {
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
    font-size: 0.9rem;
}

.slide-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-light);
}

.slide-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 550px;
}

.slide-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Animations for Slide Elements on Active */
.slide .slide-tagline,
.slide .slide-title,
.slide .slide-desc,
.slide .slide-ctas {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .slide-tagline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.slide.active .slide-ctas {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(31, 2, 25, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-light);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    border: 2px solid var(--primary);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(250, 247, 249, 0.4);
}

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

/* Page Header (Subpages) */
.page-header {
    position: relative;
    padding: 160px 0 80px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.breadcrumb span {
    color: var(--accent);
}

/* Section Title */
.section-title-wrapper {
    margin-bottom: 60px;
    text-align: center;
}

.section-tag {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(112, 0, 92, 0.15);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1.75rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
    color: var(--text-light);
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-card.has-image {
    padding: 0;
}

.feature-card-img-wrapper {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.feature-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-card-img {
    transform: scale(1.06);
}

.feature-card-body {
    padding: 32px 24px;
}

/* Services Page & Detail Tabs */
.services-tabs-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    margin-top: 40px;
}

.services-tab-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-tab-btn {
    padding: 16px 24px;
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
}

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

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

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

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

.services-tab-content {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
}

.service-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.service-panel.active {
    display: block;
}

.service-panel-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.service-panel-title {
    font-size: 2.2rem;
    color: var(--primary);
}

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

.service-subservices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.subservice-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(112, 0, 92, 0.05);
    transition: var(--transition-smooth);
}

.subservice-card:hover {
    transform: translateY(-4px);
    background: var(--bg-white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

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

.subservice-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-image {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
}

/* About Us Section styling */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
}

.about-image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 20px;
    top: 20px;
    left: -20px;
    z-index: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background: var(--bg-white);
    padding: 24px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--card-border);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Gallery styling */
.gallery-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--card-border);
    background: var(--bg-white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

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

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--card-border);
    transition: var(--transition-smooth);
    animation: fadeIn 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(112, 0, 92, 0.9) 0%, rgba(112, 0, 92, 0.2) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--text-light);
}

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

.gallery-category {
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.gallery-title {
    font-size: 1.15rem;
    font-weight: 600;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 2, 25, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-caption {
    color: var(--text-light);
    margin-top: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--accent);
}

/* Contact Us Grid & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background: var(--primary);
    color: var(--text-light);
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-info-card h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact-info-card p {
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-detail-content h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-detail-content p,
.contact-detail-content a {
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-detail-content a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Contact Form styling */
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-form-wrapper p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    background-color: var(--bg-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(112, 0, 92, 0.1);
}

.form-error {
    color: #e11d48;
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

.form-control.invalid {
    border-color: #e11d48;
}

.form-control.invalid:focus {
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.submit-btn {
    width: 100%;
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

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

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-success-msg {
    display: none;
    background-color: #d1fae5;
    color: #065f46;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    border: 1px solid #a7f3d0;
}

/* Map placeholder */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
    margin-top: 60px;
}

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

/* Footer Section */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-about p {
    opacity: 0.8;
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-contact-item a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Mobile Quick Action Buttons & Sticky Bar */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: none; /* Only visible on mobile/tablets */
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(112, 0, 92, 0.08);
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
    height: 100%;
    transition: var(--transition-smooth);
}

.action-btn.call-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

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

.action-btn:active {
    filter: brightness(0.9);
}

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

/* Alternating Services Rows */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-row.reverse {
    grid-template-columns: 1.1fr 1fr;
}

.service-row-img-wrapper {
    position: relative;
}

.service-row-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 2;
    position: relative;
}

.service-row-img:hover {
    transform: scale(1.02);
}

.service-row-img-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 20px;
    top: 20px;
    left: -20px;
    z-index: 1;
}

.service-row.reverse .service-row-img-decoration {
    left: 20px;
}

.service-row-content {
    padding: 20px 0;
}

.service-row-content h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-row-content .service-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.service-row-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.service-bullet-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-bullet-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.service-bullet-list li::before {
    content: '\f00c'; /* Check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 1024px) {
    .services-tabs-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .services-tab-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .services-tab-btn {
        flex-shrink: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: var(--transition-smooth);
        z-index: 999;
        box-shadow: var(--shadow-lg);
    }
    
    nav.active {
        left: 0;
    }
    
    nav a {
        font-size: 1.2rem;
    }
    
    .contact-btn {
        display: none; /* Let them use navigation links or mobile quick actions */
    }
    
    nav .contact-btn-mobile {
        display: inline-block;
        background: var(--primary);
        color: var(--text-light);
        padding: 12px 32px;
        border-radius: 30px;
        font-weight: 600;
        margin-top: 12px;
    }
    
    .about-split,
    .contact-grid,
    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-row.reverse .service-row-img-wrapper {
        order: 0;
    }
    
    .service-row-img {
        height: 280px;
    }
    
    .service-row-img-decoration,
    .about-image-decoration {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Make space for sticky mobile bottom bar */
    body {
        padding-bottom: 65px;
    }
    
    .mobile-action-bar {
        display: grid;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Alternating Services Layout Fix (Desktop Only) */
@media (min-width: 769px) {
    .service-row.reverse .service-row-img-wrapper {
        grid-column: 2;
    }
    .service-row.reverse .service-row-content {
        grid-column: 1;
        grid-row: 1;
    }
}

/* Loan EMI Calculator Section */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
    margin-top: 40px;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.calculator-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calculator-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calculator-label-row label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.value-display {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    background-color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(112, 0, 92, 0.1);
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e6dee4;
    outline: none;
    transition: background 0.3s;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(112, 0, 92, 0.15);
    transition: transform 0.1s, background-color 0.3s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: var(--secondary);
    box-shadow: 0 0 0 6px rgba(112, 0, 92, 0.25);
}

.range-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 4px rgba(112, 0, 92, 0.15);
    transition: transform 0.1s, background-color 0.3s;
}

.range-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    background: var(--secondary);
    box-shadow: 0 0 0 6px rgba(112, 0, 92, 0.25);
}

.range-bounds {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.calculator-results {
    background: linear-gradient(145deg, var(--bg-dark) 0%, #3a0030 100%);
    color: var(--text-light);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.results-main {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.results-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.emi-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

.results-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    opacity: 0.9;
}

.breakdown-item.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    margin-top: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    opacity: 1;
}

.breakdown-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.breakdown-item.total .breakdown-value {
    color: var(--accent);
}

.breakdown-bar-wrapper {
    margin-bottom: 32px;
}

.breakdown-bar {
    display: flex;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
}

.bar-segment {
    height: 100%;
    transition: width 0.4s ease;
}

.bar-segment.principal {
    background-color: var(--accent);
}

.bar-segment.interest {
    background-color: var(--secondary);
}

.breakdown-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 0.85rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.principal {
    background-color: var(--accent);
}

.legend-dot.interest {
    background-color: var(--secondary);
}

.calculator-results .cta-btn {
    width: 100%;
    margin-top: auto;
    background: var(--accent);
    color: var(--bg-dark);
}

.calculator-results .cta-btn:hover {
    background: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Calculator Responsive Overrides */
@media (max-width: 1024px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .emi-amount {
        font-size: 2.2rem;
    }
    
    .calculator-results {
        padding: 24px 16px;
    }
}

/* HR Sectors We Serve */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.sector-card {
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    padding: 20px 16px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.sector-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.sector-card i {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
    min-height: 1.8rem;
    line-height: 1;
    transition: var(--transition-smooth);
}

.sector-card:hover i {
    transform: scale(1.1);
}

.sector-card span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Infinite Marquee Sectors Slider */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    padding: 10px 0;
}

.marquee-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

/* Pause scroll on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    border: 1px solid var(--card-border);
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.marquee-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.marquee-item i {
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    min-width: 1.3rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.marquee-item:hover i {
    transform: scale(1.1);
}

.marquee-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Since list of 6 items is duplicated once, shift exactly by half of content width (with gap adjustment) */
        transform: translateX(calc(-50% - 12px));
    }
}


