/* ========================================
   Dr. Sakshi Raj Website - Styles
   ======================================== */

/* CSS Variables - Easy Theme Customization */
:root {
    /* Gold Color Palette */
    --gold-1: #D4AF37;
    --gold-2: #B8860B;
    --gold-3: #FFDF80;
    --accent: #ffd966;
    
    /* Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f0f0f0;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6c757d;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Dark Theme */
body.dark-theme {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    --border-color: #333333;
    --shadow: rgba(255, 255, 255, 0.05);
    --shadow-hover: rgba(255, 255, 255, 0.1);
}

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

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

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

body.no-scroll {
    overflow: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--gold-1);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gold-1);
}

.btn-secondary:hover {
    background: var(--gold-1);
    color: #ffffff;
}

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

.btn-outline:hover {
    background: var(--bg-tertiary);
    border-color: var(--gold-1);
    color: var(--gold-1);
}

.btn-service {
    width: 100%;
    margin-top: 15px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold-1);
}

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

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-link:hover {
    color: var(--gold-1);
}

.contact-link i {
    color: var(--gold-1);
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--gold-1);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--gold-1);
    color: #ffffff;
    transform: rotate(180deg);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-1);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Quick Contact FAB */
.quick-contact-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.fab-btn:hover {
    transform: scale(1.1) rotate(90deg);
}

.fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.quick-contact-fab:hover .fab-menu {
    opacity: 1;
    visibility: visible;
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-primary);
    border-radius: 50px;
    box-shadow: 0 2px 10px var(--shadow);
    color: var(--text-primary);
    white-space: nowrap;
}

.fab-item:hover {
    background: var(--gold-1);
    color: #ffffff;
    transform: translateX(-5px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8), rgba(212, 175, 55, 0.3));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
    color: #ffffff;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold-3);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 3;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--gold-1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.dot.active {
    background: var(--gold-1);
    width: 40px;
    border-radius: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    background: var(--bg-secondary);
}

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

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--gold-1);
    border-radius: 20px;
    z-index: -1;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-details h3 {
    color: var(--gold-1);
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-details p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Services Section */
.services-grid,
.consultation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.consultation-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-card,
.consultation-card {
    background: var(--bg-primary);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover,
.consultation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--gold-1);
}

.service-card.featured,
.consultation-card.featured {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: #ffffff;
}

.featured-badge,
.consultation-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon,
.consultation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}

.service-card.featured .service-icon,
.consultation-card.featured .consultation-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-title,
.consultation-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card.featured .service-title,
.consultation-card.featured .consultation-title {
    color: #ffffff;
}

.service-description,
.consultation-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card.featured .service-description,
.consultation-card.featured .consultation-description {
    color: rgba(255, 255, 255, 0.9);
}

.consultation-features {
    list-style: none;
    text-align: left;
    margin: 25px 0;
    padding: 0 20px;
}

.consultation-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.consultation-card.featured .consultation-features li {
    color: rgba(255, 255, 255, 0.95);
}

.consultation-features i {
    color: var(--gold-1);
    font-size: 1rem;
    flex-shrink: 0;
}

.consultation-card.featured .consultation-features i {
    color: rgba(255, 255, 255, 0.9);
}

.service-price,
.consultation-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-1);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.service-card.featured .service-price,
.consultation-card.featured .consultation-price {
    color: #ffffff;
}

.btn-consultation {
    width: 100%;
    margin-top: 15px;
}

/* eReports Section */
.ereports {
    background: var(--bg-secondary);
}

.ereports-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.ereports-features {
    list-style: none;
    margin: 30px 0;
}

.ereports-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.ereports-features i {
    color: var(--gold-1);
    font-size: 1.2rem;
}

.ereports-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.ereports-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.report-preview {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.report-preview i {
    font-size: 5rem;
    margin-bottom: 20px;
}

.report-preview span {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Calculator Section */
.calculator {
    background: var(--bg-secondary);
}

.calculator-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow);
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--gold-1);
    margin-bottom: 10px;
}

.calculator-header p {
    color: var(--text-secondary);
}

.calculator-input {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calculator-input label {
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-1);
}

.calculator-result {
    margin-top: 30px;
    text-align: center;
}

.result-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.result-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.result-value {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.result-description {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.course-card {
    background: var(--bg-primary);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--gold-1);
}

.course-card.featured {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: #ffffff;
}

.course-card.premium-bundle {
    grid-column: span 3;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 3px solid var(--gold-1);
    padding: 50px 40px;
}

.course-number {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-1);
    opacity: 0.15;
    font-family: var(--font-heading);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-1);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-badge.premium {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    padding: 8px 20px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.course-card.featured .course-badge {
    background: rgba(255, 255, 255, 0.2);
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    margin-top: 20px;
}

.course-card.featured h3,
.course-card.premium-bundle h3 {
    color: #ffffff;
}

.course-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 0;
}

.course-card.featured p,
.course-card.premium-bundle p {
    color: rgba(255, 255, 255, 0.9);
}

.course-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.course-highlights span {
    font-size: 0.9rem;
    color: var(--gold-1);
    font-weight: 500;
}

.course-card.featured .course-highlights span {
    color: rgba(255, 255, 255, 0.95);
}

.course-icon-large {
    text-align: center;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.premium-includes {
    margin: 25px 0;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid var(--gold-1);
}

.premium-includes h4 {
    color: var(--gold-1);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.premium-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.premium-list span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.course-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.course-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.course-card.featured .course-details span {
    color: rgba(255, 255, 255, 0.9);
}

.course-details i {
    color: var(--gold-1);
}

.course-card.featured .course-details i {
    color: #ffffff;
}

.course-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.premium-pricing {
    justify-content: center;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.offer-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-1);
    font-family: var(--font-heading);
}

.course-card.featured .offer-price,
.course-card.premium-bundle .offer-price {
    color: #ffffff;
}

.savings {
    width: 100%;
    text-align: center;
    color: var(--gold-1);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
}

.btn-premium {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* Events Gallery */
.events-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.event-item:hover img {
    transform: scale(1.1);
}

.event-overlay i {
    font-size: 3rem;
    color: #ffffff;
}

/* Testimonials */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 60px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: var(--bg-primary);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold-1);
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-1);
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

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

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--gold-1);
    color: #ffffff;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 2;
}

.testimonial-arrow:hover {
    background: var(--gold-2);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
    left: 10px;
}

.testimonial-next {
    right: 10px;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 25px;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.blog-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-1);
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 12px;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    color: #ffffff;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
}

.newsletter-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.newsletter-success i {
    font-size: 1.5rem;
}

/* Contact Section */
.contact-grid {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: var(--bg-primary);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.contact-info-card i {
    font-size: 3rem;
    color: var(--gold-1);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-info-card a:hover {
    color: var(--gold-1);
}

/* Footer */
.footer {
    background: var(--bg-tertiary);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--gold-1);
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-1);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-1);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.footer-bottom i {
    color: var(--gold-1);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-primary);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gold-1);
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-secondary);
}

/* Booking Form */
.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

select.form-control,
textarea.form-control {
    width: 100%;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-actions .btn {
    flex: 1;
}

.booking-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.booking-success.active {
    display: block;
}

.booking-success i {
    font-size: 4rem;
    color: var(--gold-1);
    margin-bottom: 20px;
}

.booking-success h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.booking-success p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--gold-1);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-arrow:hover {
    background: var(--gold-1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Print Styles for Reports */
@media print {
    .header, .footer, .quick-contact-fab, .modal, .lightbox {
        display: none !important;
    }
    
    body {
        background: #ffffff;
        color: #000000;
    }
    
    .ereports {
        page-break-before: always;
    }
}

/* About Us Page Styles */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

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

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb a {
    color: #ffffff;
    opacity: 0.9;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* About Detailed Section */
.about-detailed {
    padding: 100px 0;
}

.about-intro-section {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

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

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

.image-frame img {
    width: 100%;
    display: block;
}

.image-decoration-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--gold-1);
    border-radius: 20px;
    z-index: -1;
}

.image-decoration-2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.about-quote {
    margin-top: 30px;
    padding: 25px;
    background: var(--bg-secondary);
    border-left: 4px solid var(--gold-1);
    border-radius: 10px;
}

.about-quote i {
    font-size: 2rem;
    color: var(--gold-1);
    margin-bottom: 15px;
}

.about-quote p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
}

.cert-badge i {
    font-size: 1.2rem;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin: 30px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.expertise-item {
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.expertise-item:hover {
    border-color: var(--gold-1);
    transform: translateY(-5px);
}

.expertise-item i {
    font-size: 2.5rem;
    color: var(--gold-1);
    margin-bottom: 15px;
}

.expertise-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.expertise-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* My Story Section */
.my-story {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.story-text h3 {
    color: var(--gold-1);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.story-text h3:first-child {
    margin-top: 0;
}

.story-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-card {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-top: 3px solid var(--gold-1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.highlight-card h4 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.highlight-card ul {
    list-style: none;
    padding: 0;
}

.highlight-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.highlight-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-1);
    font-weight: 700;
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    flex-shrink: 0;
}

.philosophy-detail h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.philosophy-detail p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.philosophy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy-circle {
    position: relative;
    width: 350px;
    height: 350px;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.circle-center i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.circle-center span {
    font-size: 0.9rem;
    font-weight: 600;
}

.circle-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    transform-origin: 50% 50%;
    transform: rotate(calc(90deg * var(--i))) translateY(-150px) rotate(calc(-90deg * var(--i)));
}

.circle-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border: 3px solid var(--gold-1);
    border-radius: 50%;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 5px 20px var(--shadow);
}

/* Services Overview */
.services-overview {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-overview-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.service-overview-card i {
    font-size: 3.5rem;
    color: var(--gold-1);
    margin-bottom: 25px;
}

.service-overview-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.service-overview-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Mission Vision */
.mission-vision {
    padding: 100px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.mv-card {
    background: var(--bg-secondary);
    padding: 50px 40px;
    border-radius: 20px;
    border-top: 5px solid var(--gold-1);
    box-shadow: 0 10px 40px var(--shadow);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-cta-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

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

.cta-buttons .btn i {
    margin-right: 8px;
}

/* Contact Page Styles - New Design */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-main-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Form Side */
.contact-form-side {
    background: var(--bg-primary);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form-header {
    margin-bottom: 35px;
}

.contact-form-header h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-form-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

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

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

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: var(--transition);
    font-family: var(--font-body);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-1);
    background: var(--bg-primary);
}

.form-input::placeholder {
    color: var(--text-muted);
}

textarea.form-input {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.btn-submit span {
    flex: 1;
    text-align: center;
}

.form-success-message {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 2px solid var(--gold-1);
}

.form-success-message i {
    font-size: 3.5rem;
    color: var(--gold-1);
    margin-bottom: 15px;
}

.form-success-message p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Info Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-box {
    background: var(--bg-primary);
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-info-box h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-info-box > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info-items {
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-info-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: var(--gold-1);
    font-weight: 500;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.contact-social-section {
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.contact-social-section h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.contact-social-icons {
    display: flex;
    gap: 12px;
}

.contact-social-icons a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-choose-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-choose-card:hover {
    border-color: var(--gold-1);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ffffff;
}

.why-choose-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-choose-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.contact-cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

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

.btn-light {
    background: #ffffff;
    color: var(--gold-1);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-light:hover {
    background: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-light-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-light-outline:hover {
    background: #ffffff;
    color: var(--gold-1);
}

/* Responsive - Contact Page */
@media (max-width: 1200px) {
    .contact-main-grid {
        gap: 40px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-side {
        padding: 35px 25px;
    }
    
    .contact-form-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info-box {
        padding: 30px 20px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-cta-buttons .btn-light,
    .contact-cta-buttons .btn-light-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Old Contact Page Styles - Remove/Replace */
.contact-page-info,
.contact-cards-grid,
.contact-form-section,
.faq-section {
    display: none;
}

/* Responsive for Contact & FAQ */

/* Responsive for About Page */
@media (max-width: 1024px) {
    .about-intro-section,
    .story-content,
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-circle {
        width: 280px;
        height: 280px;
    }
    
    .circle-center {
        width: 120px;
        height: 120px;
    }
    
    .circle-item {
        width: 80px;
        height: 80px;
        margin: -40px 0 0 -40px;
    }
    
    .services-overview-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .services-grid,
    .courses-grid,
    .blog-grid,
    .consultation-grid,
    .courses-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .course-card.premium-bundle {
        grid-column: span 2;
    }
    
    .premium-list {
        grid-template-columns: 1fr;
    }
    
    .events-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .section-title { font-size: 2rem; }
    
    /* Header */
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }
    
    .contact-info {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero */
    .hero {
        height: auto;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-decoration {
        width: 150px;
        height: 150px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Services & Courses */
    .services-grid,
    .courses-grid,
    .blog-grid,
    .consultation-grid,
    .courses-grid-full {
        grid-template-columns: 1fr;
    }
    
    .course-card.premium-bundle {
        grid-column: span 1;
    }
    
    .premium-list {
        grid-template-columns: 1fr;
    }
    
    /* eReports */
    .ereports-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Events */
    .events-gallery {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials-slider {
        padding: 20px 50px;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }
    
    /* Contact */
    .contact-info-section {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Newsletter */
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    /* Quick Contact */
    .quick-contact-fab {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Lightbox */
    .lightbox-arrow {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Focus Styles for Accessibility */
*:focus-visible {
    outline: 3px solid var(--gold-1);
    outline-offset: 3px;
}

/* Smooth Scroll Behavior */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



#updated {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: #ffffff;
}

#updated1 {
    background:#1e453e;
    border-radius: 10px;
    border: 1px solid var(linear-gradient);

}

#savingupdated {
    color: #ffffff;
}



/* ALTERNATIVE HAMBURGER - Font Awesome Icons Use Karo */
.hamburger {
    display: none;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border: none;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.hamburger i {
    color: #fff;
    font-size: 20px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}