:root {
    --primary-color: #FF8C00;
    --primary-color-dark: #E67E00;
    --secondary-color: #213547;
    --accent-color: #f9fafb;
    --bg-color: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-color: #213547;
    --light-gray: #f9f9f9;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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

body {
    font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

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

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Mobile Coming Soon Banner */
.mobile-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    position: relative;
    z-index: 101;
}

.mobile-banner p {
    margin: 0;
    font-size: 1rem;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 5rem; /* Increased header height */
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    height: 100%;
}

.logo img {
    height: 4rem; /* Increased logo size */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.destinations-dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-icon {
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: -150px;
    background: white;
    width: 450px;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 10;
}

.destinations-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-section h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.dropdown-section + .dropdown-section {
    margin-top: 1.5rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem 1.2rem;
    list-style: none;
}

.destinations-grid a {
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.destinations-grid a:hover {
    color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 5rem);
    background-color: white;
    z-index: 99;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu .nav-links {
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu .nav-links a {
    font-size: 1.25rem;
}

body.menu-open {
    overflow: hidden;
}

/* Buttons */
.primary-button, .cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.primary-button:hover, .cta-button:hover {
    background-color: var(--primary-color-dark);
}

.secondary-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background-color: white;
    color: var(--primary-color);
}

.inquire-button {
    width: 100%;
    padding: 0.75rem;
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.inquire-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.explore-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.explore-button:hover {
    background-color: var(--primary-color-dark);
}

.chevron-right {
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/hero-img.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.app-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-coming-soon .icon {
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.app-coming-soon h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.app-coming-soon p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
}

.feature-card.animate-fade-in {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-items li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

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

/* Packages Section */
.packages {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

/* Image Carousel Styles */
.image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: scale(1);
}

.carousel-image.active {
    opacity: 1;
    z-index: 1;
}

.package-card:hover .carousel-image.active {
    transform: scale(1.1);
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background-color: white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.package-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    border-radius: 20px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.package-content {
    padding: 1.5rem;
}

.package-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.package-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.package-details {
    margin: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.package-inclusions, .package-itinerary {
    margin-bottom: 1.5rem;
}

.package-inclusions h4, .package-itinerary h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.package-inclusions ul {
    list-style-type: none;
    padding-left: 0;
}

.package-inclusions li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.package-inclusions li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.itinerary-item {
    display: flex;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.itinerary-item:before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.itinerary-item:not(:last-child):after {
    content: "";
    position: absolute;
    left: 11px;
    top: 16px;
    width: 2px;
    height: calc(100% + 0.8rem - 16px);
    background-color: var(--border-color);
}

.itinerary-item .day {
    font-weight: 600;
    color: var(--primary-color);
    width: 60px;
    flex-shrink: 0;
}

.view-details-button {
    display: block;
    width: 100%;
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    text-align: center;
    padding: 0.5rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s;
}

.view-details-button:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

.explore-more {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Contact Section */
.contact-consultant {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info, .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.detail-icon, .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

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

.contact-detail a:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

.social-section {
    margin-top: 20px;
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s;
}

.contact-socials a:hover {
    background-color: var(--primary-color-dark);
}

.contact-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-content {
    color: var(--text-secondary);
}

.card-footer {
    margin-top: auto;
    padding-top: 15px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-button:hover {
    background-color: #20BD5A;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.value {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.value h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 4rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: white;
}

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

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color-dark);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 1s forwards;
}

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

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

/* Responsive Styles */
@media (max-width: 900px) {
    .hero .container {
        padding-top: 5rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .app-coming-soon {
        padding: 1.5rem;
    }
    
    .app-coming-soon .icon {
        width: 40px;
        height: 40px;
    }
    
    .app-coming-soon h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-button {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .features-grid,
    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-consultant .container {
        padding: 40px 20px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .dropdown-content {
        right: -100px;
        width: 300px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info, .contact-cards {
        gap: 15px;
    }
    
    /* Mobile carousel optimizations */
    .carousel-dots {
        bottom: 15px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        background-color: rgba(255, 255, 255, 0.7);
    }
    
    .dot.active {
        background-color: white;
    }
    
    .package-card {
        margin-bottom: 1rem;
    }
    
    .package-content {
        padding: 1rem;
    }
}

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

/* Responsive styles for services section */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Legal Dialogs */
.legal-dialog-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.legal-dialog {
    background-color: white;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.legal-dialog h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-dialog p {
    color: #333;
    line-height: 1.6;
}

.close-dialog {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.close-dialog:hover {
    background-color: var(--primary-color-dark);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.legal-link {
    background-color: #f9f9f9;
    color: #444;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.legal-link:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Package Inquiry Dialog */
.inquiry-dialog-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.inquiry-dialog {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.inquiry-dialog h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.inquiry-dialog p {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

.dialog-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.close-inquiry-dialog {
    background-color: #f3f4f6;
    color: var(--secondary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.close-inquiry-dialog:hover {
    background-color: #e5e7eb;
}

#package-name-display {
    font-weight: 600;
} 