/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Tamil', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
    overflow-x: hidden;
}

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

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

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

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

.logo-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.logo-text h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 0.9rem;
    color: #666;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #d69e2e;
    background: rgba(214, 158, 46, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 160px 30px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 150px;
    animation: sparkle 3s linear infinite;
}

.zodiac-wheel {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.wheel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.zodiac-sign {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    transform-origin: 150px 150px;
    animation: counter-rotate 30s linear infinite;
}

.zodiac-sign:nth-child(1) { transform: rotate(0deg) translateY(-130px); }
.zodiac-sign:nth-child(2) { transform: rotate(30deg) translateY(-130px); }
.zodiac-sign:nth-child(3) { transform: rotate(60deg) translateY(-130px); }
.zodiac-sign:nth-child(4) { transform: rotate(90deg) translateY(-130px); }
.zodiac-sign:nth-child(5) { transform: rotate(120deg) translateY(-130px); }
.zodiac-sign:nth-child(6) { transform: rotate(150deg) translateY(-130px); }
.zodiac-sign:nth-child(7) { transform: rotate(180deg) translateY(-130px); }
.zodiac-sign:nth-child(8) { transform: rotate(210deg) translateY(-130px); }
.zodiac-sign:nth-child(9) { transform: rotate(240deg) translateY(-130px); }
.zodiac-sign:nth-child(10) { transform: rotate(270deg) translateY(-130px); }
.zodiac-sign:nth-child(11) { transform: rotate(300deg) translateY(-130px); }
.zodiac-sign:nth-child(12) { transform: rotate(330deg) translateY(-130px); }

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 100px;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.8;
}

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

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #d69e2e, #f6e05e);
    color: #1a365d;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1a365d;
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #d69e2e, #f6e05e);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

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

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Services Navigation */
.services-nav {
    padding: 30px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.services-nav-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-nav-link {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-nav-link:hover,
.service-nav-link.active {
    color: #d69e2e;
    border-color: #d69e2e;
    background: rgba(214, 158, 46, 0.1);
}

/* Service Sections */
.service-section {
    padding: 80px 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-section.alt {
    background: #f8f9fa;
}

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

.service-section.alt .service-content {
    grid-template-columns: 1fr 1fr;
}

.service-text h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-features,
.service-benefits {
    margin-bottom: 30px;
}

.service-features h3,
.service-benefits h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-features ul,
.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-features ul li,
.service-benefits ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #666;
    line-height: 1.6;
}

.service-features ul li::before,
.service-benefits ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #d69e2e;
    font-weight: bold;
}

.service-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Service Packages */
.service-packages {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.package-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 3px solid #d69e2e;
    transform: scale(1.05);
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d69e2e;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.package-price {
    font-size: 2rem;
    color: #d69e2e;
    font-weight: 700;
    margin-bottom: 25px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.package-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #666;
}

/* About Detailed */
.about-detailed {
    padding: 100px 0;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #d69e2e, #f6e05e);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(214, 158, 46, 0.4);
}

.experience-badge strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.experience-badge span {
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Expertise Areas */
.expertise-areas {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.expertise-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.expertise-card h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 600;
}

.expertise-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.expertise-card ul {
    list-style: none;
}

.expertise-card ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #666;
    line-height: 1.6;
}

.expertise-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 8px;
    color: #d69e2e;
    font-weight: bold;
}

/* Education Timeline */
.education-background {
    padding: 100px 0;
}

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

.education-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #d69e2e, #f6e05e);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

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

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d69e2e, #f6e05e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 45%;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-date {
    color: #d69e2e;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* Achievements Section */
.achievements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.achievement-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d69e2e;
    margin-bottom: 15px;
    display: block;
}

.achievement-card h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 600;
}

.achievement-card p {
    color: #666;
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
}

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

.philosophy-text h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 30px;
    font-weight: 600;
}

.philosophy-text blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #d69e2e;
    margin-bottom: 30px;
    padding: 20px;
    border-left: 4px solid #d69e2e;
    background: rgba(214, 158, 46, 0.05);
    border-radius: 0 10px 10px 0;
}

.philosophy-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.philosophy-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.core-values {
    text-align: center;
}

.core-values h3 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.value-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.value-item h4 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Consultation Process */
.consultation-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d69e2e, #f6e05e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 40px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #d69e2e, #f6e05e);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-content p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-content a {
    color: #d69e2e;
    text-decoration: none;
}

.contact-content a:hover {
    text-decoration: underline;
}

.contact-content small {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-section h3 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a365d;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d69e2e;
    box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
}

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

.contact-form button {
    padding: 15px 40px;
    background: linear-gradient(45deg, #d69e2e, #f6e05e);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.4);
}

/* Business Hours */
.business-hours {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.hours-info h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 30px;
    font-weight: 600;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hours-item.special {
    background: linear-gradient(45deg, rgba(214, 158, 46, 0.1), rgba(246, 224, 94, 0.1));
    border: 2px solid #d69e2e;
}

.day {
    font-weight: 600;
    color: #1a365d;
}

.time {
    color: #666;
}

.appointment-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.appointment-info h3 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 600;
}

.appointment-info p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.appointment-benefits ul {
    list-style: none;
    margin-bottom: 30px;
}

.appointment-benefits ul li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
}

/* Location Section */
.location-section {
    padding: 80px 0;
}

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

.location-info h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 600;
}

.location-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.location-details,
.landmarks {
    margin-bottom: 30px;
}

.location-details h3,
.landmarks h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 600;
}

.location-details ul,
.landmarks ul {
    list-style: none;
}

.location-details ul li,
.landmarks ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #666;
    line-height: 1.6;
}

.location-details ul li::before,
.landmarks ul li::before {
    content: '📍';
    position: absolute;
    left: 0;
    top: 8px;
}

.map-container {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 600;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 10px;
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.quick-contact-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #d69e2e, #f6e05e);
}

.quick-contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.quick-contact-item.whatsapp:hover {
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.3);
}

.quick-contact-item .contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.quick-contact-item h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 600;
}

.quick-contact-item p {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.quick-contact-item span {
    color: #d69e2e;
    font-weight: 600;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #1a365d;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #d69e2e;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.faq-answer {
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* About Preview */
.about-preview {
    padding: 100px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-text h3 {
    font-size: 1.3rem;
    color: #d69e2e;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.achievement {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 15px;
}

.achievement strong {
    display: block;
    font-size: 2rem;
    color: #d69e2e;
    font-weight: 700;
}

.achievement span {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    display: block;
}

.profile-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: white;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    color: #1a365d;
    font-weight: 600;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #f6e05e;
}

.footer-section p,
.footer-section ul li {
    color: #cbd5e0;
    line-height: 1.8;
}

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

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f6e05e;
}

.contact-info p {
    margin-bottom: 10px;
}

.timing p {
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Service Page Hero Section */
.bg-gradient-to-br {
    background: linear-gradient(135deg, #fff7ed 0%, #f3e8ff 100%);
}
.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.text-center {
    text-align: center;
}
.text-5xl {
    font-size: 3rem;
    line-height: 1.1;
}
.font-bold {
    font-weight: 700;
}
.text-gray-900 {
    color: #1a202c;
}
.text-orange-600 {
    color: #ea580c;
}
.text-xl {
    font-size: 1.25rem;
}
.text-gray-600 {
    color: #4b5563;
}
.max-w-3xl {
    max-width: 48rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.mb-6 {
    margin-bottom: 1.5rem;
}

/* Services Grid */
.grid {
    display: grid;
}
.grid-cols-1 {
    grid-template-columns: 1fr;
}
.lg\:grid-cols-2 {
    /* For screens >= 1024px */
}
@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: 1fr 1fr;
    }
}
.gap-12 {
    gap: 3rem;
}
.bg-white {
    background: #fff;
}
.rounded-2xl {
    border-radius: 1rem;
}
.shadow-xl {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.overflow-hidden {
    overflow: hidden;
}
.hover\:shadow-2xl:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.16);
}
.transition-all {
    transition: all 0.3s;
}
.duration-300 {
    transition-duration: 0.3s;
}
.relative {
    position: relative;
}
.h-64 {
    height: 16rem;
}
.w-full {
    width: 100%;
}
.h-full {
    height: 100%;
}
.object-cover {
    object-fit: cover;
}
.transform {
    transform: none;
}
.hover\:scale-110:hover {
    transform: scale(1.10);
}
.transition-transform {
    transition-property: transform;
}
.duration-500 {
    transition-duration: 0.5s;
}
.absolute {
    position: absolute;
}
.top-4 {
    top: 1rem;
}
.left-4 {
    left: 1rem;
}
.p-3 {
    padding: 0.75rem;
}
.shadow-lg {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.text-2xl {
    font-size: 1.5rem;
}
.p-8 {
    padding: 2rem;
}
.text-2xl {
    font-size: 1.5rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.leading-relaxed {
    line-height: 1.7;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.font-semibold {
    font-weight: 600;
}
.text-gray-900 {
    color: #1a202c;
}
.mb-3 {
    margin-bottom: 0.75rem;
}
.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
}
.gap-2 {
    gap: 0.5rem;
}
.flex {
    display: flex;
}
.items-center {
    align-items: center;
}
.space-x-2 > * + * {
    margin-left: 0.5rem;
}
.text-orange-500 {
    color: #f97316;
}
.text-sm {
    font-size: 0.875rem;
}
.text-gray-700 {
    color: #374151;
}
.inline-flex {
    display: inline-flex;
    align-items: center;
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.bg-orange-600 {
    background: #ea580c;
}
.text-white {
    color: #fff;
}
.font-semibold {
    font-weight: 600;
}
.rounded-lg {
    border-radius: 0.5rem;
}
.hover\:bg-orange-700:hover {
    background: #c2410c;
}
.transition-colors {
    transition-property: background, color;
    transition-duration: 0.2s;
}
.ml-2 {
    margin-left: 0.5rem;
}

/* CTA Section */
.bg-gradient-to-r {
    background: linear-gradient(90deg, #ea580c 0%, #a78bfa 100%);
}
.text-4xl {
    font-size: 2.25rem;
}
.text-white {
    color: #fff;
}
.text-orange-100 {
    color: #ffedd5;
}
.mb-8 {
    margin-bottom: 2rem;
}
.max-w-2xl {
    max-width: 42rem;
}
.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.bg-white {
    background: #fff;
}
.text-orange-600 {
    color: #ea580c;
}
.font-bold {
    font-weight: 700;
}
.rounded-lg {
    border-radius: 0.5rem;
}
.hover\:bg-gray-100:hover {
    background: #f3f4f6;
}
.shadow-lg {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes counter-rotate {
    from { transform: rotate(0deg) translateY(-130px) rotate(0deg); }
    to { transform: rotate(-360deg) translateY(-130px) rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* AOS Animation */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .zodiac-wheel {
        display: none;
    }
    
    .about-content,
    .service-content,
    .contact-grid,
    .hours-content,
    .location-content,
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .achievements {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card,
    .expertise-card {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 250px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-content {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        width: 100%;
    }
    
    .education-timeline::before {
        left: 30px;
    }
    
    .timeline-icon {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .services-nav-links {
        gap: 10px;
    }
    
    .service-nav-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2,
    .service-text h2 {
        font-size: 2rem;
    }
    
    .service-images {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
}