/*
==================================
    MYSTIC ASTROLOGER WEBSITE
    Master Ankit Raval - astrovastukstar
    Professional Astrology Website
==================================
*/

/*
==================================
    1. RESET & BASE STYLES
==================================
*/

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

:root {
    /* Color Variables */
    --primary-color: #4a1c73;
    --secondary-color: #7b2cbf;
    --accent-color: #e09f3e;
    --gold-color: #ffd700;
    --dark-bg: #0d0221;
    --darker-bg: #050014;
    --text-light: #f8f9fa;
    --text-muted: #adb5bd;
    
    /* Gradient Variables */
    --gradient-primary: linear-gradient(135deg, #4a1c73, #7b2cbf);
    --gradient-gold: linear-gradient(135deg, #ffd700, #e09f3e);
    
    /* Shadow Variables */
    --shadow-primary: 0 10px 30px rgba(74, 28, 115, 0.3);
    --shadow-gold: 0 5px 20px rgba(224, 159, 62, 0.4);
}

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

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

/*
==================================
    2. CUSTOM CURSOR & ANIMATIONS
==================================
*/

/* Custom Mystical Cursor */
.custom-cursor {
    content: '✨';
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9999;
    font-size: 16px;
    animation: sparkle 1s ease-in-out infinite alternate;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

@keyframes sparkle {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.3); }
}

/* Floating Mystical Particles */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 12px;
    color: rgba(255, 215, 0, 0.3);
    animation: floatUp 15s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/*
==================================
    3. NAVIGATION SECTION
==================================
*/

/* Main Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 2, 33, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar.scrolled {
    background: rgba(5, 0, 20, 0.98);
    box-shadow: var(--shadow-primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Logo & Branding */
.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-color);
    gap: 12px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    animation: logoGlow 3s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

@keyframes logoGlow {
    0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 35px rgba(224, 159, 62, 0.6); }
}

.nav-names {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.main-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-color);
    line-height: 1;
}

.sub-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-color);
    text-transform: lowercase;
    letter-spacing: 1px;
    line-height: 1;
    opacity: 0.9;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

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

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: rgba(13, 2, 33, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-color);
}

/* Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu-content {
    position: absolute;
    top: 0;
    left: 100%;
    width: 220px;
    background: rgba(13, 2, 33, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

.dropdown-submenu:hover .dropdown-submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Product Coming Soon Modal */
.product-modal .modal-content {
    text-align: center;
    padding: 40px;
}

.modal-icon {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.product-soon {
    cursor: pointer;
}

/* Service Highlight Animation */
.highlight-service {
    animation: highlightPulse 2s ease;
    border-color: var(--gold-color);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

@keyframes highlightPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Inquiry Modal Styles */
.inquiry-modal .modal-content {
    text-align: center;
    padding: 40px;
}

.inquiry-modal .modal-icon {
    color: var(--gold-color);
    font-size: 3rem;
    margin-bottom: 20px;
    animation: callPulse 2s infinite;
}

@keyframes callPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(10deg); }
    100% { transform: scale(1); }
}

/* Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    position: relative;
}

.language-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-select:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.language-select option {
    background: var(--darker-bg);
    color: var(--text-light);
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold-color);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.theme-toggle-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.theme-toggle-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-toggle-btn:hover i {
    transform: rotate(180deg);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold-color);
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 0, 20, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
        z-index: 1001;
        list-style: none;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
        width: 90%;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 10px 15px;
        color: var(--text-light);
        text-decoration: none;
        justify-content: space-between;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(13, 2, 33, 0.5);
        border: none;
        border-left: 2px solid var(--gold-color);
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin-left: 15px;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 1000px;
        padding: 5px 0;
    }
    
    .dropdown-submenu-content {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(13, 2, 33, 0.3);
        border: none;
        border-left: 2px solid var(--accent-color);
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin-left: 15px;
    }
    
    .dropdown-submenu.active .dropdown-submenu-content {
        max-height: 1000px;
        padding: 5px 0;
    }
    
    .dropdown-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-controls {
        position: fixed;
        top: 15px;
        right: 60px;
        z-index: 1003;
        display: flex;
        gap: 10px;
    }
    
    .hamburger {
        z-index: 1004;
    }
}

/*
==================================
    4. HERO SECTION
==================================
*/

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Hero Background Effects */
.hero::before {
    content: '♈ ♉ ♊ ♋ ♌ ♍ ♎ ♏ ♐ ♑ ♒ ♓';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.1);
    pointer-events: none;
    animation: floatingZodiac 30s linear infinite;
    z-index: 1;
}

@keyframes floatingZodiac {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, #1e3c72 0%, var(--darker-bg) 100%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 10s linear infinite;
}

@keyframes twinkle {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200px); }
}

.moon {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-gold);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    animation: moonFloat 6s ease-in-out infinite;
}

@keyframes moonFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: heroFadeIn 2s ease-out;
    text-align: center;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Logo Section */
.hero-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold-color);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(224, 159, 62, 0.4);
    animation: heroLogoFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(224, 159, 62, 0.4);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 80px rgba(224, 159, 62, 0.6);
    }
}

.hero-brand {
    flex: 1;
    min-width: 300px;
}

/* Hero Title */
.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    position: relative;
    letter-spacing: 2px;
}

.hero-title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 15px auto;
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 0 5px var(--gold-color);
        transform: scaleX(1);
    }
    100% {
        box-shadow: 0 0 15px var(--gold-color), 0 0 25px var(--accent-color);
        transform: scaleX(1.2);
    }
}

/* Hero Secondary Name (astrovastukstar) */
.hero-secondary-name {
    margin-top: 20px;
    position: relative;
}

.astro-name {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, var(--gold-color), var(--accent-color), #ff6b6b, var(--gold-color));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite, textGlow 2s ease-in-out infinite alternate;
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
    text-transform: lowercase;
    padding: 10px 25px;
    border: 2px solid transparent;
    border-radius: 25px;
    background-image: 
        linear-gradient(var(--dark-bg), var(--dark-bg)),
        linear-gradient(45deg, var(--gold-color), var(--accent-color), #ff6b6b, var(--gold-color));
    background-origin: border-box;
    background-clip: content-box, border-box;
    position: relative;
    overflow: hidden;
}

.astro-name::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.3), transparent, rgba(255, 107, 107, 0.3), transparent);
    animation: rotateBackground 4s linear infinite;
    z-index: -1;
}

.astro-name::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.2rem;
    animation: sparkleRotate 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 30px rgba(255, 107, 107, 0.6));
        transform: scale(1.05);
    }
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes sparkleRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* Hero Title Mandala Effect */
.hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 50%;
    animation: mandalaRotate 20s linear infinite;
    z-index: -1;
}

@keyframes mandalaRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero Text Content */
.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
    opacity: 0.9;
}

/* Call to Action Button */
.cta-button {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 28, 115, 0.4);
}

.cta-button i {
    margin-right: 10px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--gold-color);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--gold-color);
    border-bottom: 2px solid var(--gold-color);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/*
==================================
    5. SECTION STYLES
==================================
*/

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/*
==================================
    6. ABOUT SECTION
==================================
*/

.about {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

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

.about-image {
    position: relative;
}

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

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(74, 28, 115, 0.3), rgba(224, 159, 62, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.about-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.achievements-preview h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.achievements-preview ul {
    list-style: none;
}

.achievements-preview li {
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievements-preview li i {
    color: var(--gold-color);
}

/*
==================================
    7. SERVICES SECTION
==================================
*/

.services {
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
    padding: 0 10px;
}

.service-card {
    background: rgba(74, 28, 115, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Special styling for category headers */
.service-card.service-category {
    background: rgba(224, 159, 62, 0.15);
    border: 1px solid rgba(224, 159, 62, 0.3);
}

.service-card.service-category:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(224, 159, 62, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 25px;
    font-family: 'Cinzel', serif;
}

.service-btn {
    background: transparent;
    border: 2px solid var(--gold-color);
    color: var(--gold-color);
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-btn:hover {
    background: var(--gold-color);
    color: var(--dark-bg);
    transform: scale(1.05);
}

/*
==================================
    8. EVENTS SECTION
==================================
*/

.events {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 80px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    background: rgba(74, 28, 115, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Enhanced glow effect on hover */
.event-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold-color), var(--accent-color), var(--secondary-color), var(--gold-color));
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: borderRotate 3s linear infinite;
}

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

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.event-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

/* Event 4 specific styling - show full image */
.event-card:nth-child(4) .event-image img {
    object-fit: contain;
    background: rgba(0, 0, 0, 0.1);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-bg);
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-family: 'Cinzel', serif;
    line-height: 1;
    margin-bottom: 2px;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 25px;
}

.event-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.event-card:hover .event-content h3 {
    color: #fff;
    text-shadow: 0 0 10px var(--gold-color);
}

.event-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

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

/*
==================================
    9. CERTIFICATION SECTION
==================================
*/

.certification {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 80px 0;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-items: center;
}

.certification-card {
    background: rgba(74, 28, 115, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.certification-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: var(--gold-color);
}

.certification-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.certification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.certification-card:hover .certification-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/*
==================================
    10. NEWS SECTION
==================================
*/

.news {
    background: var(--dark-bg);
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: rgba(74, 28, 115, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.news-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: var(--gold-color);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/*
==================================
    11. GALLERY SECTION
==================================
*/

.gallery {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-card {
    background: rgba(74, 28, 115, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    border-color: var(--gold-color);
}

.gallery-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/*
==================================
    12. CONTACT SECTION
==================================
*/

.contact {
    background: var(--darker-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 50px;
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold-color);
    margin-bottom: 30px;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: 600;
}

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

/* Contact Form */
.contact-form h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold-color);
    margin-bottom: 30px;
}

/* Form Coming Soon */
.form-coming-soon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-icon {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.form-coming-soon h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.form-coming-soon p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.call-now-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 40px;
    color: var(--text-light);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.call-now-btn:hover {
    background: var(--gradient-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/*
==================================
    13. FOOTER SECTION
==================================
*/

.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold-color);
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.footer-section p,
.footer-section li {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-color);
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-muted);
}

/*
==================================
    14. MODAL STYLES
==================================
*/

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--darker-bg);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.close {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/*
==================================
    15. RESPONSIVE DESIGN
==================================
*/

/* Tablet Styles */
@media (max-width: 768px) {
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .main-name {
        font-size: 1rem;
    }
    
    .sub-name {
        font-size: 0.7rem;
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .astro-name {
        font-size: 1.6rem;
        letter-spacing: 2px;
        padding: 8px 20px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .event-card {
        margin: 0 10px;
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-content {
        padding: 20px;
    }
    
    .event-content h3 {
        font-size: 1.2rem;
    }
    
    .event-date {
        top: 10px;
        right: 10px;
        padding: 10px 12px;
    }
    
    .event-date .day {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hamburger {
        display: flex;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .nav-logo {
        font-size: 1rem;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .main-name {
        font-size: 0.9rem;
    }
    
    .sub-name {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    .hero-logo-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
    }
    
    .hero-brand {
        min-width: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .astro-name {
        font-size: 1.3rem;
        letter-spacing: 1px;
        padding: 6px 15px;
    }
    
    .astro-name::after {
        font-size: 1rem;
        top: -8px;
        right: -8px;
    }
    
    .hero-title-underline {
        width: 80px;
    }
    
    .events {
        padding: 60px 0;
    }
    
    .event-image {
        height: 180px;
    }
    
    .event-content {
        padding: 15px;
    }
    
    .event-content h3 {
        font-size: 1.1rem;
    }
    
    .event-content p {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .astro-name {
        font-size: 1.1rem;
        padding: 5px 12px;
        letter-spacing: 0.5px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .event-content h3 {
        font-size: 1rem;
    }
    
    .event-content p {
        font-size: 0.85rem;
    }
}

/*
==================================
    16. UTILITY CLASSES
==================================
*/

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

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.p-0 { padding: 0; }
.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/*
==================================
    17. ENHANCED HERO SECTION
==================================
*/

/* Remove hero animations and improve styling */
.hero {
    background: linear-gradient(135deg, 
        #1a1a2e 0%, 
        #16213e 25%, 
        #0f3460 50%, 
        #16213e 75%, 
        #1a1a2e 100%
    );
    animation: none; /* Remove existing animations */
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: none; /* Remove glow animation */
}

.hero-title {
    background: linear-gradient(135deg, #ffd700, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: none;
    animation: none; /* Remove fade animation */
}

/*
==================================
    18. FUNCTIONS SECTION SPACING FIX
==================================
*/

.functions-section-header {
    margin-top: 40px;
    margin-bottom: 30px;
}

/*
==================================
    19. CONTACT NUMBERS SECTION
==================================
*/

.contact-numbers {
    background: linear-gradient(135deg, #2c1810 0%, #3d2317 50%, #2c1810 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-numbers .container {
    position: relative;
    z-index: 1;
}

.contact-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                0 0 30px rgba(255, 215, 0, 0.2);
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-number {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-top: 10px;
}

/*
==================================
    20. BRANCH ADDRESSES SECTION
==================================
*/

.branch-addresses {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #1a237e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.branch-addresses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(63, 81, 181, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.branch-addresses .container {
    position: relative;
    z-index: 1;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.branch-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(63, 81, 181, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-10px);
    border-color: rgba(63, 81, 181, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                0 0 30px rgba(63, 81, 181, 0.3);
}

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

.branch-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.branch-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    color: #3f51b5;
}

.branch-card h3 {
    color: #ffd700;
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
}

.branch-address {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.branch-timings {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.branch-timings strong {
    color: #ffd700;
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

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

/*
==================================
    21. RESPONSIVE UPDATES FOR NEW SECTIONS
==================================
*/

@media (max-width: 768px) {
    .certification-grid,
    .news-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certification-image,
    .news-image {
        height: 200px;
    }
    
    .gallery-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .certification-image,
    .news-image {
        height: 180px;
    }
    
    .gallery-image {
        height: 160px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/*
==================================
    22. ORIGINAL RESPONSIVE UPDATES
==================================
*/

@media (max-width: 768px) {
    .contact-numbers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .branch-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card,
    .branch-card {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .contact-card,
    .branch-card {
        padding: 25px 15px;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .branch-icon {
        font-size: 2rem;
    }
    
    .contact-card h3,
    .branch-card h3 {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
    }
}

/*
==================================
    23. MODAL STYLES ENHANCEMENT
==================================
*/

.service-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.service-modal-header .service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-color);
}

.service-modal-header .service-duration {
    color: var(--text-muted);
    font-style: italic;
}

.service-includes {
    list-style: none;
    margin: 20px 0;
}

.service-includes li {
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-includes li i {
    color: var(--gold-color);
    font-size: 0.8rem;
}

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

.book-now-btn, .close-modal-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.book-now-btn:hover {
    background: var(--gradient-gold);
    transform: translateY(-2px);
}

.close-modal-btn {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
}

.close-modal-btn:hover {
    border-color: var(--gold-color);
    color: var(--gold-color);
}

/*
==================================
    24. NOTIFICATION STYLES
==================================
*/

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--darker-bg);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-color: #28a745;
}

.notification-error {
    border-color: #dc3545;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.notification-message {
    color: var(--text-light);
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: var(--gold-color);
}

/*
==================================
    25. CONTACT CARD STYLES
==================================
*/

.contact-number-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-number-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-number-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                0 0 30px rgba(255, 215, 0, 0.2);
}

.contact-number-card:hover::before {
    opacity: 1;
}

.contact-number-card .contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-number-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-number-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-number {
    margin: 15px 0;
}

.contact-number a {
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
}

.contact-actions {
    margin-top: 20px;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--gradient-primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-action-btn:hover {
    background: var(--gradient-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/*
==================================
    END OF STYLESHEET
==================================
*/
