/* Akashic Records Reading - Main Styles */
:root {
    --primary-color: #5a2c82;
    --primary-light: #f2eaf7;
    --primary-dark: #421c66;
    --secondary-color: #ff8a00;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e5e5e5;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* ===== ANIMATIONS ===== */
@keyframes phoneFlip {
    0% { transform: rotateY(0deg); }
    20% { transform: rotateY(180deg); }
    40% { transform: rotateY(180deg); }
    60% { transform: rotateY(0deg); }
    100% { transform: rotateY(0deg); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== UTILITY CLASSES ===== */
.fade-in-left {
    animation: fadeInLeft 1s both;
    animation-delay: calc(var(--delay, 0) * 1s);
}

.fade-in-right {
    animation: fadeInRight 1s both;
    animation-delay: calc(var(--delay, 0) * 1s);
}

.fade-in-up {
    animation: fadeInUp 1s both;
    animation-delay: calc(var(--delay, 0) * 1s);
}

.fade-in {
    animation: fadeIn 1s both;
    animation-delay: calc(var(--delay, 0) * 1s);
}

.text-light {
    color: white !important;
}

/* ===== HEADER STYLES ===== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.site-header-top-bar {
    background: var(--primary-color);
    padding: 8px 0;
    color: white;
}

.site-header-contact-info a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.site-header-contact-info a:hover {
    opacity: 0.8;
}

.site-header-social-links a {
    color: white;
    margin-left: 15px;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.site-header-social-links a:hover {
    opacity: 0.8;
}

.site-header-main {
    padding: 15px 0;
    background: white;
}

.site-header-logo {
    display: flex;
    align-items: center;
}

.site-header-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.site-header-brand-name {
    color: var(--primary-color);
}

.site-header-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header-nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-header-nav-link:hover {
    color: var(--primary-color);
}

.site-header-btn {
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.site-header-btn-whatsapp {
    background: #25D366;
    color: white;
}

.site-header-btn-whatsapp:hover {
    background: #128C7E;
    color: white;
}

.site-header-btn-call {
    background: var(--primary-color);
    color: white;
}

.site-header-btn-call:hover {
    background: var(--primary-dark);
    color: white;
}

.site-header-mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2),
.hamburger-icon span:nth-child(3) {
    top: 9px;
}

.hamburger-icon span:nth-child(4) {
    top: 18px;
}

.site-header-mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
}

.site-header-mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
    transform: rotate(45deg);
}

.site-header-mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg);
}

.site-header-mobile-menu-toggle.active .hamburger-icon span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

/* Mobile Menu */
.site-header-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 80px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.site-header-mobile-menu.active {
    display: block;
    opacity: 1;
}

.site-header-mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.site-header-mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

.site-header-mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1002;
}

.mobile-menu-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.site-header-mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-header-mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.site-header-mobile-nav-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.site-header-mobile-contact a {
    color: var(--text-dark);
    text-decoration: none;
}

.site-header-mobile-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.site-header-mobile-social a:hover {
    background: var(--primary-color);
    color: white;
}

.mobile-action-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    left: auto;
}

.mobile-action-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    color: white;
}

.fas.fa-phone-alt, .phone-flip-icon {
    animation: phoneFlip 3s infinite;
    transform-style: preserve-3d;
    display: inline-block;
    backface-visibility: visible;
}

/* ===== HERO SECTION ===== */
.hero-wrapper {
    padding: 80px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(245,245,255,0.95) 100%);
    border-top: none;
}

.hero-content {
    padding-right: 30px;
}

.hero-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-left: 0;
    border-top: none;
    border-bottom: none;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-cta {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(90, 44, 130, 0.3);
}

.primary-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(90, 44, 130, 0.4);
    color: white;
}

.secondary-cta {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 138, 0, 0.3);
}

.secondary-cta:hover {
    background: #ff9d2a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.4);
    color: white;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Modern Header */
.modern-header {
    padding: 50px 0;
    background: var(--primary-light);
}

.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.profile-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.profile-image-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.designation {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.credentials span {
    background: var(--primary-light);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.credentials span i {
    margin-right: 5px;
    color: var(--secondary-color);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.about-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.about-text p {
    margin-bottom: 20px;
}

.about-text blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--primary-color);
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    background: var(--primary-light);
    margin: 30px 0;
    font-weight: 500;
}

.about-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(90, 44, 130, 0.1);
    font-size: 15px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
}

.about-benefits li:last-child {
    border-bottom: none;
}

.about-benefits li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 14px;
}

.about-image-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f9f7ff 0%, #f0f0ff 100%);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    z-index: 2;
    position: relative;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card > p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 25px;
    font-weight: 500;
}

.service-story {
    background: var(--primary-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: auto;
}

.service-story p {
    font-size: 15px;
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2c1151 100%);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-timeline {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
    z-index: 2;
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.process-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    font-size: 30px;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.process-content {
    flex-grow: 1;
}

.process-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.process-subtitle {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.process-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.connector {
    position: relative;
    height: 50px;
    margin-left: 40px;
    z-index: 1;
}

.connector-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

/* ===== TESTIMONIALS SECTION ===== */
.vastu-testimonials-section {
    padding: 90px 0;
    background: #f9f7ff;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.testimonials-scroll-wrapper {
    overflow: hidden;
    padding: 20px 10px;
}

.testimonials-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    transition: transform 0.5s ease;
}

.vastu-testimonials__card {
    min-width: 300px;
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.vastu-testimonials__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.vastu-testimonials__quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.vastu-testimonials__quote::before {
    content: '"';
    font-size: 60px;
    line-height: 0;
    color: var(--primary-light);
    position: absolute;
    top: 20px;
    left: -15px;
    z-index: 1;
    font-family: serif;
}

.vastu-testimonials__client {
    display: flex;
    align-items: center;
}

.vastu-testimonials__client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}

.vastu-testimonials__client-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.vastu-testimonials__client-info p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 18px;
}

.testimonial-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 90px 0;
    background: white;
}

.faq-accordion {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    background: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 25px 30px;
    background: #f9f7ff;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* ===== OFFERINGS SECTION ===== */
.offerings-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f9f7ff 0%, #f0f0ff 100%);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.offering-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.offering-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.offering-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.offering-header {
    background: var(--primary-color);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.offering-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.offering-subtitle {
    font-size: 14px;
    opacity: 0.8;
    font-style: italic;
}

.offering-features {
    list-style: none;
    padding: 30px;
    margin: 0;
    flex-grow: 1;
}

.offering-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    color: var(--text-medium);
}

.offering-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 5px;
}

.offering-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--primary-light);
    font-weight: 600;
}

.price-label {
    color: var(--primary-color);
}

.price-value {
    font-size: 24px;
    color: var(--primary-dark);
}

.offering-cta {
    display: block;
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.offering-cta:hover {
    background: #ff9d2a;
    color: white;
}

/* ===== READY SECTION ===== */
.ready-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ready-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1422&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.ready-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.ready-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.ready-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.ready-cta-container {
    margin-top: 40px;
}

.ready-cta {
    display: inline-block;
    padding: 16px 36px;
    background: var(--secondary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 138, 0, 0.4);
}

.ready-cta:hover {
    background: #ff9d2a;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 138, 0, 0.5);
    color: white;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: #f9f7ff;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.phone-flip i {
    animation: phoneFlip 3s infinite;
    transform-style: preserve-3d;
    display: inline-block;
}

.contact-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-text {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.global-box {
    background: var(--primary-color);
    border-radius: 15px;
    padding: 40px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.global-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.global-text {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #ff9d2a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.brand-tagline {
    font-size: 14px;
    opacity: 0.7;
}

.footer-about {
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 16px;
    opacity: 0.85;
}

.footer-cta {
    display: inline-block;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: #ff9d2a;
    transform: translateY(-3px);
    color: white;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
}

.footer-links a i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 12px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-info .contact-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 16px;
    margin-right: 15px;
    margin-bottom: 0;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.footer-contact-info span {
    font-size: 15px;
    opacity: 0.85;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 12px 20px;
    color: white;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #ff9d2a;
}

.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    opacity: 0.7;
}

.highlight {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offering-card.featured {
        grid-column: span 2;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .vastu-testimonials__card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        padding: 60px 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .profile-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image-wrap {
        margin: 0 auto 20px;
    }
    
    .credentials {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 30px;
    }
    
    .ready-content h2 {
        font-size: 32px;
    }
    
    .services-section, 
    .process-section,
    .offerings-section,
    .faq-section,
    .vastu-testimonials-section {
        padding: 60px 0;
    }
    
    .process-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .process-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .connector {
        margin-left: 0;
        display: flex;
        justify-content: center;
    }
    
    .connector-line {
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .offering-card.featured {
        grid-column: auto;
        transform: scale(1);
    }
    
    .offering-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .vastu-testimonials__card {
        flex: 0 0 calc(100% - 20px);
    }
}

@media (max-width: 576px) {
    .site-header-top-bar {
        padding: 6px 0;
    }
    
    .site-header-contact-info {
        display: flex;
        flex-direction: column;
        font-size: 13px;
        gap: 3px;
    }
    
    .site-header-contact-info a {
        margin-right: 0;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .ready-content h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-answer {
        padding: 20px;
    }
    
    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-input {
        width: 100%;
        border-radius: 4px;
        padding: 12px 15px;
    }
    
    .newsletter-button {
        width: 100%;
        border-radius: 4px;
        height: 44px;
    }
    
    .site-header-mobile-menu-toggle {
        z-index: 1001;
        position: relative;
    }
} 