:root {
    --primary-color: #2C5282;
    --secondary-color: #F6AD55;
    --accent-color: #ED8936;
    --text-color: #2D3748;
    --light-bg: #EDF2F7;
    --dark-bg: #1A202C;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-bg);
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    p, h1, h2, h3, h4, h5, h6 {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 80px 0;
        transition: 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

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

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transition: 0.3s ease-in-out;
        z-index: 99;
    }

    .nav-overlay.active {
        visibility: visible;
        opacity: 1;
    }
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
}

.nav-toggle {
    display: none;
}

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

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.magical-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1B4F8C, #2980b9);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(27, 79, 140, 0.3);
}

.btn:hover:before {
    opacity: 0.9;
}

.btn-primary {
    background: #1B4F8C;
    color: white;
    border: none;
}

.btn-secondary {
    background: transparent;
    color: #1B4F8C;
    border: 2px solid #1B4F8C;
}

.btn-secondary:hover {
    color: white;
    border-color: transparent;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--light-bg), white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44,82,130,0.15);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: var(--light-bg);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s ease;
}

.feature-card:hover i {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

/* Destinations Preview */
.destinations-preview {
    padding: 8rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
}

.destination-card img {
    width: 40%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.destination-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 0;
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.location-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    background: rgba(27, 79, 140, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.destination-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.btn-explore {
    align-self: flex-start;
    padding: 0.5rem 1.2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: var(--primary-color);
    color: white;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.destination-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .destination-card {
        height: auto;
        flex-direction: column;
    }
    
    .destination-card img {
        width: 100%;
        height: 200px;
    }
    
    .card-content {
        width: 100%;
    }
    
    .btn-explore {
        align-self: center;
    }
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    height: 45%;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(10px);
    color: var(--text-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.destination-card:hover .card-content {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
}

.destination-card:hover .card-content h3 {
    transform: translateX(5px);
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.85;
    max-width: 280px;
    margin: 0 auto;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.card-meta i {
    color: var(--secondary-color);
}

.destination-card:hover .card-content {
    transform: translateY(-10px);
}

/* Services Preview */
.services-preview {
    padding: 8rem 0;
    background: linear-gradient(to bottom, white, var(--light-bg));
}

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

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44,82,130,0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(44,82,130,0.9), rgba(44,82,130,0.9)),
                url('https://images.unsplash.com/photo-1590144662036-33bf0ebd2c7f');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    color: #2c3e50;
    padding: 4rem 2rem 1rem;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
}
.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #495057;
    text-decoration: none;
    opacity: 1;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.05rem;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.8rem;
    background: #2C5282;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

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

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

    .feature-card,
    .service-card {
        padding: 2rem 1.5rem;
    }

    .destination-card {
        height: 350px;
    }

    .footer-content {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Services Page Specific Styles */
.services-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1569697483517-45c3ac41195a') center/cover;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.services-detailed {
    padding: 5rem 0;
}

.services-detailed .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-detailed .service-card ul {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.services-detailed .service-card li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.services-detailed .service-card li:before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.services-detailed .service-card .btn {
    align-self: center;
    margin-top: auto;
}

.why-choose-us {
    background: var(--light-bg);
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .services-header {
        height: 40vh;
    }
    
    .services-detailed .service-card {
        margin-bottom: 2rem;
    }
}

.footer {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    color: #2c3e50;
    padding: 4rem 2rem 1rem;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
}

.footer-links {
    padding: 0 1rem;
}

.footer-links h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #495057;
    text-decoration: none;
    opacity: 1;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.05rem;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--primary-color);
}

.footer-social h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 1.2rem;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: #f8fafc;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(44,82,130,0.1);
}

.footer-contact i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.footer-contact a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,82,130,0.2);
}

.footer-contact a:hover i {
    color: white;
}

.footer-links a:hover {
    opacity: 1;
}

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

.social-links a {
    color: #ffffff;
    font-size: 1.8rem;
    background: #2C5282;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        cursor: pointer;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 40px;
        transition: 0.3s;
    }

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

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

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

    .destination-card {
        height: 300px;
    }
}
/* Page Transitions and Animations */
.page-transition {
    animation: fadeIn 0.8s ease-out;
}

.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.card-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.card-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

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

/* Apply animations to specific elements */
.hero-content,
.features-grid,
.destination-grid,
.services-grid,
.testimonial-slider,
.cta-section,
.footer-content {
    animation: fadeIn 0.8s ease-out;
}

.feature-card,
.destination-card,
.service-card,
.testimonial-slide {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.feature-card.animate,
.destination-card.animate,
.service-card.animate,
.testimonial-slide.animate {
    opacity: 1;
    transform: translateY(0);
}

.btn:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
}

.nav-toggle {
    display: none;
}

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

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.magical-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--light-bg), white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44,82,130,0.15);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: var(--light-bg);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s ease;
}

.feature-card:hover i {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

/* Destinations Preview */
.destinations-preview {
    padding: 8rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
}

.destination-card img {
    width: 40%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.destination-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 0;
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.location-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    background: rgba(27, 79, 140, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.destination-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.btn-explore {
    align-self: flex-start;
    padding: 0.5rem 1.2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: var(--primary-color);
    color: white;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.destination-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .destination-card {
        height: auto;
        flex-direction: column;
    }
    
    .destination-card img {
        width: 100%;
        height: 200px;
    }
    
    .card-content {
        width: 100%;
    }
    
    .btn-explore {
        align-self: center;
    }
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    height: 45%;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(10px);
    color: var(--text-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.destination-card:hover .card-content {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
}

.destination-card:hover .card-content h3 {
    transform: translateX(5px);
}

.card-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.85;
    max-width: 280px;
    margin: 0 auto;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.card-meta i {
    color: var(--secondary-color);
}

.destination-card:hover .card-content {
    transform: translateY(-10px);
}

/* Services Preview */
.services-preview {
    padding: 8rem 0;
    background: linear-gradient(to bottom, white, var(--light-bg));
}

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

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44,82,130,0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(44,82,130,0.9), rgba(44,82,130,0.9)),
                url('https://images.unsplash.com/photo-1590144662036-33bf0ebd2c7f');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    color: #2c3e50;
    padding: 4rem 2rem 1rem;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
}
.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #495057;
    text-decoration: none;
    opacity: 1;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.05rem;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.8rem;
    background: #2C5282;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

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

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

    .feature-card,
    .service-card {
        padding: 2rem 1.5rem;
    }

    .destination-card {
        height: 350px;
    }

    .footer-content {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Services Page Specific Styles */
.services-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1569697483517-45c3ac41195a') center/cover;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.services-detailed {
    padding: 5rem 0;
}

.services-detailed .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-detailed .service-card ul {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.services-detailed .service-card li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.services-detailed .service-card li:before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.services-detailed .service-card .btn {
    align-self: center;
    margin-top: auto;
}

.why-choose-us {
    background: var(--light-bg);
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .services-header {
        height: 40vh;
    }
    
    .services-detailed .service-card {
        margin-bottom: 2rem;
    }
}

.footer {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    color: #2c3e50;
    padding: 4rem 2rem 1rem;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
}

.footer-links {
    padding: 0 1rem;
}

.footer-links h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #495057;
    text-decoration: none;
    opacity: 1;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.05rem;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--primary-color);
}

.footer-social h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 1.2rem;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: #f8fafc;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(44,82,130,0.1);
}

.footer-contact i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.footer-contact a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44,82,130,0.2);
}

.footer-contact a:hover i {
    color: white;
}

.footer-links a:hover {
    opacity: 1;
}

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

.social-links a {
    color: #ffffff;
    font-size: 1.8rem;
    background: #2C5282;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        cursor: pointer;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 40px;
        transition: 0.3s;
    }

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

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

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

    .destination-card {
        height: 300px;
    }
}