@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

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

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #2d3748;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    will-change: width;
}

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

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

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

/* Hero Section */
.hero {
    background:
        linear-gradient(
            135deg,
            rgba(102, 126, 234, 0.7),
            rgba(118, 75, 162, 0.6)
        ),
        url("../media/TAJ-MAHAL.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 400px;
    }
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

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

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Overview */
.overview {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
}

.overview-features {
    margin-top: 2rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 3rem;
    border-radius: 25px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.overview-stats::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Tour Highlights */
.highlights {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        rgba(248, 249, 250, 0.8),
        rgba(255, 255, 255, 0.9)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.section-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    transform: translateX(-50%);
}

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

.highlight-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

.highlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(102, 126, 234, 0.1),
        transparent
    );
    transition: left 0.6s;
}

.highlight-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

/* Itinerary */
.itinerary {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

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

.timeline::before {
    content: "";
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: none;
    margin-left: 80px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -42px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 1),
        0 4px 12px rgba(102, 126, 234, 0.3);
}

.timeline-item:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.timeline-time {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 120px;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.timeline-content h3 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: rotate 15s linear infinite;
}

.contact-info > * {
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: #2d3748;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

button[type="submit"] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

button[type="submit"]:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

button[type="submit"]:active {
    transform: translateY(-1px) scale(1.02);
}

.submit-button {
    width: 100% !important;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.loading-text {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

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

@keyframes spin {
    0% {
        transform: rotate(0deg) translateZ(0);
    }
    100% {
        transform: rotate(360deg) translateZ(0);
    }
}

/* Card Effects */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s;
}

.highlight-card:hover .card-shine {
    left: 100%;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-star {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.floating-star:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-star:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.floating-star:nth-child(3) {
    bottom: 20%;
    left: 60%;
    animation-delay: 2s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

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

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    animation: none;
}

.floating-icon {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 3D Tilt Effect */
[data-tilt] {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    will-change: transform;
    backface-visibility: hidden;
}

[data-tilt]:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

/* Elegant Footer */
.elegant-footer {
    background: linear-gradient(
        135deg,
        #0f0f2a 0%,
        #1a1a40 25%,
        #2d1b69 50%,
        #4a5568 75%,
        #667eea 100%
    );
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    min-height: auto;
    width: 100%;
}

.elegant-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(
        90deg,
        #667eea 0%,
        #764ba2 20%,
        #f093fb 40%,
        #4facfe 60%,
        #00f2fe 80%,
        #667eea 100%
    );
    background-size: 400% 100%;
    animation: rainbow-flow 6s ease-in-out infinite;
    box-shadow:
        0 0 30px rgba(102, 126, 234, 0.8),
        0 0 60px rgba(240, 147, 251, 0.4);
    will-change: background-position;
    transform: translateZ(0);
}

.elegant-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(102, 126, 234, 0.25) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(118, 75, 162, 0.25) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 80%,
            rgba(240, 147, 251, 0.2) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 70% 20%,
            rgba(79, 172, 254, 0.15) 0%,
            transparent 45%
        );
    pointer-events: none;
    animation: floating-lights 8s ease-in-out infinite;
}

/* Footer Container */
.footer-container {
    position: relative;
    z-index: 1;
}

/* Floating Elements */
.footer-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-star {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: float-star 6s ease-in-out infinite;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.floating-star:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-star:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.floating-star:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-star:nth-child(4) {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
    align-items: start;
}

/* Footer Column */
.footer-column {
    animation: fadeInUp 0.8s ease both;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}
.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}
.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

/* Brand Section */
.footer-brand {
    position: relative;
}

.footer-brand::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: linear-gradient(
        45deg,
        rgba(102, 126, 234, 0.15),
        rgba(118, 75, 162, 0.12),
        rgba(240, 147, 251, 0.08)
    );
    border-radius: 35px;
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
    filter: blur(1px);
}

.brand-title {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.brand-emoji {
    font-size: 3.2rem;
    animation: rotate-glow 5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    will-change: transform, filter;
    transform: translateZ(0);
}

.brand-text {
    background: linear-gradient(
        135deg,
        #f093fb 0%,
        #f5576c 30%,
        #4facfe 60%,
        #00f2fe 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient-shift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(240, 147, 251, 0.3);
    position: relative;
    will-change: background-position;
}

.brand-text::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #f093fb, #f5576c, #4facfe, #00f2fe);
    border-radius: 3px;
    animation: underline-glow 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(240, 147, 251, 0.6);
}

.brand-description {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    font-weight: 300;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    max-width: 90%;
}

.brand-social-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.brand-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.brand-social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.brand-social-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.5s ease;
}

.brand-social-links a:hover::before {
    left: 100%;
}

.brand-social-links a:nth-child(1):hover {
    background: #1da1f2;
}

.brand-social-links a:nth-child(2):hover {
    background: #e1306c;
}

.brand-social-links a:nth-child(3):hover {
    background: #e60023;
}

.brand-social-links a:nth-child(4):hover {
    background: #36465d;
}

/* Brand Stats */
.brand-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.15),
        rgba(240, 147, 251, 0.1)
    );
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.brand-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
}

.brand-stats .stat-item {
    text-align: center;
    padding: 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.brand-stats .stat-item:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.brand-stats .stat-number {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f093fb, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(240, 147, 251, 0.3);
}

.brand-stats .stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(4) rotate(180deg);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Contact Cards */
.contact-cards {
    display: grid;
    gap: 1rem;
}

.contact-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.06)
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 1.2rem;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    -moz-backdrop-filter: blur(25px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.contact-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(102, 126, 234, 0.25),
        0 0 30px rgba(240, 147, 251, 0.15);
    border-color: rgba(102, 126, 234, 0.4);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.08)
    );
}

.contact-card:hover::before {
    left: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow:
        0 6px 20px rgba(102, 126, 234, 0.4),
        0 0 15px rgba(240, 147, 251, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow:
        0 8px 25px rgba(102, 126, 234, 0.5),
        0 0 25px rgba(240, 147, 251, 0.4);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-value {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 400;
}

/* Footer Titles */
.footer-title {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f093fb, #4facfe, #00f2fe);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    animation: gradient-shift 3s ease-in-out infinite;
    will-change: background-position;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #f093fb, #4facfe, #00f2fe);
    border-radius: 2px;
    animation: glow 3s ease-in-out infinite alternate;
    box-shadow: 0 0 15px rgba(240, 147, 251, 0.5);
}

/* Navigation Links */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 0.8rem;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    will-change: transform, background-color;
    transform: translateZ(0);
}

.footer-nav-list a i {
    width: 16px;
    font-size: 0.9rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.footer-nav-list a:hover {
    color: white;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.2),
        rgba(240, 147, 251, 0.1)
    );
    transform: translateX(8px) scale(1.02);
    box-shadow:
        0 6px 20px rgba(102, 126, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.footer-nav-list a:hover i {
    color: #f093fb;
    transform: scale(1.1);
}

/* Contact Section Specific Styling */
.footer-contact .footer-nav-list a {
    font-size: 0.9rem;
    word-break: break-word;
}

.footer-contact .footer-nav-list a i.fa-phone {
    color: #48bb78;
}

.footer-contact .footer-nav-list a i.fa-envelope {
    color: #4facfe;
}

.footer-contact .footer-nav-list a i.fa-map-marker-alt {
    color: #f093fb;
}

.footer-contact .footer-nav-list a i.fa-whatsapp {
    color: #25d366;
}

.footer-contact .footer-nav-list a:hover {
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.15),
        rgba(240, 147, 251, 0.08)
    );
}

.footer-contact .footer-nav-list a[href^="tel:"]:hover {
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.3);
}

.footer-contact .footer-nav-list a[href^="mailto:"]:hover {
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3);
}

.footer-contact .footer-nav-list a[href*="maps"]:hover {
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.3);
}

.footer-contact .footer-nav-list a[href*="whatsapp"]:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7),
        rgba(15, 15, 40, 0.9),
        rgba(26, 26, 64, 0.8)
    );
    border-top: 3px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    -moz-backdrop-filter: blur(25px);
    position: relative;
    padding: 2.5rem 0;
    margin-top: 3rem;
    z-index: 10;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #667eea,
        #764ba2,
        #f093fb,
        #4facfe,
        #00f2fe,
        transparent
    );
    background-size: 200% 100%;
    animation: line-glow 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.copyright-section {
    width: 100%;
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    line-height: 1.8;
}

.copyright-symbol {
    font-size: 1.1rem;
}

.copyright-year {
    font-weight: 600;
    color: #f093fb;
}

.copyright-name {
    font-weight: 500;
    background: linear-gradient(135deg, #f093fb, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.owner {
    text-decoration: none;
    color: #667eea;
    font-weight: 500;
    transition: all 0.3s ease;
}

.owner:hover {
    color: #f093fb;
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.footer-bottom-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Animations */
@keyframes rainbow-flow {
    0% {
        background-position: 0% 50%;
        transform: translateZ(0);
    }
    25% {
        background-position: 25% 50%;
        transform: translateZ(0);
    }
    50% {
        background-position: 50% 50%;
        transform: translateZ(0);
    }
    75% {
        background-position: 75% 50%;
        transform: translateZ(0);
    }
    100% {
        background-position: 100% 50%;
        transform: translateZ(0);
    }
}

@keyframes floating-lights {
    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translateY(-10px) scale(1.05);
        opacity: 1;
    }
    66% {
        transform: translateY(5px) scale(0.95);
        opacity: 0.9;
    }
}

@keyframes float-star {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translate3d(0, -15px, 0) rotate(180deg);
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes gradient-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes underline-glow {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(240, 147, 251, 0.5);
        transform: scaleX(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(240, 147, 251, 0.8);
        transform: scaleX(1.1);
    }
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    }
    25% {
        transform: rotate(5deg);
        filter: drop-shadow(0 0 20px rgba(240, 147, 251, 0.7));
    }
    50% {
        transform: rotate(-3deg);
        filter: drop-shadow(0 0 25px rgba(79, 172, 254, 0.8));
    }
    75% {
        transform: rotate(8deg);
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.7));
    }
    100% {
        transform: rotate(0deg);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(240, 147, 251, 0.5);
    }
    to {
        box-shadow: 0 0 15px rgba(240, 147, 251, 0.8);
    }
}

@keyframes line-glow {
    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.2);
    }
}

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

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 0.6rem;
    background: rgba(14, 14, 22, 0.6);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0.5rem 0;
}

.social-links::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(102, 126, 234, 0.25),
        rgba(118, 75, 162, 0.25),
        rgba(240, 147, 251, 0.25)
    );
    border-radius: 50px;
    opacity: 0.5;
    z-index: -1;
    filter: blur(5px);
}

.social-links:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(23, 23, 35, 0.8);
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    will-change: transform, background;
}

.social-links a i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.12);
    color: white;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.social-links a:active {
    transform: translateY(-1px) scale(1.03);
    transition: all 0.1s;
}

.social-links a:hover i {
    transform: scale(1.1);
}

.social-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.5s ease;
    z-index: 1;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:nth-child(1):hover {
    background: linear-gradient(145deg, #1da1f2, #0d8bd9);
    border-color: rgba(29, 161, 242, 0.6);
}

.social-links a:nth-child(2):hover {
    background: linear-gradient(145deg, #f56040, #e1306c);
    border-color: rgba(225, 48, 108, 0.6);
}

.social-links a:nth-child(3):hover {
    background: linear-gradient(145deg, #e60023, #cc0000);
    border-color: rgba(230, 0, 35, 0.6);
}

.social-links a:nth-child(4):hover {
    background: linear-gradient(145deg, #36465d, #1c2736);
    border-color: rgba(54, 70, 93, 0.6);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .brand-social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .brand-social-links a {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .footer-bottom-content {
        padding: 1.2rem 1rem;
        gap: 1rem;
        flex-direction: column;
    }

    .copyright-text {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 0;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        margin-left: 60px;
        padding: 2rem 1.5rem;
    }

    .timeline-item::before {
        left: -32px;
    }

    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-time {
        margin-bottom: 0.5rem;
        min-width: auto;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        text-align: center;
    }

    .footer-content {
        padding: 4rem 0 0;
    }

    .brand-title {
        font-size: 2rem;
        text-align: center;
    }

    .brand-description {
        text-align: center;
        font-size: 1rem;
    }

    .brand-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.2rem;
        margin-bottom: 2rem;
    }

    .brand-stats .stat-item {
        padding: 0.6rem;
    }

    .brand-stats .stat-number {
        font-size: 1.5rem;
    }

    .brand-stats .stat-label {
        font-size: 0.75rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-contact .footer-nav-list a {
        font-size: 0.85rem;
        padding: 0.6rem 0.4rem;
        gap: 0.6rem;
    }

    .footer-contact .footer-nav-list a i {
        width: 14px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
    }

    .copyright-text {
        justify-content: center;
        font-size: 0.85rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 15px;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        margin-left: 0;
    }

    .timeline-item::before {
        display: none;
    }

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

    .overview-intro {
        font-size: 1.1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .overview-stats {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }

    .floating-contact {
        left: 20px;
        bottom: 20px;
    }

    .floating-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .overview,
    .highlights,
    .itinerary,
    .contact {
        padding: 60px 0;
    }

    .highlight-card,
    .feature-item {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Footer Mobile */
    .footer-content {
        padding: 3rem 0 0;
    }

    .brand-title {
        font-size: 1.8rem;
    }

    .brand-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .brand-stats {
        padding: 1rem;
        gap: 0.8rem;
    }

    .brand-stats .stat-number {
        font-size: 1.4rem;
    }

    .brand-stats .stat-label {
        font-size: 0.7rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact .footer-nav-list a {
        font-size: 0.8rem;
        padding: 0.5rem 0.3rem;
        gap: 0.5rem;
        text-align: left;
    }

    .footer-contact .footer-nav-list a i {
        width: 12px;
        font-size: 0.8rem;
    }

    .footer-contact .footer-nav-list li {
        margin-bottom: 0.6rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .copyright-text {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .footer-bottom-links {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .footer-bottom-link {
        font-size: 0.8rem;
    }

    @media (max-width: 480px) {
        .hero {
            background-attachment: scroll;
            min-height: 400px;
        }

        .social-links {
            gap: 0.5rem;
            padding: 0.5rem;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            transform: translateY(-2px) scale(1.05);
        }

        .social-links:hover {
            transform: translateY(-2px);
        }
    }

@media (max-width: 360px) {
    .brand-title {
        font-size: 1.6rem;
    }

    .brand-description {
        font-size: 0.9rem;
    }

    .brand-social-links {
        gap: 0.5rem;
    }

    .brand-social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .social-links {
        gap: 0.4rem;
        padding: 0.4rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .social-links a:hover {
        transform: translateY(-1px) scale(1.03);
    }

    .social-links:hover {
        transform: translateY(-1px);
    }
}

@media (max-width: 360px) {
    .contact-cards {
        gap: 0.8rem;
    }

    .contact-card {
        padding: 0.8rem;
    }

    .contact-value {
        font-size: 0.85rem;
        word-break: break-all;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .floating-star {
        display: none;
    }

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

    .footer-content {
        padding: 2rem 0 0;
    }

    .footer-contact .footer-nav-list a {
        font-size: 0.75rem;
        padding: 0.4rem 0.2rem;
        gap: 0.4rem;
        word-break: break-all;
    }

    .footer-contact .footer-nav-list a i {
        width: 10px;
        font-size: 0.75rem;
        min-width: 10px;
    }
}

/* Print Styles */
@media print {
    .elegant-footer {
        background: white !important;
        color: black !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .footer-floating-elements,
    .floating-star {
        display: none !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .contact-card {
        border: 1px solid #ccc !important;
        background: #f9f9f9 !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .elegant-footer {
        background: #000 !important;
        color: #fff !important;
    }

    .contact-card {
        border: 2px solid #fff !important;
        background: #333 !important;
    }

    .footer-title,
    .brand-text {
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .floating-star {
        animation: none !important;
        transform: none !important;
    }

    .elegant-footer::before,
    .elegant-footer::after {
        animation: none !important;
        transform: none !important;
    }

    .brand-emoji,
    .brand-text,
    .footer-title {
        animation: none !important;
    }
}
