/*
Theme Name: Arpan Black
Description: Custom WordPress theme for Arpan Astrology website with beautiful design and responsive layout
Version: 2.8
Author: Arpan Astrology
*/

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

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
}

/* Remove default WordPress margins */
#main,
.site-main,
.entry-content,
.site-content {
    margin: 0;
    padding: 0;
}

/* Remove default WordPress admin bar spacing */
body.admin-bar {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

/* Aggressive removal of all top spacing */
html {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove WordPress admin bar margin */
html.wp-toolbar {
    padding-top: 0 !important;
}

#wpadminbar {
    position: fixed !important;
    top: 0 !important;
}

/* Remove any theme or plugin top margins */
#page,
#main,
.site,
.site-header,
.header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    margin: 0;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo:hover {
    color: #ffed4e;
    transform: scale(1.05);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a:hover,
.nav-list a.current-menu-item {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

.nav-list a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transition: width 0.3s ease;
}

.nav-list a:hover::before {
    width: 100%;
}

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

.cta-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffd700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #ffed4e;
}

/* Mobile menu active state */
.mobile-menu-active .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-active .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-active .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect width="1200" height="600" fill="%23000014"/><g fill="%23ffd700" opacity="0.1"><circle cx="100" cy="100" r="2"/><circle cx="300" cy="150" r="1.5"/><circle cx="500" cy="80" r="2.5"/><circle cx="700" cy="200" r="1"/><circle cx="900" cy="120" r="2"/><circle cx="1100" cy="180" r="1.5"/><circle cx="200" cy="300" r="1"/><circle cx="400" cy="350" r="2"/><circle cx="600" cy="280" r="1.5"/><circle cx="800" cy="400" r="2.5"/><circle cx="1000" cy="320" r="1"/><circle cx="150" cy="450" r="2"/><circle cx="350" cy="500" r="1.5"/><circle cx="550" cy="480" r="1"/><circle cx="750" cy="520" r="2"/><circle cx="950" cy="460" r="1.5"/></g></svg>');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 13px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #1a1a2e;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffd700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffd700;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffd700;
}

.service-card p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    border: 3px solid #ffd700;
    transition: transform 0.3s ease;
    display: block;
    height: auto;
    max-width: 400px;
    object-fit: cover;
}

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffd700;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
}

.stat-label {
    font-size: 14px;
    color: #ccc;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e, #1a1a2e);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a1a2e;
}

.author-info h4 {
    color: #ffd700;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #ccc;
}

.stars {
    color: #ffd700;
    margin-top: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #0a0a0a;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

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

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-size: 16px;
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ccc;
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0 20px;
    text-align: center;
    border-top: 1px solid #333;
}

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

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #ccc;
}

/* Page Template Styles */
.page-template {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 40px 0;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    color: #ffd700;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.content-area {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 30px;
}

.content-area h1,
.content-area h2,
.content-area h3 {
    color: #ffd700;
    margin-bottom: 20px;
}

.content-area p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-area ul,
.content-area ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-area li {
    margin-bottom: 10px;
}

/* Elementor Compatibility Styles */
.elementor-page {
    background: #0a0a0a;
    min-height: 100vh;
}

.elementor-default .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
}

.elementor-widget-heading .elementor-heading-title {
    color: #ffd700;
}

.elementor-widget-text-editor {
    color: #fff;
}

.elementor-widget-text-editor h1,
.elementor-widget-text-editor h2,
.elementor-widget-text-editor h3,
.elementor-widget-text-editor h4,
.elementor-widget-text-editor h5,
.elementor-widget-text-editor h6 {
    color: #ffd700;
}

.elementor-widget-button .elementor-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: none;
    border-radius: 30px;
    padding: 15px 35px;
    font-weight: bold;
    transition: all 0.3s;
}

.elementor-widget-button .elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.elementor-section {
    background: #0a0a0a;
}

.elementor-section.elementor-section-content-middle {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.elementor-widget-icon {
    color: #ffd700;
}

.elementor-widget-icon-list .elementor-icon-list-item {
    color: #fff;
}

.elementor-widget-icon-list .elementor-icon-list-icon {
    color: #ffd700;
}

.elementor-widget-testimonial .elementor-testimonial-content {
    color: #fff;
}

.elementor-widget-testimonial .elementor-testimonial-name {
    color: #ffd700;
}

.elementor-widget-testimonial .elementor-testimonial-job {
    color: #ccc;
}

/* Form Styles for Elementor */
.elementor-field-group input,
.elementor-field-group textarea,
.elementor-field-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #fff;
    padding: 15px;
}

.elementor-field-group input::placeholder,
.elementor-field-group textarea::placeholder {
    color: #ccc;
}

.elementor-field-group label {
    color: #ffd700;
}

.elementor-button[type="submit"] {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: none;
    border-radius: 30px;
    padding: 15px 35px;
    font-weight: bold;
    transition: all 0.3s;
}

.elementor-button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Elementor Editor Styles */
.elementor-editor-active .elementor-element-empty {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 215, 0, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    /* FIXED Mobile header styles */
    .header {
        position: relative !important;
        padding: 15px 0 !important;
    }
    
    .header-content {
        position: relative !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .main-navigation {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(135deg, #1a1a2e, #16213e) !important;
        border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
        z-index: 999 !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
    }
    
    .mobile-menu-active .main-navigation {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-list {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 20px 0 !important;
        list-style: none !important;
        margin: 0 !important;
    }
    
    .nav-list li {
        width: 100% !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1) !important;
    }
    
    .nav-list li:last-child {
        border-bottom: none !important;
    }
    
    .nav-list a {
        display: block !important;
        padding: 15px 20px !important;
        font-size: 18px !important;
        border-bottom: none !important;
        color: #fff !important;
        text-decoration: none !important;
    }
    
    .nav-list a:hover {
        color: #ffd700 !important;
        background: rgba(255, 215, 0, 0.1) !important;
    }
    
    .nav-list a::before {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 3 !important;
    }
    
    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .cta-btn {
        padding: 10px 20px !important;
        font-size: 12px !important;
        order: 2 !important;
    }
    
    .logo {
        font-size: 24px !important;
        order: 1 !important;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
}

/* Header scrolled state */
.header-scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

.header-scrolled .logo {
    font-size: 24px;
}

.header-scrolled .cta-btn {
    padding: 10px 24px;
}

/* Main Content Area */
.main-content {
    background: #0a0a0a;
    min-height: 100vh;
}

.page-wrapper {
    background: #0a0a0a;
}

/* Regular page content when not using Elementor */
.page-wrapper:not(.elementor) {
    padding: 40px 0;
}

.page-wrapper:not(.elementor) .page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-wrapper:not(.elementor) h1:first-child {
    color: #ffd700;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.page-wrapper:not(.elementor) .wp-block-group,
.page-wrapper:not(.elementor) > p,
.page-wrapper:not(.elementor) > div {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 30px;
}

/* Single post styling */
.single-post {
    background: #0a0a0a;
}

.single-post:not(.elementor) {
    padding: 40px 0;
}

.single-post:not(.elementor) .post-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Default page styling when not using Elementor */
body:not(.elementor-page) .wp-block-group,
body:not(.elementor-page) .entry-content > p,
body:not(.elementor-page) .entry-content > div,
body:not(.elementor-page) .entry-content > h1,
body:not(.elementor-page) .entry-content > h2,
body:not(.elementor-page) .entry-content > h3 {
    max-width: 1000px;
    margin: 0 auto 30px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #fff;
}

body:not(.elementor-page) .entry-content > h1:first-child,
body:not(.elementor-page) .entry-content > h2:first-child,
body:not(.elementor-page) .entry-content > h3:first-child {
    color: #ffd700;
    text-align: center;
    font-size: 36px;
    margin-top: 40px;
}

/* Override for page templates */
.page-template-page-about .entry-content > h1:first-child,
.page-template-page-services .entry-content > h1:first-child,
.page-template-page-about .entry-content > h2:first-child,
.page-template-page-services .entry-content > h2:first-child {
    margin-top: 0 !important;
    display: none;
}

body:not(.elementor-page) .entry-content {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 0 20px;
}

/* Override for page templates */
.page-template-page-about .entry-content,
.page-template-page-services .entry-content {
    padding: 0 !important;
    margin: 0 !important;
    background: #0a0a0a;
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 40px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    margin-top: 0 !important;
}

.about-hero::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" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23ffd700" opacity="0.3"/><circle cx="75" cy="75" r="1.5" fill="%23ffd700" opacity="0.2"/><circle cx="50" cy="10" r="1" fill="%23ffd700" opacity="0.4"/><circle cx="10" cy="50" r="1" fill="%23ffd700" opacity="0.3"/><circle cx="90" cy="30" r="1" fill="%23ffd700" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    opacity: 0.3;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.about-hero .page-title {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero .hero-subtitle {
    font-size: 20px;
    color: #fff;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Astrologer Profile Section */
.astrologer-profile {
    padding: 80px 0;
    background: #0a0a0a;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-image {
    position: relative;
    text-align: center;
}

.profile-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    border: 4px solid #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    display: block;
    margin: 0 auto;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.experience-badge .years {
    font-size: 18px;
    font-weight: 900;
}

.experience-badge .text {
    font-size: 10px;
    line-height: 1.2;
}

.profile-text h2 {
    font-size: 42px;
    color: #ffd700;
    margin-bottom: 25px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.specializations h3 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 20px;
}

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

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.spec-icon {
    font-size: 20px;
}

.spec-text {
    color: #fff;
    font-weight: 500;
}

/* Journey Timeline */
.journey-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ffd700;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 40px;
}

.timeline-year {
    background: #ffd700;
    color: #1a1a2e;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    width: 80px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    max-width: 350px;
}

.timeline-content h3 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.philosophy-text h2 {
    color: #ffd700;
    font-size: 36px;
    margin-bottom: 25px;
}

.philosophy-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.philosophy-text blockquote {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #fff;
    font-size: 16px;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point h4 {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 8px;
}

.point p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* Cosmic Circle Animation */
.cosmic-circle {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    animation: orbit 20s linear infinite;
}

.planet-1 {
    width: 12px;
    height: 12px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 15s;
}

.planet-2 {
    width: 8px;
    height: 8px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-duration: 25s;
    animation-direction: reverse;
}

.planet-3 {
    width: 10px;
    height: 10px;
    bottom: 30px;
    left: 30px;
    animation-duration: 20s;
}

.center-star {
    font-size: 40px;
    color: #ffd700;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px #ffd700);
    }
    to {
        filter: drop-shadow(0 0 20px #ffd700);
    }
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.achievement-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.achievement-number {
    font-size: 48px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.achievement-desc {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: #0a0a0a;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 40px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    margin-top: 0 !important;
}

.services-hero::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="stars2" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23ffd700" opacity="0.3"/><circle cx="75" cy="75" r="1.5" fill="%23ffd700" opacity="0.2"/><circle cx="50" cy="10" r="1" fill="%23ffd700" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23stars2)"/></svg>') repeat;
    opacity: 0.3;
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
}

.services-hero .page-title {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero .hero-subtitle {
    font-size: 20px;
    color: #fff;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Services Section - Improved Spacing */
.main-services {
    padding: 100px 0 !important;
    background: #0a0a0a !important;
}

.services-intro {
    text-align: center !important;
    margin-bottom: 80px !important;
}

.services-intro h2 {
    font-size: 42px !important;
    color: #ffd700 !important;
    margin-bottom: 25px !important;
    font-weight: 700 !important;
}

.services-intro p {
    font-size: 20px !important;
    color: #ccc !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)) !important;
    gap: 40px !important;
    margin-top: 60px !important;
    max-width: 1300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 20px !important;
}

.service-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e) !important;
    border-radius: 20px !important;
    padding: 35px 30px !important;
    border: 2px solid rgba(255, 215, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
    height: auto !important;
    min-height: 520px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

.service-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #ffd700, #ffed4e) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.service-card:hover::before {
    opacity: 1 !important;
}

.service-card.featured {
    border-color: rgba(255, 215, 0, 0.4) !important;
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.15) !important;
    transform: scale(1.02) !important;
}

.service-card.featured::before {
    opacity: 1 !important;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    border-color: rgba(255, 215, 0, 0.4) !important;
    box-shadow: 
        0 25px 50px rgba(255, 215, 0, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.2) !important;
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-12px) !important;
    box-shadow: 
        0 30px 60px rgba(255, 215, 0, 0.3),
        0 0 0 1px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.25) !important;
}

.service-header {
    text-align: center !important;
    margin-bottom: 25px !important;
}

.service-icon {
    font-size: 48px !important;
    margin-bottom: 20px !important;
    color: #ffd700 !important;
    display: block !important;
}

.service-card h3 {
    font-size: 24px !important;
    margin-bottom: 15px !important;
    color: #ffd700 !important;
    font-weight: 700 !important;
}

.service-price {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #ffd700 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3) !important;
}

.service-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.service-card p {
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    color: #ccc !important;
    font-size: 16px !important;
}

.service-features {
    margin-bottom: 25px !important;
    flex: 1 !important;
}

.feature {
    color: #fff !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1) !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
}

.feature:last-child {
    border-bottom: none !important;
}

.service-duration {
    color: #ffd700 !important;
    font-weight: 700 !important;
    margin: 20px 0 !important;
    text-align: center !important;
    font-size: 16px !important;
    background: rgba(255, 215, 0, 0.1) !important;
    padding: 10px 20px !important;
    border-radius: 15px !important;
}

.service-btn {
    display: block !important;
    background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
    color: #1a1a2e !important;
    padding: 15px 30px !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3) !important;
    margin-top: auto !important;
}

.service-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5) !important;
    color: #1a1a2e !important;
    text-decoration: none !important;
}

/* PREMIUM PACKAGES SECTION - IMPROVED STYLING */
.premium-packages {
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

.packages-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)) !important;
    gap: 50px !important;
    margin-top: 60px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 20px !important;
}

.package-card {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.03)) !important;
    border: 2px solid rgba(255, 215, 0, 0.4) !important;
    border-radius: 25px !important;
    padding: 50px 40px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    display: block !important;
    margin-bottom: 30px !important;
    color: #fff !important;
    min-height: 650px !important;
}

.package-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2) !important;
    border-color: #ffd700 !important;
}

.package-card.popular {
    border-color: #ffd700 !important;
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3) !important;
    transform: scale(1.02) !important;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06)) !important;
}

.package-card.popular:hover {
    transform: scale(1.02) translateY(-8px) !important;
}

.popular-badge {
    position: absolute !important;
    top: -18px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
    color: #1a1a2e !important;
    padding: 12px 30px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4) !important;
}

.package-header {
    text-align: center !important;
    margin-bottom: 40px !important;
    padding-bottom: 30px !important;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3) !important;
}

.package-header h3 {
    color: #ffd700 !important;
    font-size: 32px !important;
    margin-bottom: 25px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.package-price {
    font-size: 48px !important;
    font-weight: 900 !important;
    color: #ffd700 !important;
    margin-bottom: 15px !important;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3) !important;
    display: block !important;
    line-height: 1 !important;
}

.original-price {
    font-size: 24px !important;
    color: #888 !important;
    text-decoration: line-through !important;
    margin-left: 15px !important;
    vertical-align: super !important;
}

.package-savings {
    color: #4ade80 !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    background: rgba(74, 222, 128, 0.15) !important;
    padding: 10px 25px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    margin-top: 15px !important;
}

.package-content {
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 20px !important;
    padding: 40px 35px !important;
    margin-bottom: 30px !important;
}

.package-includes h4 {
    color: #ffd700 !important;
    margin-bottom: 25px !important;
    font-size: 22px !important;
    font-weight: 600 !important;
}

.include-item {
    color: #fff !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15) !important;
    font-size: 17px !important;
    display: flex !important;
    align-items: center !important;
    line-height: 1.4 !important;
}

.include-item:before {
    content: "✓" !important;
    color: #4ade80 !important;
    font-weight: bold !important;
    margin-right: 15px !important;
    font-size: 20px !important;
    min-width: 20px !important;
}

.include-item:last-child {
    border-bottom: none !important;
}

.package-duration {
    color: #ffd700 !important;
    font-weight: 700 !important;
    margin: 30px 0 !important;
    text-align: center !important;
    font-size: 20px !important;
    background: rgba(255, 215, 0, 0.1) !important;
    padding: 15px 30px !important;
    border-radius: 15px !important;
}

.package-btn {
    display: block !important;
    background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
    color: #1a1a2e !important;
    padding: 20px 45px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    font-size: 19px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3) !important;
    width: 100% !important;
    margin-top: auto !important;
}

.package-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5) !important;
    color: #1a1a2e !important;
    text-decoration: none !important;
}

.popular-badge {
    position: absolute !important;
    top: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
    color: #1a1a2e !important;
    padding: 10px 25px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4) !important;
    z-index: 10 !important;
}

.package-header {
    text-align: center !important;
    margin-bottom: 35px !important;
    padding-bottom: 25px !important;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2) !important;
}

.package-header h3 {
    color: #ffd700 !important;
    font-size: 28px !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
}

.package-price {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #ffd700 !important;
    margin-bottom: 8px !important;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3) !important;
    display: block !important;
}

.original-price {
    font-size: 20px !important;
    color: #888 !important;
    text-decoration: line-through !important;
    margin-left: 15px !important;
}

.package-savings {
    color: #4ade80 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    background: rgba(74, 222, 128, 0.1) !important;
    padding: 5px 15px !important;
    border-radius: 15px !important;
    display: inline-block !important;
    margin-top: 10px !important;
}

.package-content {
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 15px !important;
    padding: 30px !important;
    margin-bottom: 25px !important;
}

.package-includes h4 {
    color: #ffd700 !important;
    margin-bottom: 20px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}

.include-item {
    color: #fff !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15) !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
}

.include-item:before {
    content: "✓" !important;
    color: #4ade80 !important;
    font-weight: bold !important;
    margin-right: 10px !important;
    font-size: 18px !important;
}

.include-item:last-child {
    border-bottom: none !important;
}

.package-duration {
    color: #ffd700 !important;
    font-weight: 700 !important;
    margin: 25px 0 !important;
    text-align: center !important;
    font-size: 18px !important;
    background: rgba(255, 215, 0, 0.1) !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
}

.package-btn {
    display: block !important;
    background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
    color: #1a1a2e !important;
    padding: 18px 35px !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3) !important;
    width: 100% !important;
}

/* FAQ SECTION - MODERN CARD DESIGN */
.faq-section {
    padding: 120px 0 !important;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0a0a0a 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.faq-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-stars" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23ffd700" opacity="0.3"/><circle cx="80" cy="80" r="1.5" fill="%23ffd700" opacity="0.2"/><circle cx="60" cy="30" r="1" fill="%23ffd700" opacity="0.4"/><circle cx="30" cy="70" r="1.2" fill="%23ffd700" opacity="0.25"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-stars)"/></svg>') repeat !important;
    opacity: 0.4 !important;
}

.faq-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.faq-section .section-title {
    text-align: center !important;
    font-size: 48px !important;
    color: #ffd700 !important;
    margin-bottom: 30px !important;
    font-weight: 800 !important;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3) !important;
    position: relative !important;
}

.faq-section .section-title::after {
    content: '❓' !important;
    display: block !important;
    font-size: 24px !important;
    margin: 15px auto 60px !important;
    opacity: 0.8 !important;
}

.faq-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)) !important;
    gap: 35px !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 30px !important;
}

.faq-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(16, 33, 62, 0.9)) !important;
    border: 2px solid rgba(255, 215, 0, 0.15) !important;
    border-radius: 20px !important;
    padding: 40px 35px !important;
    position: relative !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    overflow: hidden !important;
}

.faq-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #ffd700, #ffed4e) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.faq-item:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(255, 215, 0, 0.4) !important;
    box-shadow: 
        0 25px 50px rgba(255, 215, 0, 0.15),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.2) !important;
}

.faq-item:hover::before {
    opacity: 1 !important;
}

.faq-item h3 {
    color: #ffd700 !important;
    font-size: 24px !important;
    margin-bottom: 25px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.2) !important;
    position: relative !important;
    padding-left: 35px !important;
}

.faq-item h3::before {
    content: '❔' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    font-size: 20px !important;
    opacity: 0.8 !important;
}

.faq-item p {
    color: #e0e0e0 !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    opacity: 0.9 !important;
    transition: all 0.3s ease !important;
    padding-left: 35px !important;
}

.faq-item:hover p {
    color: #fff !important;
    opacity: 1 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 20px !important;
    }
    
    .faq-item {
        padding: 30px 25px !important;
    }
    
    .faq-item h3 {
        font-size: 20px !important;
        padding-left: 30px !important;
    }
    
    .faq-item p {
        font-size: 16px !important;
        padding-left: 30px !important;
    }
    
    .faq-section .section-title {
        font-size: 36px !important;
    }
}

/* SERVICES CTA SECTION - COSMIC FINALE */
.services-cta {
    padding: 120px 0 !important;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 30%, #0a0a0a 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.services-cta::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 215, 0, 0.05) 60deg, transparent 120deg, rgba(255, 215, 0, 0.03) 180deg, transparent 240deg, rgba(255, 215, 0, 0.05) 300deg, transparent 360deg) !important;
    animation: rotateCTA 40s linear infinite !important;
    opacity: 0.8 !important;
}

@keyframes rotateCTA {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.services-cta .container {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    visibility: visible !important;
}

.cta-content {
    max-width: 800px !important;
    margin: 0 auto !important;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(16, 33, 62, 0.8)) !important;
    border: 3px solid transparent !important;
    background-clip: padding-box !important;
    border-radius: 30px !important;
    padding: 80px 60px !important;
    position: relative !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.2) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cta-content::before {
    content: '' !important;
    position: absolute !important;
    top: -3px !important;
    left: -3px !important;
    right: -3px !important;
    bottom: -3px !important;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700, #ffc107) !important;
    border-radius: 30px !important;
    z-index: -1 !important;
    opacity: 1 !important;
    animation: borderPulse 3s ease-in-out infinite !important;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.cta-content h2 {
    color: #ffd700 !important;
    font-size: 48px !important;
    margin-bottom: 30px !important;
    font-weight: 800 !important;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3) !important;
    line-height: 1.2 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.cta-content h2::after {
    content: '✨🌟✨' !important;
    display: block !important;
    font-size: 20px !important;
    margin: 20px auto !important;
    opacity: 0.8 !important;
    animation: sparkle 2s ease-in-out infinite !important;
}

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

.cta-content p {
    color: #e0e0e0 !important;
    font-size: 22px !important;
    line-height: 1.6 !important;
    margin-bottom: 50px !important;
    opacity: 0.95 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    visibility: visible !important;
}

.btn-primary {
    display: inline-block !important;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffc107 100%) !important;
    color: #1a1a2e !important;
    padding: 25px 60px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 22px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 20 !important;
}

.btn-primary::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transition: left 0.6s ease !important;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 
        0 30px 60px rgba(255, 215, 0, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.3) !important;
    color: #1a1a2e !important;
    text-decoration: none !important;
}

.btn-primary:hover::before {
    left: 100% !important;
}

/* Mobile Responsive for CTA */
@media (max-width: 768px) {
    .services-cta {
        padding: 80px 0 !important;
    }
    
    .cta-content {
        padding: 50px 30px !important;
        margin: 0 20px !important;
    }
    
    .cta-content h2 {
        font-size: 32px !important;
        margin-bottom: 25px !important;
    }
    
    .cta-content p {
        font-size: 18px !important;
        margin-bottom: 40px !important;
    }
    
    .btn-primary {
        padding: 20px 40px !important;
        font-size: 18px !important;
    }
}

/* Global Mobile Responsive Fixes */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 20px !important;
    }
    
    .service-card {
        padding: 30px 25px !important;
        min-height: auto !important;
    }
    
    .service-icon {
        font-size: 40px !important;
    }
    
    .service-card h3 {
        font-size: 22px !important;
    }
    
    .service-price {
        font-size: 24px !important;
    }
    
    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 20px !important;
    }
    
    .package-card {
        padding: 40px 30px !important;
        min-height: auto !important;
    }
    
    .package-header h3 {
        font-size: 24px !important;
    }
    
    .package-price {
        font-size: 36px !important;
    }
}