/* ===================================
   NimkarGuruji - Premium Astrology Website
   Author: World-Class Design
   =================================== */

/* ===== RESET & VARIABLES ===== */
:root {
    /* Brand Colors - Deep Maroon & Cream (from NimkarGuruji Logo) */
    --primary-color: #7a1f1f;
    --primary-dark: #5a1717;
    --primary-light: #9a2828;

    --secondary-color: #c9a961;
    --secondary-dark: #b39551;
    --secondary-light: #d9b971;

    /* Accent Colors */
    --accent-orange: #ff6b35;
    --accent-teal: #00a8a8;

    /* Neutrals - Cream & Earth Tones */
    --dark: #3d1010;
    --dark-light: #5a1717;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --white: #ffffff;
    --light-bg: #faf3e0;
    --cream-bg: #f5e6d3;
    --border-color: #e0d5c0;

    /* Gradients - Maroon & Gold Theme */
    --gradient-primary: linear-gradient(135deg, #c9a961 0%, #d9b971 100%);
    --gradient-secondary: linear-gradient(135deg, #7a1f1f 0%, #9a2828 100%);
    --gradient-dark: linear-gradient(135deg, #3d1010 0%, #5a1717 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(122, 31, 31, 0.9) 0%, rgba(61, 16, 16, 0.95) 100%);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Cinzel', serif;
    --font-elegant: 'Cormorant Garamond', serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Style main scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-dark);
}

/* Hide scrollbars on inline sections only */
.nav-menu::-webkit-scrollbar,
.container::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.nav-menu,
.container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Prevent horizontal scroll on mobile */
.container, .hero-content, .nav-wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
/* Touch-friendly button sizing */
.btn, .floating-btn, button {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--dark);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ea952;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.call-btn {
    background: var(--gradient-primary);
    color: var(--dark);
}

.whatsapp-btn {
    background: #25d366;
    color: var(--white);
}

.floating-btn:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    }
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 999;
    transition: var(--transition);
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-image {
    height: 65px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.logo i {
    font-size: 32px;
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 120px 0 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
}

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

.hero-title {
    font-size: 58px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-elegant);
}

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

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 16px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 20px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===== SECTION STYLING ===== */
section {
    padding: var(--section-padding);
}

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

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
}

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

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: -1;
}

.about-text h3 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 20px;
    font-family: var(--font-elegant);
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 28px;
    color: var(--primary-color);
    min-width: 28px;
}

.highlight-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

.highlight-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: var(--dark);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--primary-color);
    font-size: 14px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--gradient-secondary);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-content h3 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

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

/* ===== POOJA SECTION ===== */
.pooja-section {
    background: var(--white);
}

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

.pooja-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pooja-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.pooja-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pooja-card:hover::before {
    transform: scaleX(1);
}

.pooja-header {
    text-align: center;
    margin-bottom: 20px;
}

.pooja-header i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pooja-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.pooja-tag {
    display: inline-block;
    background: rgba(201, 169, 97, 0.15);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pooja-tag.popular {
    background: rgba(122, 31, 31, 0.15);
    color: var(--secondary-color);
}

.pooja-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.pooja-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.pooja-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--light-bg);
    padding: 6px 12px;
    border-radius: 15px;
}

.pooja-benefits i {
    color: var(--primary-color);
    font-size: 12px;
}

.pooja-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.pooja-note {
    background: rgba(201, 169, 97, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.pooja-note p {
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pooja-note i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 50px;
    color: rgba(201, 169, 97, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: var(--primary-color);
    font-size: 18px;
}

.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--white);
}

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

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

.contact-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: translateX(10px);
}

.contact-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-card p {
    color: var(--text-secondary);
    margin: 5px 0;
    line-height: 1.7;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-color);
}

.timing {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
}

.form-intro {
    margin-bottom: 30px;
}

.form-intro h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark);
}

.form-intro p {
    color: var(--text-secondary);
}

.contact-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quick-contact {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.quick-contact p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.quick-contact .btn {
    margin: 5px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gradient-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 90px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(85%) sepia(20%) saturate(400%) hue-rotate(5deg) brightness(105%);
}

.footer-tagline {
    font-family: var(--font-elegant);
    font-size: 16px;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 10px !important;
}

.footer-logo i {
    font-size: 28px;
    color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark);
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-list i {
    color: var(--secondary-color);
    margin-top: 4px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom i {
    color: var(--accent-orange);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }

    .hero-title {
        font-size: 48px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .logo-image {
        height: 45px;
        max-width: 180px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 0;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid,
    .pooja-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .floating-contacts {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-title {
        font-size: 26px;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        width: 100%;
        padding: 0 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        gap: 20px;
        font-size: 14px;
    }

    .feature-item {
        font-size: 14px;
    }

    .feature-item i {
        font-size: 16px;
    }

    .floating-contacts {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .logo-image {
        height: 40px;
        max-width: 160px;
    }

    .container {
        padding: 0 15px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-col h3 {
        font-size: 18px;
    }
}

/* ===== CONSULTATION BOOKING FORM ===== */
.consultation-form {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

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

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

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--secondary-color);
    font-size: 16px;
}

.form-group input {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(122, 31, 31, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

/* Date and Time Inputs */
input[type="date"],
input[type="time"] {
    cursor: pointer;
    color: var(--text-primary);
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    color: var(--primary-color);
    font-size: 18px;
}

/* CTA Buttons in Form */
.consultation-form .cta-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

.consultation-form .btn {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    font-size: 16px;
    padding: 16px 32px;
}

/* Call CTA below form */
.call-cta {
    margin-top: 30px;
    text-align: center;
}

.call-cta .btn {
    min-width: 250px;
}

/* Mobile Responsive for Form */
@media (max-width: 768px) {
    .consultation-form {
        padding: 30px 20px;
        margin: 30px auto 0;
    }

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

    .consultation-form .btn {
        max-width: 100%;
        font-size: 15px;
    }

    .call-cta .btn {
        width: 100%;
        max-width: 100%;
    }
}
