/* ===== CSS RESET & VARIABLES ===== */
:root {
    /* Color Palette - Premium & Rich */
    --primary-dark: #1A1F2C;
    --primary-light: #2A3142;
    --accent-gold: #D4AF37;
    --accent-teal: #2A9D8F;
    --accent-coral: #E76F51;
    --light-cream: #F8F5F0;
    --light-gray: #E8E6E1;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F7EF8A 100%);
    --gradient-dark: linear-gradient(135deg, #1A1F2C 0%, #2A3142 100%);
    --gradient-teal: linear-gradient(135deg, #2A9D8F 0%, #76C7C0 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 31, 44, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 31, 44, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 31, 44, 0.16);
    --shadow-xl: 0 16px 48px rgba(26, 31, 44, 0.20);
    
    /* Borders */
    --border-light: 1px solid var(--light-gray);
    --border-gold: 2px solid var(--accent-gold);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}
.gujarati {
    font-family: 'Noto Sans Gujarati', sans-serif;
}
h1, h2, h3, h4, h5, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}
.announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.announcement-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}
.announcement-text i {
    color: var(--accent-gold);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.emergency-call {
    background: var(--accent-coral);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.emergency-call:hover {
    background: #D65C3E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== MASTHEAD ===== */
.masthead {
    background: var(--white);
    padding: 10px 0;
    border-bottom: var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}
.masthead-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo-symbol {
    display: flex;
    align-items: center;
    gap: 15px;
}
/*.symbol-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: var(--shadow-md);
}*/
.symbol-text .logo-main {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 4px;
    font-weight: 800;
}
.symbol-text .logo-sub {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 600;
    font-family: 'Noto Sans Gujarati', sans-serif;
}
.logo-certificate .cert-badge {
    background: var(--light-cream);
    color: var(--accent-gold);
    padding: 6px 15px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--accent-gold);
}
.contact-area {
    display: flex;
    justify-content: center;
}
.contact-info {
    /*display: flex;*/
    gap: 30px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--light-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 18px;
}
.contact-detail h4 {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-detail p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}
.cta-area .masthead-cta {
    background: var(--gradient-teal);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.masthead-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.cta-icon {
    font-size: 24px;
}
.cta-text {
    display: flex;
    flex-direction: column;
}
.cta-call {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}
.cta-number {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ===== NAVIGATION ===== */
.main-nav {
    background: var(--primary-dark);
    padding: 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
}
.nav-item {
    position: relative;
}
.nav-item a {
    color: var(--white);
    text-decoration: none;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-item a i:first-child {
    font-size: 18px;
}
.nav-item a .fa-chevron-down {
    font-size: 12px;
    margin-left: 5px;
}
.nav-item a:hover,
.nav-item.active a {
    background: var(--primary-light);
    color: var(--accent-gold);
}
.nav-item.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    border: var(--border-light);
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    color: var(--text-dark);
    padding: 15px 20px;
    display: block;
    border-bottom: var(--border-light);
}
.dropdown-menu a:hover {
    background: var(--light-cream);
    color: var(--accent-teal);
}
.dropdown-menu a:last-child {
    border-bottom: none;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-emergency {
    background: var(--accent-coral);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.nav-emergency:hover {
    background: #D65C3E;
    transform: translateY(-2px);
}
.mobile-toggle {
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/* ===== HERO ===== */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(248, 245, 240, 0.95) 0%, 
        rgba(232, 230, 225, 0.95) 100%),
        url('../images/hero-pattern.svg');
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(42, 157, 143, 0.05) 0%, 
        rgba(212, 175, 55, 0.05) 100%);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius-full);
    border: var(--border-gold);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}
.tag-icon {
    font-size: 20px;
}
.tag-text {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 14px;
    letter-spacing: 1px;
}
.hero-headline {
    font-size: 60px;
    margin-bottom: 25px;
    line-height: 1.1;
}
.headline-main {
    color: var(--primary-dark);
    display: block;
}
.headline-highlight {
    color: var(--accent-teal);
    display: block;
    position: relative;
}
.headline-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-gold);
    opacity: 0.3;
    z-index: -1;
}
.hero-subhead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}
.stat {
    text-align: center;
}
.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent-teal);
    margin-bottom: 5px;
    line-height: 1;
}
.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.btn {
    padding: 18px 35px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    min-height: 60px;
}
.btn-primary {
    background: var(--gradient-teal);
    color: var(--white);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
}
.btn-outline:hover {
    background: var(--accent-teal);
    color: var(--white);
    transform: translateY(-3px);
}
.btn-large {
    padding: 22px 45px;
    font-size: 18px;
}
.btn-block {
    width: 100%;
}
.hero-visual .visual-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
    padding: 30px;
}
.frame-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.2;
}
.frame-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    background: var(--light-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.image-placeholder {
    font-size: 100px;
    color: var(--accent-teal);
    opacity: 0.3;
}
.frame-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius-full);
    border: var(--border-light);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--accent-teal);
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 0;
    background: var(--white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: var(--border-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: left;
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-teal);
    font-size: 32px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--gradient-teal);
    color: var(--white);
}
.feature-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}
.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--light-cream);
}
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}
.section-subtitle {
    color: var(--accent-teal);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}
.section-title {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}
.section-description {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}
.services-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}
.service-main {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.service-visual {
    height: 300px;
    overflow: hidden;
}
.service-image {
    width: 100%;
    height: 100%;
    background: var(--gradient-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-content {
    padding: 40px;
}
.service-content h3 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}
.service-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 17px;
}
.service-list {
    list-style: none;
    margin-bottom: 30px;
}
.service-list li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}
.service-list li i {
    color: var(--accent-teal);
    font-size: 18px;
}
.services-minor {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.minor-service {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    border: var(--border-light);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}
.minor-service:hover {
    transform: translateX(10px);
    border-color: var(--accent-teal);
    box-shadow: var(--shadow-md);
}
.minor-service .service-icon {
    width: 60px;
    height: 60px;
    background: var(--light-cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    font-size: 24px;
    flex-shrink: 0;
}
.service-info h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 600;
}
.service-info p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* ===== PROCESS ===== */
.process {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-gold) 50%, 
        transparent 100%);
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--accent-teal) 0%, 
        var(--accent-gold) 100%);
    opacity: 0.2;
}
.timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
}
.timeline-step {
    margin-bottom: 25px;
    position: relative;
}
.step-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--light-cream);
    line-height: 1;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    font-family: 'Playfair Display', serif;
}
.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.timeline-item h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}
.timeline-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--light-cream);
}
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto 60px;
}
.testimonial-card {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    border: var(--border-gold);
}
.quote-mark {
    font-size: 100px;
    color: var(--accent-gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.testimonial-text {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}
.author-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    flex-shrink: 0;
}
.author-info h4 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}
.author-info p {
    color: var(--accent-teal);
    font-weight: 500;
}
.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}
.achievement {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: var(--border-light);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}
.achievement:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}
.achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}
.achievement-content h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 600;
}
.achievement-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* ===== CONSULTATION ===== */
.consultation {
    padding: 120px 0;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/dots-pattern.svg');
    opacity: 0.1;
}
.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.consultation-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}
.consultation-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}
.consultation-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}
.consult-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}
.consult-feature i {
    color: var(--accent-gold);
    font-size: 20px;
}
.contact-hotline {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hotline-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}
.hotline-info h4 {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 8px;
    font-weight: 500;
}
.hotline-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}
.hotline-number:hover {
    color: var(--accent-gold);
}
.consultation-form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}
.consultation-form h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}
.premium-form .form-group {
    margin-bottom: 25px;
}
.premium-form label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: 'Noto Sans Gujarati', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: var(--light-cream);
    color: var(--text-dark);
}
.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
    background: var(--white);
}
.premium-form textarea {
    resize: vertical;
    min-height: 100px;
}
.form-assurance {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.form-assurance i {
    color: var(--accent-teal);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
}
.footer-main {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
/*.footer-logo .logo-symbol {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}*/
.footer-logo .logo-text h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 700;
}
.footer-logo .logo-text p {
    color: var(--accent-gold);
    font-size: 14px;
    font-family: 'Noto Sans Gujarati', sans-serif;
}
.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}
.footer-social {
    display: flex;
    gap: 15px;
}
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--accent-teal);
    transform: translateY(-3px);
}
.social-link.whatsapp:hover {
    background: #25D366;
}
.footer-col h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}
.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}
.footer-links a::before {
    content: '›';
    color: var(--accent-teal);
    font-size: 18px;
}
.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    /*font-size: 14px;*/
    line-height: 1.6;
}
.contact-line i {
    color: var(--accent-gold);
    margin-top: 3px;
    flex-shrink: 0;
}
.contact-line a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}
.contact-line a:hover {
    color: var(--accent-gold);
}
.emergency-footer {
    margin-top: 30px;
}
.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-coral);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.emergency-btn:hover {
    background: #D65C3E;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
}
.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 5px;
}
.reg-info {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}
.footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
}
.badge i {
    color: var(--accent-gold);
}

/* ===== WHATSAPP FLOATER ===== */
.whatsapp-floater {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-full);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    z-index: 1000;
}
.whatsapp-floater:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}
.floater-icon {
    font-size: 28px;
}
.floater-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.floater-text span {
    font-weight: 600;
    font-size: 14px;
}
.floater-text small {
    font-size: 11px;
    opacity: 0.9;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-teal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets */
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }    
    .hero-headline {
        font-size: 52px;
    }    
    .section-title {
        font-size: 42px;
    }    
    .hero-grid {
        gap: 50px;
    }
}

/* Tablets */
@media (max-width: 991.98px) {
    .announcement-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }    
    .masthead-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }    
    .logo-area {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }    
    .contact-info {
        justify-content: center;
    }    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        padding: 20px;
        box-shadow: var(--shadow-xl);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }    
    .nav-links.active {
        display: flex;
    }    
    .nav-item a {
        padding: 15px;
        justify-content: center;
    }    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 10px;
        border-radius: var(--radius-md);
    }    
    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8);
        padding: 10px 20px;
    }    
    .mobile-toggle {
        display: block;
    }    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }    
    .hero-subhead {
        margin: 0 auto 40px;
    }    
    .hero-stats {
        justify-content: center;
    }    
    .hero-actions {
        justify-content: center;
    }    
    .services-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }    
    .consultation-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }    
    .consultation-features {
        align-items: center;
    }    
    .contact-hotline {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .container {
        padding: 0 15px;
    }    
    .hero {
        padding: 60px 0;
    }    
    .hero-headline {
        font-size: 40px;
    }    
    .section-title {
        font-size: 36px;
    }    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }    
    .btn {
        width: 100%;
        max-width: 300px;
    }    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }    
    .process-timeline::before {
        display: none;
    }    
    .achievements {
        grid-template-columns: 1fr;
        gap: 20px;
    }    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }    
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }    
    .whatsapp-floater {
        left: 15px;
        bottom: 15px;
        padding: 12px 20px;
    }    
    .scroll-top {
        right: 15px;
        bottom: 15px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .hero-headline {
        font-size: 32px;
    }    
    .section-title {
        font-size: 28px;
    }    
    .hero-subhead,
    .section-description {
        font-size: 16px;
    }    
    .testimonial-card {
        padding: 30px 20px;
    }    
    .testimonial-text {
        font-size: 18px;
    }    
    .consultation-form {
        padding: 30px 20px;
    }    
    .hotline-number {
        font-size: 24px;
    }
}



/* about us page css */

/* ===== ABOUT PAGE STYLES ===== */
.about-page-header {
    background: linear-gradient(135deg, rgba(10, 77, 122, 0.95), rgba(6, 53, 85, 0.95)), url('../photos/about-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
}
.about-page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.about-page-header .breadcrumb {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}
.about-page-header .breadcrumb a {
    color: #ff9800;
    text-decoration: none;
}
.about-page-header .breadcrumb a:hover {
    text-decoration: underline;
}
.about-section {
    padding: 60px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-content h2 {
    color: #0a4d7a;
    font-size: 36px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
}
.about-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    border-radius: 2px;
}
.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.about-image img:hover {
    transform: scale(1.02);
}
.about-image:before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    /*border: 3px solid #ff9800;*/
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}
.stats-bar {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}
.stats-bar .stat-item {
    text-align: center;
    flex: 1;
}
.stats-bar .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #0a4d7a;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}
.stats-bar .stat-label {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}
.mission-vision {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}
.mv-card:hover {
    transform: translateY(-10px);
}
.mv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0a4d7a, #063555);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(10, 77, 122, 0.2);
}
.mv-icon i {
    font-size: 48px;
    color: white;
}
.mv-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0a4d7a;
    font-family: 'Playfair Display', serif;
}
.mv-card p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}
.why-choose-section {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 42px;
    color: #0a4d7a;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 20px;
}
.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    border-radius: 2px;
}
.section-title p {
    color: #666;
    font-size: 18px;
}
.features-grid-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.feature-card-about {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.feature-card-about:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #ff9800;
}
.feature-icon-about {
    width: 100px;
    height: 100px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}
.feature-card-about:hover .feature-icon-about {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}
.feature-icon-about i {
    font-size: 48px;
    color: #0a4d7a;
    transition: all 0.3s ease;
}
.feature-card-about:hover .feature-icon-about i {
    color: white;
}
.feature-card-about h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0a4d7a;
    font-weight: 600;
}
.feature-card-about p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.team-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: #ff9800;
}
.team-avatar {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e0e0e0, #ccc);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.team-card:hover .team-avatar {
    border-color: #ff9800;
    transform: scale(1.05);
}
.team-avatar i {
    font-size: 70px;
    color: #555;
}
.team-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #0a4d7a;
    font-weight: 600;
}
.team-card .team-position {
    color: #ff5722;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 16px;
}
.team-card .team-experience {
    color: #888;
    font-size: 14px;
    margin-bottom: 0;
}
.testimonials-about {
    padding: 80px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card-about {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.testimonial-card-about:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #ff9800;
    background: white;
}
.testimonial-quote {
    font-size: 40px;
    color: #ff9800;
    opacity: 0.3;
    margin-bottom: 15px;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}
.testimonial-author h4 {
    color: #0a4d7a;
    margin-bottom: 5px;
    font-weight: 600;
}
.testimonial-stars {
    color: #ffc107;
    margin-top: 10px;
}
.testimonial-stars i {
    margin-right: 3px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }    
    .features-grid-about,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }    
    .about-page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .stats-bar {
        flex-direction: column;
        gap: 30px;
    }    
    .stats-bar .stat-item {
        padding: 20px 0;
        border-bottom: 1px solid #eee;
    }    
    .stats-bar .stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .features-grid-about,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }    
    .about-page-header h1 {
        font-size: 28px;
    }    
    .section-title h2 {
        font-size: 32px;
    }
}


/* ===== SERVICES PAGE STYLES ===== */
.services-page-header {
    background: linear-gradient(135deg, rgba(10, 77, 122, 0.95), rgba(6, 53, 85, 0.95)), url('../photos/services-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
}
.services-page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.services-page-header .breadcrumb {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}
.services-page-header .breadcrumb a {
    color: #ff9800;
    text-decoration: none;
}
.services-page-header .breadcrumb a:hover {
    text-decoration: underline;
}
.services-intro {
    padding: 60px 0;
}
.services-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.services-intro-content h2 {
    color: #0a4d7a;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}
.services-intro-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    border-radius: 2px;
}
.services-intro-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}
.services-intro-image {
    position: relative;
}
.services-intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.services-intro-image img:hover {
    transform: scale(1.02);
}
.services-intro-image:before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    /*border: 3px solid #ff9800;*/
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}
.services-detox {
    background: #f8f9fa;
    padding: 80px 0;
}
.services-detox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.services-detox-content h2 {
    color: #0a4d7a;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}
.services-detox-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    border-radius: 2px;
}
.services-detox-content h3 {
    color: #ff5722;
    font-size: 24px;
    margin-bottom: 20px;
}
.services-detox-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.services-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.services-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: #555;
}
.services-list li i {
    color: #ff9800;
    margin-right: 15px;
    font-size: 18px;
}
.services-detox-image {
    position: relative;
}
.services-detox-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.services-detox-image img:hover {
    transform: scale(1.02);
}
.services-detox-image:before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid #ff9800;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}
.services-main {
    padding: 80px 0;
}
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.1);
    border-color: #ff9800;
}
.service-card-image {
    height: 250px;
    background: linear-gradient(135deg, #0a4d7a, #063555);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card-image i {
    font-size: 80px;
    color: white;
    opacity: 0.8;
}
.service-card-content {
    padding: 30px;
}
.service-card-content h3 {
    color: #0a4d7a;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}
.service-card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 15px;
}
.service-features li i {
    color: #ff9800;
    margin-right: 10px;
    font-size: 14px;
}
.service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}
.services-therapies {
    background: #f8f9fa;
    padding: 80px 0;
}
.therapies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.therapy-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.therapy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.08);
    border-color: #ff9800;
}
.therapy-icon {
    width: 90px;
    height: 90px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}
.therapy-card:hover .therapy-icon {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}
.therapy-icon i {
    font-size: 45px;
    color: #0a4d7a;
    transition: all 0.3s ease;
}
.therapy-card:hover .therapy-icon i {
    color: white;
}
.therapy-card h3 {
    color: #0a4d7a;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}
.therapy-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}
.services-aftercare {
    padding: 80px 0;
}
.aftercare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.aftercare-content h2 {
    color: #0a4d7a;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}
.aftercare-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    border-radius: 2px;
}
.aftercare-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.aftercare-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}
.aftercare-feature {
    display: flex;
    align-items: center;
}
.aftercare-feature i {
    color: #ff9800;
    font-size: 24px;
    margin-right: 15px;
}
.aftercare-feature span {
    color: #555;
    font-weight: 500;
}
.aftercare-image {
    position: relative;
}
.aftercare-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.aftercare-image img:hover {
    transform: scale(1.02);
}
.aftercare-image:before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    /*border: 3px solid #ff9800;*/
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}
.services-cta {
    background: linear-gradient(135deg, #0a4d7a, #063555);
    padding: 80px 0;
    text-align: center;
    color: white;
}
.services-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}
.services-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.services-cta .btn {
    display: inline-block;
    padding: 15px 40px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.services-cta .btn:hover {
    background: #ff5722;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.services-cta .btn i {
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-intro-grid,
    .services-detox-grid,
    .aftercare-grid {
        grid-template-columns: 1fr;
    }    
    .services-cards,
    .therapies-grid {
        grid-template-columns: repeat(2, 1fr);
    }    
    .services-page-header h1 {
        font-size: 36px;
    }    
    .services-intro-image:before,
    .services-detox-image:before,
    .aftercare-image:before {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-cards,
    .therapies-grid {
        grid-template-columns: 1fr;
    }    
    .aftercare-features {
        grid-template-columns: 1fr;
    }    
    .services-cta h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .services-page-header h1 {
        font-size: 28px;
    }    
    .services-intro-content h2,
    .services-detox-content h2,
    .aftercare-content h2 {
        font-size: 28px;
    }
}


/* ===== CONTACT PAGE STYLES ===== */
.contact-page-header {
    background: linear-gradient(135deg, rgba(10, 77, 122, 0.95), rgba(6, 53, 85, 0.95)), url('../photos/contact-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
}
.contact-page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.contact-page-header .breadcrumb {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}
.contact-page-header .breadcrumb a {
    color: #ff9800;
    text-decoration: none;
}
.contact-page-header .breadcrumb a:hover {
    text-decoration: underline;
}
.contact-info-section {
    padding: 60px 0;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #ff9800;
}
.contact-info-icon {
    width: 90px;
    height: 90px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}
.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}
.contact-info-icon i {
    font-size: 45px;
    color: #0a4d7a;
    transition: all 0.3s ease;
}
.contact-info-card:hover .contact-info-icon i {
    color: white;
}
.contact-info-card h3 {
    color: #0a4d7a;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}
.contact-info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 5px;
}
.contact-info-card a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.contact-info-card a:hover {
    color: #ff9800;
    text-decoration: underline;
}
.contact-main-section {
    padding: 60px 0;
    background: #f8f9fa;
}
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.contact-form-wrapper h2 {
    color: #0a4d7a;
    font-size: 32px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}
.contact-form-wrapper h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    border-radius: 2px;
}
.contact-form-wrapper p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #0a4d7a;
    font-weight: 500;
    font-size: 15px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Noto Sans Gujarati', sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff9800;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .btn-submit {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}
.contact-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
    background: linear-gradient(135deg, #ff5722, #ff9800);
}
.contact-form .btn-submit i {
    font-size: 18px;
}
.contact-map-wrapper {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.contact-map-wrapper h3 {
    color: #0a4d7a;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-map-wrapper h3 i {
    color: #ff9800;
}
.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    height: 350px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.map-address {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff9800;
}
.map-address p {
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.map-address p i {
    color: #ff9800;
    font-size: 18px;
    margin-top: 3px;
}
.map-address .direction-btn {
    display: inline-block;
    background: #0a4d7a;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
}
.map-address .direction-btn:hover {
    background: #ff5722;
    transform: translateX(5px);
}
.map-address .direction-btn i {
    margin-right: 8px;
}
.contact-faq-section {
    padding: 60px 0;
}
.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: #ff9800;
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.05);
}
.faq-item h3 {
    color: #0a4d7a;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-item h3 i {
    color: #ff9800;
    font-size: 20px;
}
.faq-item p {
    color: #666;
    line-height: 1.6;
    padding-left: 30px;
}
.contact-emergency-section {
    background: linear-gradient(135deg, #0a4d7a, #063555);
    padding: 60px 0;
    text-align: center;
    color: white;
}
.contact-emergency-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}
.contact-emergency-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.emergency-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.emergency-buttons .btn-emergency {
    background: #ff9800;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}
.emergency-buttons .btn-emergency:hover {
    background: #ff5722;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.emergency-buttons .btn-whatsapp {
    background: #25D366;
}
.emergency-buttons .btn-whatsapp:hover {
    background: #128C7E;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }    
    .contact-main-grid {
        grid-template-columns: 1fr;
    }    
    .contact-faq-grid {
        grid-template-columns: 1fr;
    }    
    .contact-page-header h1 {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }    
    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }    
    .emergency-buttons .btn-emergency {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }    
    .contact-page-header h1 {
        font-size: 28px;
    }    
    .contact-form-wrapper {
        padding: 30px 20px;
    }    
    .contact-form-wrapper h2 {
        font-size: 26px;
    }
}

/* ===== SUCCESS PAGE STYLES ===== */
.success-page-header {
    background: linear-gradient(135deg, rgba(10, 77, 122, 0.95), rgba(6, 53, 85, 0.95)), url('../photos/success-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
}
.success-page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.success-page-header .breadcrumb {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}
.success-page-header .breadcrumb a {
    color: #ff9800;
    text-decoration: none;
}
.success-page-header .breadcrumb a:hover {
    text-decoration: underline;
}

/* Success Stats */
.success-stats {
    padding: 60px 0;
    background: #f8f9fa;
}
.success-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.success-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.success-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.1);
    border-color: #ff9800;
}
.success-stat-icon {
    width: 90px;
    height: 90px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}
.success-stat-card:hover .success-stat-icon {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}
.success-stat-icon i {
    font-size: 45px;
    color: #0a4d7a;
    transition: all 0.3s ease;
}
.success-stat-card:hover .success-stat-icon i {
    color: white;
}
.success-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0a4d7a;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.success-stat-label {
    color: #666;
    font-size: 18px;
    font-weight: 500;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
}
.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.success-story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.success-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.1);
    border-color: #ff9800;
}
.success-story-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}
.success-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.success-story-card:hover .success-story-image img {
    transform: scale(1.1);
}
.success-story-content {
    padding: 25px;
    position: relative;
}
.success-story-quote {
    position: absolute;
    top: -20px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}
.success-story-content h3 {
    color: #0a4d7a;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    padding-right: 40px;
}
.success-story-location {
    color: #ff9800;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.success-story-location i {
    font-size: 12px;
}
.success-story-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}
.success-story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}
.success-story-years {
    background: #f0f7ff;
    color: #0a4d7a;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}
.success-story-rating {
    color: #ffc107;
}
.success-story-rating i {
    margin-right: 2px;
}

/* Video Gallery */
.success-videos {
    padding: 80px 0;
    background: #f8f9fa;
}
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.1);
    border-color: #ff9800;
}
.video-thumbnail {
    height: 200px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 152, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 2;
}
.video-card:hover .video-play-btn {
    background: #ff5722;
    transform: translate(-50%, -50%) scale(1.1);
}
.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 2;
}
.video-info {
    padding: 20px;
}
.video-info h4 {
    color: #0a4d7a;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}
.video-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}
.video-views {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #888;
    font-size: 13px;
}
.video-views i {
    color: #ff9800;
    margin-right: 3px;
}

/* Photo Gallery */
.success-photos {
    padding: 80px 0;
}
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.photo-item:hover img {
    transform: scale(1.1);
}
.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 77, 122, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}
.photo-item:hover .photo-overlay {
    opacity: 1;
}
.photo-overlay i {
    color: white;
    font-size: 40px;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}
.photo-item:hover .photo-overlay i {
    transform: scale(1);
}
.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.photo-item:hover .photo-caption {
    transform: translateY(0);
}
.photo-caption h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}
.photo-caption p {
    font-size: 12px;
    opacity: 0.8;
}

/* Testimonials Section */
.success-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.testimonial-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.testimonial-item:hover {
    transform: translateY(-10px);
    border-color: #ff9800;
    box-shadow: 0 25px 40px rgba(0,0,0,0.1);
}
.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: #ff9800;
    opacity: 0.2;
}
.testimonial-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-author-info h4 {
    color: #0a4d7a;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}
.testimonial-author-info p {
    color: #ff9800;
    font-size: 14px;
    margin: 0;
    font-style: normal;
}
.testimonial-rating {
    margin-top: 8px;
    color: #ffc107;
}
.testimonial-rating i {
    margin-right: 2px;
}

/* Awards Section */
.success-awards {
    padding: 60px 0;
}
.awards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.award-item {
    text-align: center;
}
.award-icon {
    width: 100px;
    height: 100px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.award-item:hover .award-icon {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    transform: scale(1.1);
}
.award-icon i {
    font-size: 50px;
    color: #0a4d7a;
    transition: all 0.3s ease;
}
.award-item:hover .award-icon i {
    color: white;
}
.award-item h4 {
    color: #0a4d7a;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}
.award-item p {
    color: #666;
    font-size: 13px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.lightbox-modal.active {
    display: flex;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}
.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 10px;
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(255,87,34,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close:hover {
    background: #ff5722;
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: rgba(255,152,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-prev {
    left: -70px;
}
.lightbox-next {
    right: -70px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #ff5722;
}

/* Responsive */
@media (max-width: 992px) {
    .success-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }    
    .success-stories-grid,
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }    
    .photo-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }    
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .success-stories-grid,
    .videos-grid,
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }    
    .lightbox-prev {
        left: 10px;
    }    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .success-stats-grid,
    .success-stories-grid,
    .videos-grid,
    .photo-gallery-grid {
        grid-template-columns: 1fr;
    }    
    .awards-grid {
        grid-template-columns: 1fr;
    }    
    .success-stat-number {
        font-size: 36px;
    }
}



/* ===== FACILITIES PAGE STYLES ===== */
.facilities-page-header {
    background: linear-gradient(135deg, rgba(10, 77, 122, 0.95), rgba(6, 53, 85, 0.95)), url('../photos/facilities-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
}
.facilities-page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.facilities-page-header .breadcrumb {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}
.facilities-page-header .breadcrumb a {
    color: #ff9800;
    text-decoration: none;
}
.facilities-page-header .breadcrumb a:hover {
    text-decoration: underline;
}

/* Facilities Intro */
.facilities-intro {
    padding: 60px 0;
}
.facilities-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.facilities-intro-content h2 {
    color: #0a4d7a;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}
.facilities-intro-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    border-radius: 2px;
}
.facilities-intro-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}
.facilities-intro-image {
    position: relative;
}
.facilities-intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.facilities-intro-image img:hover {
    transform: scale(1.02);
}
.facilities-intro-image:before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    /*border: 3px solid #ff9800;*/
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

/* Facility Highlights */
.facility-highlights {
    padding: 60px 0;
    background: #f8f9fa;
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.highlight-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.1);
    border-color: #ff9800;
}
.highlight-icon {
    width: 90px;
    height: 90px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}
.highlight-card:hover .highlight-icon {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}
.highlight-icon i {
    font-size: 45px;
    color: #0a4d7a;
    transition: all 0.3s ease;
}
.highlight-card:hover .highlight-icon i {
    color: white;
}
.highlight-card h3 {
    color: #0a4d7a;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}
.highlight-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Accommodation Section */
.accommodation-section {
    padding: 80px 0;
}
.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.accommodation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.accommodation-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.1);
    border-color: #ff9800;
}
.accommodation-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.accommodation-card:hover .accommodation-image img {
    transform: scale(1.1);
}
.accommodation-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff9800;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}
.accommodation-content {
    padding: 25px;
}
.accommodation-content h3 {
    color: #0a4d7a;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}
.accommodation-price {
    color: #ff5722;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.accommodation-price span {
    color: #999;
    font-size: 14px;
    font-weight: 400;
}
.accommodation-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.accommodation-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: #666;
    font-size: 15px;
    border-bottom: 1px dashed #f0f0f0;
}
.accommodation-features li:last-child {
    border-bottom: none;
}
.accommodation-features li i {
    color: #ff9800;
    margin-right: 10px;
    font-size: 14px;
    width: 20px;
}
.accommodation-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}
.accommodation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

/* Medical Facilities */
.medical-facilities {
    padding: 80px 0;
    background: #f8f9fa;
}
.medical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.medical-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.medical-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.08);
    border-color: #ff9800;
}
.medical-icon {
    min-width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.medical-item:hover .medical-icon {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}
.medical-icon i {
    font-size: 35px;
    color: #0a4d7a;
    transition: all 0.3s ease;
}
.medical-item:hover .medical-icon i {
    color: white;
}
.medical-content h3 {
    color: #0a4d7a;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
.medical-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 10px;
}
.medical-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.medical-content ul li {
    background: #f0f7ff;
    color: #0a4d7a;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.amenity-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.08);
    border-color: #ff9800;
}
.amenity-icon {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.amenity-item:hover .amenity-icon {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}
.amenity-icon i {
    font-size: 40px;
    color: #0a4d7a;
    transition: all 0.3s ease;
}
.amenity-item:hover .amenity-icon i {
    color: white;
}
.amenity-item h4 {
    color: #0a4d7a;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}
.amenity-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Facility CTA */
.facility-cta {
    background: linear-gradient(135deg, #0a4d7a, #063555);
    padding: 80px 0;
    text-align: center;
    color: white;
}
.facility-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}
.facility-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.facility-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.facility-cta .btn {
    display: inline-block;
    padding: 15px 40px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.facility-cta .btn:hover {
    background: #ff5722;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.facility-cta .btn-outline {
    background: transparent;
    border: 2px solid white;
}
.facility-cta .btn-outline:hover {
    background: white;
    color: #0a4d7a;
}
.facility-cta .btn i {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .facilities-intro-grid {
        grid-template-columns: 1fr;
    }    
    .highlights-grid,
    .accommodation-grid,
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }    
    .medical-grid {
        grid-template-columns: 1fr;
    }    
    .facilities-page-header h1 {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .highlights-grid,
    .accommodation-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .medical-item {
        flex-direction: column;
        text-align: center;
    }
    .medical-icon {
        margin: 0 auto;
    }    
    .facility-cta h2 {
        font-size: 32px;
    }
}
@media (max-width: 576px) {
    .facilities-page-header h1 {
        font-size: 28px;
    }    
    .facilities-intro-content h2 {
        font-size: 28px;
    }    
    .facility-cta-buttons {
        flex-direction: column;
        align-items: center;
    }    
    .facility-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}