/* ============================================
   Dream Makers Tours & Travels - Modern CSS
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #667eea;
    --primary-dark: #5a67d8;
    --primary-light: #7c9cf5;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-hero: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    --dark-color: #1a202c;
    --light-color: #f7fafc;
    --text-muted: #718096;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 10px 40px rgba(102, 126, 234, 0.3);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

/* ============================================
   Navigation - Glassmorphism Style
   ============================================ */
.glass-navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.glass-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
}

.glass-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-color) !important;
}

.glass-navbar .logo-img {
    height: 85px;
    width: auto;
    transition: all 0.3s ease;
}

.glass-navbar.scrolled .logo-img {
    height: 70px;
}

/* Book Now CTA Button */
.btn-nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
}

.glass-navbar .navbar-nav .nav-link {
    padding: 10px 18px !important;
    font-size: 15px;
    font-weight: 500;
    color: #333 !important;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 3px;
}

.glass-navbar .navbar-nav .nav-link::before {
    display: none;
}

.glass-navbar .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(102, 126, 234, 0.1);
}

.glass-navbar .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(102, 126, 234, 0.15);
}

/* ============================================
   Hero Section - Enhanced
   ============================================ */
.hero {
    background: var(--gradient-hero), url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    height: 100vh;
    min-height: 650px;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 60%;
    left: 5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--secondary-color);
    top: 20%;
    right: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: var(--primary-light);
    bottom: 20%;
    right: 15%;
    animation-delay: -15s;
}

.shape-5 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    animation-delay: -8s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    animation: floatIcon 15s infinite ease-in-out;
}

.floating-icons i:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.floating-icons i:nth-child(2) { top: 25%; right: 20%; animation-delay: -3s; }
.floating-icons i:nth-child(3) { top: 60%; left: 8%; animation-delay: -6s; }
.floating-icons i:nth-child(4) { top: 70%; right: 10%; animation-delay: -9s; }
.floating-icons i:nth-child(5) { top: 40%; left: 15%; animation-delay: -12s; }
.floating-icons i:nth-child(6) { top: 80%; left: 25%; animation-delay: -4s; }

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.5;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero h1 .highlight {
    display: block;
    background: linear-gradient(to right, #fff, #f093fb, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 40px;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.2s backwards;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.4s backwards;
}

.btn-hero {
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: white;
    color: var(--primary-color);
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: all 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.btn-hero:hover {
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.btn-hero:hover::before {
    transform: scaleX(1);
}

.btn-hero-outline {
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.4s ease;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Wave Separator */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-separator .wave-path {
    fill: #ffffff;
    fill-opacity: 1;
}

/* Scroll Down Indicator - Enhanced */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.scroll-down a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* ============================================
   About Section - Enhanced
   ============================================ */
.about-section {
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--gradient-primary);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: floatBadge 3s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-content {
    padding: 20px;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 400;
}

.rating-box {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.rating-stars {
    color: #ffc107;
    margin-right: 10px;
}

.rating-stars i {
    font-size: 0.9rem;
    margin-right: 2px;
}

.rating-text {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.contact-details {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item .icon-box {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--dark-color);
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.contact-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-about {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 50px;
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
    background: var(--primary-dark);
}

.btn-about-outline {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-about-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .about-content h2 {
        font-size: 2rem;
    }
    
    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .contact-details {
        padding: 20px;
    }
    
    .btn-about, .btn-about-outline {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 10px;
    }
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background: white;
}

.services-section .card {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    height: 100%;
    background: white;
    position: relative;
    z-index: 1;
}

.services-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: all 0.4s ease;
    transform: scaleY(0);
    transform-origin: bottom;
}

.services-section .card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-primary);
}

.services-section .card:hover::before {
    transform: scaleY(1);
}

.services-section .card:hover .service-icon,
.services-section .card:hover h5,
.services-section .card:hover p {
    color: white;
}

.services-section .card:hover .service-icon {
    transform: scale(1.2);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-section .card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: var(--transition);
}

.services-section .card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
    margin-bottom: 0;
}

/* ============================================
   Destinations Section
   ============================================ */
.destinations-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}

.destinations-section .card {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    height: 100%;
    background: white;
}

.destinations-section .card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.destinations-section .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.destinations-section .card:hover .card-img-top {
    transform: scale(1.1);
}

.destinations-section .card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.destinations-section .card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: var(--transition);
}

.destinations-section .card:hover .card-img-wrapper::after {
    opacity: 1;
}

.destinations-section .card-body {
    padding: 20px;
}

.destinations-section .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.destinations-section .card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   Packages Section
   ============================================ */
.packages-section {
    background: white;
}

.packages-section .card {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    height: 100%;
    background: white;
}

.packages-section .card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.packages-section .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.packages-section .card:hover .card-img-top {
    transform: scale(1.1);
}

.packages-section .card-body {
    padding: 25px;
}

.packages-section .card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.packages-section .card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.packages-section .badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
}

.packages-section .bg-primary {
    background: var(--gradient-primary) !important;
}

.packages-section .bg-success {
    background: linear-gradient(135deg, #11998e, #38ef7d) !important;
}

.packages-section .bg-warning {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
    color: white;
}

.packages-section .bg-info {
    background: linear-gradient(135deg, #4facfe, #00f2fe) !important;
}

.packages-section .bg-secondary {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-section {
    background: var(--gradient-primary);
    color: white;
}

.why-choose-section .section-title h2 {
    color: white;
}

.why-choose-section .section-title h2::after {
    background: white;
}

.why-choose-section .section-title p {
    color: rgba(255, 255, 255, 0.85);
}

.why-choose-section i {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: var(--transition);
}

.why-choose-section .col-md-3:hover i {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1) rotate(360deg);
}

.why-choose-section h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choose-section p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* ============================================
   Future Vision Section
   ============================================ */
.future-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.future-section .section-title h2 {
    color: white;
}

.future-section .section-title h2::after {
    background: var(--primary-color);
}

.future-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.future-section .list-group-item {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 15px 20px;
    transition: var(--transition);
    color: white;
}

.future-section .list-group-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.future-section .list-group-item i {
    color: var(--primary-light);
    margin-right: 12px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: var(--light-color);
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.contact-info h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.contact-info p i {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition);
    background: #f7fafc;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: white;
}

.contact-form .form-control::placeholder {
    color: #a0aec0;
}

.contact-form .btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: -1;
    transition: all 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.contact-form .btn-primary:hover::before {
    transform: scaleX(1);
}

/* Alert Messages */
.alert {
    border-radius: 10px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-success {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #eb3349, #f45c43);
    color: white;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.footer h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer .list-unstyled li {
    margin-bottom: 12px;
}

.footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer .list-unstyled a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer .list-unstyled a:hover {
    color: white;
    transform: translateX(10px);
}

.footer .fab {
    font-size: 1.8rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    margin-bottom: 10px;
}

.footer .fab:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) scale(1.1);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px;
}

.footer .text-center p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-info,
    .contact-form {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .footer .fab {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .contact-info,
    .contact-form {
        padding: 25px;
    }

    .btn-primary {
        width: 100%;
    }
}

/* ============================================
   Button Styles
   ============================================ */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* ============================================
   Utility Classes
   ============================================ */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-light-custom {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

