.menu-open {
    overflow: hidden;
}

/* Font Face Declarations */
@font-face {
    font-family: 'Galano Classic';
    src: url('public/fonts/Rene Bieder - Galano Classic DEMO.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Galano Classic';
    src: url('public/fonts/Rene Bieder - Galano Classic DEMO Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Galano Classic Alt';
    src: url('public/fonts/Rene Bieder - Galano Classic DEMO Alt.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Galano Classic Alt';
    src: url('public/fonts/Rene Bieder - Galano Classic DEMO Alt Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Loader Styles */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./public/images/newbg.png') center/cover no-repeat fixed;
    background-color: #f5f3f0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

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

.loader-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

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

.loader-image {
    max-width: 300px;
    height: auto;
    opacity: 1;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.9s ease-out;
}
.loader-image.show {
    clip-path: inset(0 0 0 0);
}
.loader-image.fade-out {
    clip-path: inset(0 0 0 0);
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

/* Loader Mobile Styles */
@media (max-width: 768px) {
    .loader-image {
        max-width: 250px;
    }
}


html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #3d2a28; /* Dark brown - similar to headings but softer */
    font-weight: 600; /* Make default text even bolder */
    font-size: 1.1rem; /* Increase base font size for better visibility */
    background: url('./public/images/newbg.png') center/cover no-repeat fixed;
    background-color: #f5f3f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content area - grows to fill available space */
main {
    flex: 1;
}

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

/* Maintenance Notice */
.maintenance-notice {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.maintenance-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #2c2c2c;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.maintenance-content i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(185, 65, 58, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #b9413a;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 25px 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #b9413a;
    border-bottom-color: #b9413a;
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

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

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(185, 65, 58, 0.2);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    color: #b9413a;
    background: rgba(185, 65, 58, 0.1);
    border-left-color: #b9413a;
    padding-left: 25px;
}

/* Special styling for zodiac menu */
.zodiac-menu {
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
}

/* Special styling for months menu */
    .dropdown-menu.months-menu {
        min-width: 260px;
    max-height: 500px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

/* Special styling for zodiac menu - 2 columns */
.zodiac-menu {
    min-width: 280px;
    max-height: 400px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.zodiac-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.zodiac-menu li:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.zodiac-menu a {
    font-size: 0.8rem;
    padding: 12px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
    white-space: nowrap;
}

.patreon-link {
    background: linear-gradient(45deg, #ff424d, #ff6b35);
    color: #000000 !important;
    margin-left: 10px;
    border-radius: 5px;
    padding: 10px 15px !important;
    border-bottom: none !important;
}

.patreon-link:hover {
    background: linear-gradient(45deg, #ff6b35, #ff424d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 66, 77, 0.4);
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #b9413a;
    transition: 0.3s;
}

/* Floating Social Media Buttons */
.floating-social {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    color: #2c2c2c;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.twitter {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
}

.twitter:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    color: #ffffff;
}

.facebook {
    background: linear-gradient(135deg, #4267B2, #365899);
}

.facebook:hover {
    background: linear-gradient(135deg, #365899, #4267B2);
}

/* Mobile Responsive for Floating Social */
@media (max-width: 768px) {
    .floating-social {
        left: 10px;
        gap: 10px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .floating-social {
        left: 5px;
        gap: 8px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* About Me Section */


























/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #b9413a, #d45a4a);
    color: #1a1a3e;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ffeb3b, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(185, 65, 58, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2c2c2c;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #b9413a;
    color: #b9413a;
    transform: translateY(-3px);
}

/* About Me Section */
.about-section {
    padding: 60px 0;
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(185, 65, 58, 0.1), rgba(185, 65, 58, 0.05));
    border: 2px solid rgba(185, 65, 58, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
    border-color: rgba(185, 65, 58, 0.5);
    box-shadow: 0 20px 40px rgba(185, 65, 58, 0.2);
}

.image-placeholder i {
    font-size: 4rem;
    color: #b9413a;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #b9413a;
    font-weight: 600;
    text-align: center;
}

.about-text {
    color: rgba(61, 42, 40, 0.95);
    font-weight: 500;
}

.about-text p {
    font-size: 1.3rem; /* Increased from 1.1rem for better mobile readability */
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(61, 42, 40, 0.9);
    font-weight: 600; /* Increased from 500 */
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(210, 202, 168, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(185, 65, 58, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(210, 202, 168, 0.5);
    border-color: rgba(185, 65, 58, 0.4);
    transform: translateX(10px);
}

.highlight-item i {
    color: #b9413a;
    font-size: 1.2rem;
    width: 20px;
}

.highlight-item span {
    color: rgba(61, 42, 40, 0.95);
    font-weight: 700; /* Increased from 600 for more prominence */
    font-size: 1.1rem; /* Added explicit font size */
}

.contact-info {
    background: rgba(210, 202, 168, 0.3);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(185, 65, 58, 0.2);
    backdrop-filter: blur(15px);
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #b9413a;
    margin-bottom: 20px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    color: #b9413a;
    font-size: 1.2rem;
    width: 20px;
}

.contact-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details a {
    color: #b9413a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #b9413a;
    text-shadow: 0 0 10px rgba(185, 65, 58, 0.5);
}

.contact-separator {
    color: rgba(44, 44, 44, 0.5);
    font-weight: 300;
}

.whatsapp-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(185, 65, 58, 0.2);
}

.whatsapp-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-item i {
    color: #25D366;
    font-size: 1.5rem;
}

.whatsapp-details a {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.whatsapp-details a:hover {
    color: #128C7E;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.disclaimer {
    font-size: 0.85rem;
    color: rgba(44, 44, 44, 0.7);
    margin: 5px 0 0 0;
    font-style: italic;
    line-height: 1.4;
}

/* Our Services Section */
.our-services {
    padding: 60px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #c64d42;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #b9413a, #d45a4a);
    margin: 20px auto;
}

/* Smaller title for contact section */
.contact-section .section-title {
    font-size: 2rem;
    line-height: 1.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: rgba(210, 202, 168, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(185, 65, 58, 0.2);
    backdrop-filter: blur(15px);
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    background: rgba(210, 202, 168, 0.5);
    border-color: rgba(185, 65, 58, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #b9413a, #d45a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #1a1a3e;
    overflow: hidden;
    border: 3px solid #ffc801;
    box-shadow: 0 8px 25px rgba(255, 200, 1, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 200, 1, 0.4);
}

.service-item:hover .service-icon-image {
    transform: scale(1.1);
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #b9413a;
    margin-bottom: 15px;
    min-height: 3.5rem; /* Ensure consistent height for all headings */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-item p {
    color: rgba(61, 42, 40, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 600; /* Increased from 500 */
    font-size: 1.2rem; /* Increased font size for better mobile readability */
}

.service-link {
    display: inline-block;
    color: #b9413a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border: 2px solid rgba(185, 65, 58, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link:hover {
    background: rgba(185, 65, 58, 0.1);
    border-color: #b9413a;
    color: #b9413a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(185, 65, 58, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    color: #2c2c2c; /* Override body white color for contact form */
}

/* Ensure contact form elements maintain original colors */
.contact-section * {
    color: inherit;
}

/* Specific overrides for contact form elements to maintain dark text */
.contact-section .form-group label,
.contact-section .form-group input,
.contact-section .form-group select,
.contact-section .form-group textarea,
.contact-section .form-note,
.contact-section .form-divider h3,
.contact-section .section-subtitle {
    color: #2c2c2c !important;
}

.contact-section .section-title {
    color: #c64d42 !important;
}

.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder {
    color: rgba(44, 44, 44, 0.5) !important;
}

/* Enhanced form controls styling */
.contact-section .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 16px;
    color: #2c2c2c;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .form-group select:focus {
    outline: none;
    border-color: #c64d42;
    box-shadow: 0 0 0 3px rgba(198, 77, 66, 0.1);
}

.contact-section .form-group input[type="date"],
.contact-section .form-group input[type="time"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 16px;
    color: #2c2c2c;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .form-group input[type="date"]:focus,
.contact-section .form-group input[type="time"]:focus {
    outline: none;
    border-color: #c64d42;
    box-shadow: 0 0 0 3px rgba(198, 77, 66, 0.1);
}

.contact-section .form-group select option {
    color: #2c2c2c !important;
}

.section-subtitle {
    text-align: center;
    color: rgba(61, 42, 40, 0.9);
    font-size: 1.3rem; /* Increased from 1.1rem for better mobile readability */
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600; /* Increased from 500 */
}

.form-tagline {
    text-align: center;
    margin-bottom: 40px;
}

.form-tagline h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #b9413a;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.form-tagline h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #b9413a, #d45a4a);
    margin: 10px auto 0;
    border-radius: 2px;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(210, 202, 168, 0.3);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #b9413a;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-note {
    color: rgba(44, 44, 44, 0.6);
    font-weight: 400;
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 5px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid rgba(185, 65, 58, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c2c2c;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b9413a;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 15px rgba(185, 65, 58, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(44, 44, 44, 0.5);
}

.form-group select option {
    background: #d0caa8;
    color: #2c2c2c;
}

.form-divider {
    margin: 30px 0 20px 0;
    text-align: center;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 65, 58, 0.3), transparent);
}

.form-divider h3 {
    color: #b9413a;
    font-size: 1.2rem;
    padding: 0 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-disclaimer {
    margin: 20px 0;
}

.disclaimer-box {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.disclaimer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.disclaimer-box i {
    color: #2c2c2c;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.disclaimer-box p {
    color: #2c2c2c;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.disclaimer-box strong {
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.form-submit .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    /* Mobile responsive for contact section title */
    .contact-section .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
        padding: 0 15px;
    }
    
    .disclaimer-box {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .disclaimer-box i {
        font-size: 1.1rem;
    }
    
    .disclaimer-box p {
        font-size: 0.9rem;
    }

    /* Removed legacy hero overrides to defer to hero4.css */
}

/* Additional mobile styles for smaller screens */
@media (max-width: 480px) {
    /* Removed legacy hero overrides to defer to hero4.css */
}

/* Additional Information Section */
.info-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.info-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #b9413a;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(185, 65, 58, 0.3);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: rgba(210, 202, 168, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(185, 65, 58, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(185, 65, 58, 0.3);
    box-shadow: 0 10px 30px rgba(185, 65, 58, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(185, 65, 58, 0.3);
}

.info-icon i {
    font-size: 1.5rem;
    color: #2c2c2c;
}

.info-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #3d2a28;
    margin: 0 0 15px 0;
}

.info-text p {
    color: rgba(61, 42, 40, 0.95);
    line-height: 1.6;
    margin: 0;
    font-size: 1.2rem; /* Increased from 1rem for better mobile readability */
    font-weight: 600; /* Increased from 500 */
}

.info-text strong {
    color: #b9413a;
    font-weight: 700;
}

/* Mobile Responsive for Info Section */
@media (max-width: 768px) {
    .info-section {
        padding: 40px 0;
    }
    
    .our-services {
        padding: 40px 0;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .payment-options {
        padding: 40px 0;
    }
    
    .info-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .info-card {
        padding: 20px;
        gap: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 1.2rem;
    }
    
    .info-text h4 {
        font-size: 1.2rem;
    }
    
    .info-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .info-cards {
        padding: 0 10px;
    }
    
    .info-card {
        padding: 15px;
        gap: 12px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-icon i {
        font-size: 1.1rem;
    }
    
    /* Justify all content text on mobile */
    p, .content p, .intro-text, .info-text, .description, .about-text p, .content-wrapper p {
        text-align: justify;
    }
    
    /* Keep headings and special elements centered or left as needed */
    h1, h2, h3, h4, h5, h6, .btn, .button, .nav-link, .payment-method span {
        text-align: inherit;
    }
}

/* Payment Options Section */
.payment-options {
    padding: 60px 0;
}

.payment-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: #dad2b0;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.payment-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #b9413a;
    margin-bottom: 15px;
    font-weight: 600;
}

.payment-subtitle {
    color: rgba(61, 42, 40, 0.9);
    font-size: 1.3rem; /* Increased from 1.1rem for better mobile readability */
    margin-bottom: 40px;
    font-weight: 600; /* Increased from 500 */
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(185, 65, 58, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(185, 65, 58, 0.2);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    border-color: rgba(185, 65, 58, 0.4);
    box-shadow: 0 10px 30px rgba(185, 65, 58, 0.2);
}

.payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 5px;
}

.payment-icon.paypal {
    background: linear-gradient(135deg, #0070ba, #003087);
}

.payment-icon.jazzcash {
    background: #dad2b0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.payment-icon.jazzcash img {
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    object-position: center;
}

.payment-icon.easypaisa {
    background: #dad2b0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.payment-icon.easypaisa img {
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    object-position: center;
}

.payment-icon.bank {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.payment-method span {
    font-weight: 700; /* Increased from 600 */
    color: #3d2a28;
    font-size: 1.1rem; /* Increased from 0.9rem for better mobile readability */
    text-align: center;
}

.payment-method small {
    font-size: 1rem; /* Increased from 0.8rem for better mobile readability */
    color: rgba(61, 42, 40, 0.8);
    font-weight: 600; /* Increased from 500 */
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(185, 65, 58, 0.2);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #b9413a;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section h4 {
    color: #b9413a;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b9413a;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #b9413a;
    width: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(185, 65, 58, 0.1);
    border: 1px solid rgba(185, 65, 58, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b9413a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffd700;
    color: #2c2c2c;
    transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .maintenance-notice {
        top: 70px;
    }
    
    .maintenance-content {
        font-size: 0.8rem;
        padding: 0 15px;
        gap: 8px;
    }
    
    .maintenance-content i {
        font-size: 1rem;
    }
    
    /* Justify all content text on mobile */
    p, .content p, .intro-text, .info-text, .description, .about-text p, .content-wrapper p {
        text-align: justify;
    }
    
    /* Keep headings and special elements centered or left as needed */
    h1, h2, h3, h4, h5, h6, .btn, .button, .nav-link, .payment-method span {
        text-align: inherit;
    }
    
    .payment-options {
        padding: 40px 0;
    }
    
    .payment-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .payment-content h4 {
        font-size: 1.6rem;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .payment-method {
        padding: 15px;
    }
    
    .payment-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .payment-icon.jazzcash img,
    .payment-icon.easypaisa img {
        width: 45px;
        height: 45px;
        max-width: 45px;
        max-height: 45px;
        object-fit: contain;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
    }
    
    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 1000px;
    }
    
    .dropdown-menu.months-menu,
    .dropdown-menu.zodiac-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        max-height: 0;
        overflow: hidden;
    }
    
    .dropdown-menu.months-menu li,
    .dropdown-menu.zodiac-menu li {
        display: flex;
        align-items: center;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu.months-menu li:nth-child(odd),
    .dropdown-menu.zodiac-menu li:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu.months-menu li:nth-child(2n),
    .dropdown-menu.zodiac-menu li:nth-child(2n) {
        border-right: none;
    }
    
    .dropdown-menu.months-menu li:nth-child(odd)::after,
    .dropdown-menu.zodiac-menu li:nth-child(odd)::after {
        content: "";
        position: absolute;
        top: 0;
        right: -1px;
        width: 2px;
        height: 100%;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu.months-menu li:nth-last-child(-n+2)::after,
    .dropdown-menu.zodiac-menu li:nth-last-child(-n+2)::after {
        display: none;
    }
    
    .dropdown-menu.months-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 15px 20px;
        width: 100%;
    }
    
    .dropdown-menu.zodiac-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: flex-start;
        text-align: left;
        padding: 15px 20px;
        white-space: nowrap;
        width: 100%;
    }
    
    .patreon-link {
        margin: 10px 20px;
        border-radius: 25px;
    }
    
    .hero-section {
        height: 60vh;
        margin-top: 110px;
        padding: 15px;
    }
    
    
    .hero-side-text {
        max-width: 200px;
        white-space: nowrap;
    }
    
    .hero-side-text p {
        font-size: 1.4rem;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .about-highlights {
        gap: 12px;
    }
    
    .highlight-item {
        padding: 12px 15px;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .service-item {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .maintenance-content {
        font-size: 0.75rem;
        padding: 0 10px;
        gap: 6px;
        flex-wrap: wrap;
        line-height: 1.3;
    }
    
    .maintenance-content i {
        font-size: 0.9rem;
    }
    
    .payment-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .payment-method {
        padding: 12px;
    }
    
    .payment-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .payment-icon.jazzcash img,
    .payment-icon.easypaisa img {
        width: 40px;
        height: 40px;
        max-width: 40px;
        max-height: 40px;
        object-fit: contain;
    }
    
    .payment-method span {
        font-size: 0.8rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-section {
        height: 60vh;
        margin-top: 110px;
    }
    
    
    /* Removed conflicting hero-title-line styles to defer to hero4.css */
    
    .hero-side-text {
        max-width: 150px;
        white-space: nowrap;
    }
    
    .hero-side-text p {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Extra small mobile for contact section title */
    .contact-section .section-title {
        font-size: 1.4rem;
        line-height: 1.1;
        padding: 0 10px;
    }
}
