/* CSS Variables for Theme */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-card: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Dark Mode */
body.dark-mode {
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --bg-card: #1f2937;
    --border-color: #374151;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: var(--transition);
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-card);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899, #f59e0b, #10b981, #6366f1);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6));
    animation: starShine 3s ease-in-out infinite, gradientShift 4s ease infinite;
}

@keyframes starShine {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.8));
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(20deg);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.1), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.1), transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899, #f59e0b, #10b981, #3b82f6, #6366f1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.7));
    animation: fadeInUp 1s ease, heroStarShine 4s ease-in-out infinite, heroGradientShift 5s ease infinite;
}

@keyframes heroStarShine {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.7));
    }
    50% {
        filter: drop-shadow(0 0 45px rgba(99, 102, 241, 0.9));
    }
}

@keyframes heroGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-slogan {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Book Section */
.book-section {
    background-color: var(--bg-secondary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

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

.package-card.popular {
    border-color: var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.package-price {
    margin-bottom: 1.5rem;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-price .price.strikethrough {
    text-decoration: line-through;
    color: #b1b1b1;
    font-size: 1.1rem;
    margin-right: 0.5rem;
    font-weight: 500;
}

.package-price .price.discounted {
    color: var(--primary, #6c63ff);
    font-size: 1.25rem;
    font-weight: 700;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.package-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.select-package-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.select-package-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Express Delivery Option */
.express-delivery-option {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.express-badge {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
}

.express-delivery-option h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.express-delivery-option p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.express-delivery-checkbox {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label i {
    color: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: var(--shadow-lg);
}

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

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-primary);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.selected-package-info {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.selected-package-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.package-price-display {
    font-size: 2rem;
    font-weight: 700;
}

#originalPrice {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#discountedPrice {
    color: var(--accent-color);
}

#originalPrice.strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

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

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

.discount-input-group {
    display: flex;
    gap: 0.5rem;
}

.discount-input-group input {
    flex: 1;
}

.discount-input-group button {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.discount-input-group button:hover {
    background-color: var(--primary-dark);
}

.discount-message {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.discount-message.success {
    color: #10b981;
}

.discount-message.error {
    color: #ef4444;
}

.total-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: 10px;
    margin: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.submit-booking-btn,
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-booking-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--bg-card);
    position: relative;
    z-index: 2;
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.image-frame {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
    animation: rotate 10s linear infinite;
}

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

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

/* Projects Section */
.projects-section {
    background-color: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.project-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.project-card.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.project-card.featured .project-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    animation: pulse 2s ease-in-out infinite;
}

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

.project-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.project-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.project-link:hover {
    gap: 0.75rem;
}

.social-links {
    text-align: center;
    margin-top: 3rem;
}

.social-links h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.ai-assistant {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.ai-assistant-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ai-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.ai-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.ai-status {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.ai-assistant-header h3 {
    color: var(--text-primary);
}

.ai-assistant p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.ai-chat-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ai-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Chat Modal */
.chat-modal {
    max-width: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px 20px 0 0;
}

.ai-avatar-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    flex-shrink: 0;
}

.ai-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.ai-subtitle {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.message-content {
    flex: 1;
}

.bot-message {
    align-self: flex-start;
}

.bot-message .message-content {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 15px;
    border-bottom-left-radius: 5px;
}

.user-message {
    flex-direction: row-reverse;
    align-self: flex-end;
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    border-radius: 15px;
    border-bottom-right-radius: 5px;
}

.chat-input-form {
    display: flex;
    gap: 0.5rem;
    padding: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.chat-input-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.chat-input-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.chat-input-form button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.chat-input-form button:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--bg-card);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--border-color);
}

.footer p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: -100px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    z-index: 3000;
}

.toast.show {
    bottom: 20px;
}

.toast i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-card);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

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

    .mobile-menu-toggle {
        display: block;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .image-frame {
        width: 220px;
        height: 220px;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }

    .express-delivery-option {
        padding: 1.5rem;
    }

    .express-badge {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .chat-modal {
        width: 95%;
        height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slogan {
        font-size: 1.2rem;
    }

    .consultation-booking {
        padding: 1rem;
    }
    
    .booking-step h3 {
        font-size: 1rem;
    }

    .templates-grid {
        grid-template-columns: 1fr;
    }
    .student-discount-section {
        font-size: 1.1rem;
        padding: 1.5rem 0.5rem;
    }
}

@media (max-width: 700px) {
  .about-text .cta-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .nav-brand {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .nav-brand h1 {
    margin: 0 auto;
    font-size: 1.5rem;
  }
  .nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .theme-toggle {
    display: inline-flex !important;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .project-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 8px;
  }
  .navbar .container, .footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: flex-start;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-slogan {
    font-size: 1.1rem;
  }
  .projects-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .project-card, .package-card {
    min-width: 0;
    width: 100%;
    margin: 0 auto;
  }
  .about-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-image {
    width: 100%;
    margin: 0 auto;
  }
  .profile-image {
    width: 100%;
    max-width: 220px;
    height: auto;
  }
  .modal-content {
    width: 98vw;
    max-width: 98vw;
    padding: 1rem;
  }
  .cta-button, .choose-template-btn, .more-details-btn, .submit-btn, .submit-booking-btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.9em 0;
  }
  .form-group, .form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .form-row > .form-group {
    width: 100%;
  }
  .projects-categories {
    gap: 1.5rem;
  }
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

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

/* Consultation Booking Styles */
.consultation-booking {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 2px solid var(--primary-color);
}

.booking-step h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.booking-step h3 i {
    color: var(--primary-color);
}

.help-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

#consultationDate {
    cursor: pointer;
    background-color: var(--bg-primary);
}

#consultationTime {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    cursor: pointer;
}

#consultationTime:focus {
    outline: none;
    border-color: var (--primary-color);
}

#consultationTime option {
    padding: 0.5rem;
}

.booking-summary {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.booking-summary i {
    color: #10b981;
    margin-right: 0.5rem;
}

.booking-summary p {
    margin: 0;
    color: var(--text-primary);
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.flatpickr-day.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
}

.flatpickr-day:hover {
    background-color: rgba(99, 102, 241, 0.1);
}

.flatpickr-current-month {
    color: var(--text-primary);
}

.flatpickr-weekday {
    color: var(--text-secondary);
}

.flatpickr-day {
    color: var(--text-primary);
}

.flatpickr-day.disabled {
    color: var(--text-secondary);
    opacity: 0.4;
}

/* Booking Confirmation Modal */
.confirmation-modal {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 1rem;
}

.confirmation-modal i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.confirmation-modal h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.confirmation-details {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: left;
}

.confirmation-details p {
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.confirmation-details strong {
    color: var(--primary-color);
}

/* Templates Section */
.templates-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}
.templates-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.template-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}
.template-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}
.template-category {
    font-size: 1.2rem;
    color: var (--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Student Discount Section */
.student-discount-section {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 3px solid var(--primary-color);
}
.student-discount-section .discount-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}
.student-discount-section p {
    margin: 1rem 0 0 0;
    font-size: 1.1rem;
    color: white;
}

/* Template Card Highlight */
.template-card.selected {
    border: 2.5px solid var(--primary, #6c63ff);
    box-shadow: 0 0 0 4px rgba(108,99,255,0.12);
    background: var(--highlight-bg, #f5f7ff);
    transition: box-shadow 0.2s, border 0.2s;
}
.template-card .choose-template-btn {
    margin-top: 0.5rem;
    background: var(--primary, #6c63ff);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.template-card .choose-template-btn:hover {
    background: #554ee2;
}
.template-preview-img {
    width: 100%;
    max-width: 320px;
    border-radius: 10px;
    margin: 0.5rem 0 0.75rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    object-fit: cover;
}

/* Template Preview Modal */
#templatePreviewModal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    align-items: center;
    justify-content: center;
}
#templatePreviewModal.active {
    display: flex;
}
.preview-modal-content {
    background: #fff;
    color: #222;
    border-radius: 16px;
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    max-width: 650px;
    width: 95vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    text-align: center;
}
.preview-modal-content .close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
}
#selectThisTemplateBtn {
    margin-top: 1.2rem;
}

/* Dark mode for modal */
body.dark-mode #templatePreviewModal .preview-modal-content {
    background: #23243a;
    color: #f5f5f5;
}
body.dark-mode #templatePreviewModal .close-modal {
    color: #bbb;
}

/* Info Bubbles */
.info-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.info-bubble {
  background: var(--bubble-bg, #222);
  color: var(--bubble-color, #fff);
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.info-bubble.active, .info-bubble:focus {
  background: var(--accent, #ffb347);
  color: #222;
  outline: none;
}
.bubble-info-content {
  margin-top: 0.75rem;
  background: var(--bubble-info-bg, #333);
  color: var(--bubble-info-color, #fff);
  border-radius: 1rem;
  padding: 0.75rem 1.2rem;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  display: none;
  min-height: 2.2rem;
}

/* More Details Button and Modal */
.more-details-btn {
  background: #a259ff;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.6rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.more-details-btn:hover, .more-details-btn:focus {
  background: #7c3aed;
  color: #fff;
}
#detailsModal {
  display: none;
  position: fixed;
  z-index: 1002;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.45);
}
#detailsModal .modal-content {
  background: var(--modal-bg, #181818);
  color: var(--modal-color, #fff);
  margin: 6% auto;
  padding: 2rem 2.5rem;
  border-radius: 1.2rem;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  text-align: left;
}
#detailsModal .close-modal {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
}
#detailsModal .close-modal:hover {
  color: var(--accent, #ffb347);
}
#detailsModal ul {
  margin: 1rem 0 0 0;
  padding-left: 1.2rem;
}
#detailsModal li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
