/* ================= CSS Stylesheet for Jodhpur Royal ================= */

/* Modern Reset & Luxury Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* CRITICAL: Prevents left-right shift / horizontal scrolling */
    position: relative;
    background-color: #050505;
    color: #E2E8F0;
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

h1, h2, h3, .brand-logo {
    font-family: 'Playfair Display', serif;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Ambient Light Effects - Contained to prevent layout breaking */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(5, 5, 5, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.glow-1 { top: 10%; left: -150px; }
.glow-2 { top: 50%; right: -150px; }
.glow-3 { bottom: 5%; left: 10%; }

/* Utility Styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.gold-text {
    color: #D4AF37;
    background: linear-gradient(135deg, #FFE89C, #D4AF37, #AA7C11);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-gold {
    background: linear-gradient(135deg, #FFE89C, #D4AF37, #AA7C11);
    color: #0A0A0A;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #FFFFFF, #FFE89C, #D4AF37);
}

.btn-outline {
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.02);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(170, 124, 17, 0.2));
    border-color: #D4AF37;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Header / Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px 0;
    transition: all 0.3s;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #CCCCCC;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #D4AF37;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 13px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 1) 90%), url('../assets/hero-bg.jpg') no-repeat center center/cover;
    padding-top: 120px;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero p {
    font-size: 19px;
    margin-bottom: 40px;
    color: #A0AEC0;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Trust Stats Bar */
.stats-bar {
    position: relative;
    background: linear-gradient(180deg, #0A0A0A 0%, #0E0E0E 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px 0;
    text-align: center;
    z-index: 10;
}

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

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.stat-item h3 {
    font-size: 38px;
    color: #D4AF37;
    margin-bottom: 5px;
    font-weight: bold;
}

.stat-item p {
    font-size: 13px;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Profile Gallery Section */
.profiles {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 46px;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 20px auto 0;
}

.section-desc {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
    color: #A0AEC0;
    font-size: 16px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.profile-card {
    background: rgba(18, 18, 18, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.profile-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.1);
}

.profile-img-container {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.profile-card:hover .profile-img-container img {
    transform: scale(1.08);
}

.badge-verified {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #00B4DB, #0083B0);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
}

.badge-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(37, 211, 102, 0.9);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.profile-info {
    padding: 25px;
    background: linear-gradient(180deg, rgba(18,18,18,0) 0%, rgba(10,10,10,1) 90%);
}

.profile-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.profile-age {
    font-size: 13px;
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 3px 10px;
    border-radius: 30px;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.05);
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.profile-tag {
    background: rgba(255, 255, 255, 0.04);
    color: #CBD5E0;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.profile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.action-call, .action-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.action-call {
    background: linear-gradient(135deg, #0084FF, #0056B3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 132, 255, 0.2);
}

.action-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.action-call:hover, .action-wa:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Services Section */
.services {
    background-color: #0A0A0A;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: rgba(22, 22, 22, 0.6);
    padding: 50px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background: rgba(26, 26, 26, 0.8);
}

.service-icon {
    font-size: 45px;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.2));
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #A0AEC0;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 44px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 22px;
    color: #A0AEC0;
    font-size: 16px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 55px rgba(0,0,0,0.7);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.7));
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Blog Section */
.blog {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: rgba(18, 18, 18, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.blog-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 12px;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.blog-desc {
    font-size: 14px;
    color: #A0AEC0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-btn {
    font-size: 13px;
    color: #D4AF37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.blog-btn:hover {
    color: #FFFFFF;
}

/* FAQ Section */
.faq {
    background-color: #0A0A0A;
    padding: 100px 0;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(22, 22, 22, 0.5);
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background-color: rgba(26, 26, 26, 0.6);
}

.faq-question {
    padding: 22px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 25px;
    color: #A0AEC0;
    display: none;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 18px;
}

/* Footer */
footer {
    background-color: #040404;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 70px 0 120px; /* Safe padding for mobile bottom bar */
    position: relative;
}

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

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    color: #718096;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

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

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

.footer-col ul li a {
    color: #A0AEC0;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #D4AF37;
}

.footer-disclaimer {
    background-color: rgba(229, 62, 62, 0.03);
    border: 1px solid rgba(229, 62, 62, 0.15);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    backdrop-filter: blur(5px);
}

.footer-disclaimer p {
    color: #E53E3E;
    font-size: 12px;
    text-align: center;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    color: #4A5568;
    font-size: 13px;
}

/* Floating Bottom Mobile Contact Buttons - Fully Enlarged Circular Buttons */
.floating-buttons-container {
    position: fixed;
    bottom: 30px;
    width: 100%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 35px;
    box-sizing: border-box;
    z-index: 99999;
    pointer-events: none;
}

.float-btn {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.float-btn .btn-text {
    display: none; /* Circle symmetry (hides text) */
}

.float-btn svg {
    width: 36px;
    height: 36px;
}

.float-call {
    background: linear-gradient(135deg, #0084FF, #0056B3);
    animation: pulse-blue-glow 2s infinite;
}

.float-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: pulse-green-glow 2s infinite;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

@keyframes pulse-blue-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 132, 255, 0.6), 0 12px 30px rgba(0, 0, 0, 0.4); }
    70% { box-shadow: 0 0 0 18px rgba(0, 132, 255, 0), 0 12px 30px rgba(0, 0, 0, 0.4); }
    100% { box-shadow: 0 0 0 0 rgba(0, 132, 255, 0), 0 12px 30px rgba(0, 0, 0, 0.4); }
}

@keyframes pulse-green-glow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 12px 30px rgba(0, 0, 0, 0.4); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 12px 30px rgba(0, 0, 0, 0.4); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 12px 30px rgba(0, 0, 0, 0.4); }
}

/* Mobile Menu Toggle button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hamburger Active State */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Responsive Layouts */
@media (max-width: 992px) {
    .profiles-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero h1 {
        font-size: 46px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    header {
        padding: 12px 0;
    }
    .menu-toggle {
        display: flex;
    }
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 30px 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    }
    nav.active {
        display: block;
    }
    nav ul {
        flex-direction: column;
        gap: 22px;
        text-align: center;
    }
    nav ul li a {
        font-size: 16px;
        display: block;
        padding: 5px 0;
    }
    .nav-cta {
        display: none;
    }
    .profiles-grid, .services-grid, .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .hero {
        text-align: center;
        min-height: 90vh;
        padding-top: 140px;
    }
    .hero h1 {
        font-size: 36px;
        line-height: 1.25;
    }
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .section-title {
        font-size: 32px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .stat-item h3 {
        font-size: 30px;
    }
    .stat-item p {
        font-size: 11px;
        letter-spacing: 1px;
    }
    .stat-item:nth-child(even)::after {
        display: none;
    }
    .profile-img-container {
        height: 380px;
    }
    .floating-buttons-container {
        bottom: 20px;
        padding: 0 20px;
    }
    .float-btn {
        width: 70px;
        height: 70px;
        padding: 0;
    }
    .float-btn svg {
        width: 34px;
        height: 34px;
    }
    footer {
        padding-bottom: 110px;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
