
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --primary: #D70606;
    --secondary: #d70606;
    --accent: #ffd23f;
    --dark: #1a1a2e;
    --light: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    overflow-x: hidden;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a:hover {
    color: var(--secondary);
    transform: translateY(-1px);
}

.breadcrumb i {
    color: var(--gray-400);
    font-size: 12px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/Indiatourlandingtest/1 (1).png') center center / cover no-repeat;
    animation: float 6s ease-in-out infinite;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-weight: 400;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: var(--dark);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(255, 210, 63, 0.4);
    animation: slideUp 1s ease-out 0.4s both;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 210, 63, 0.6);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 50px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    position: relative;
    z-index: 10;
}

/* Content Area */
.content-area {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.intro-section {
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 78, 137, 0.05) 100%);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 32px;
    text-align: justify;
}

/* Tour Grid */
.tour-grid {
    padding: 0 48px 48px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 48px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.tours-container {
    display: grid;
    gap: 32px;
}

.tour-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.tour-image {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255, 210, 63, 0.4);
}

.tour-days {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.tour-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    
}

.tour-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.tour-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-title a:hover {
    color: var(--primary);
}

.tour-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--accent);
    font-size: 16px;
}

.rating-text {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

.tour-actions {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
/* Default: Center on mobile */
.view-btn-wrapper {
    display: flex;
    justify-content: center; /* Center by default */
    margin-top: 10px;
}

.view-details {
    margin-top: 16px;
    padding: 10px 20px;
    background-color: var(--primary, #d70606);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    max-width: 200px;
    width: 100%; /* Full width on mobile */
    text-align: center;
    transition: background 0.3s ease;
}

/* Hover effect */
.view-details:hover {
    background-color: #b50505;
}

/* On desktop: align button to left */
/* @media (min-width: 992px) {
    .view-btn-wrapper {
        justify-content: flex-start; 
    }

    .view-details {
        width: 100%; /
    }
} */


/* Sidebar */
.sidebar {
    position: sticky;
    top: -70px; 
    align-self: start;
    max-height: calc(380vh - 80px); 
    /* overflow-y: auto;  */
    padding-right: 10px; 
    /* background: #fff; 
    box-shadow: 0 0 10px rgba(0,0,0,0.1);  */
    }

.sidebar-widget {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.language-selector {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(255, 107, 53, 0.4);
}

@media (max-width: 576px) {
    .sidebar-widget {
      padding: 16px;
      border-radius: 12px;
    }
  
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 12px;
      font-size: 13px;
    }
  
    .submit-btn {
      padding: 14px;
      font-size: 13px;
    }
  }
  @media (max-width: 991px) {
    .sidebar {
      position: static !important;
      top: auto !important;
      max-height: none !important;
      padding-right: 0 !important;
    }
  }
  @media (max-width: 1200px) {
    .sidebar {
      position: static !important;
      top: auto !important;
      max-height: none !important;
      padding-right: 0 !important;
    }
  }
  
.contact-info {
    background: linear-gradient(135deg, var(--dark), var(--gray-800));
    color: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}
.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}
a{
    text-decoration: none;
    text-align: center;
}
.submit-btn {
    background: linear-gradient(135deg, var(--accent), #ffed4e);
    color: var(--dark);
    padding: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(255, 210, 63, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 210, 63, 0.4);
}

.destinations-list,
.packages-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.destinations-list li,
.packages-list li {
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--gray-50);
    transition: all 0.3s ease;
}

.destinations-list li:hover,
.packages-list li:hover {
    background: var(--primary);
    transform: translateX(4px);
}

.destinations-list a,
.packages-list a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.destinations-list li:hover a,
.packages-list li:hover a {
    color: white;
}
@media (max-width: 768px) {
    .contact-info {
        padding: 16px;
        border-radius: 12px;
    }

    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }

    .booking-form {
        gap: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 13px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 13px;
    }

    .destinations-list,
    .packages-list {
        gap: 10px;
    }

    .destinations-list li,
    .packages-list li {
        padding: 10px 14px;
        border-radius: 10px;
    }

    .destinations-list a,
    .packages-list a {
        font-size: 14px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 40px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 12px;
        padding: 12px;
    }

    .destinations-list a,
    .packages-list a {
        font-size: 13px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 1fr; /* Stack content and sidebar */
        gap: 20px;
    }

    .tour-item {
        grid-template-columns: 1fr; /* Stack tour items */
        text-align: center;
    }

    .tour-image {
        max-height: 400px; /* Adjust height for images */
    }
    
}

@media (max-width: 768px) {
    .hero-section {
       
        height: 50vh;
        min-height: 400px; /* Adjust hero section height for mobile */
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem); /* Responsive title size */
    }

    .hero-subtitle {
        font-size: 1rem; /* Smaller subtitle for mobile */
    }

    .intro-text {
        font-size: small;
    }
    .main-container {
        padding: 0 16px; /* Reduce padding */
        gap: 24px; /* Adjust gap between elements */
    }

    .content-area,
    .sidebar-widget {
        padding: 24px; /* Adjust padding for content areas */
    }

    .intro-section {
        padding: 32px 16px; /* Adjust padding for intro section */
        margin:0;
    }

    .tour-grid {
        padding: 0 16px 32px; 
    }

    .section-title {
        font-size: 2rem; /* Adjust section title size */
        margin-bottom: 32px; /* Adjust margin bottom */
    }

    

    .tour-item {
        flex-direction: column; /* Stack tour item contents vertically */
        text-align: center; /* Center text */
    }
}
@media (max-width: 480px) {
    .tour-item {
        border-radius: 14px;
    }

    .tour-image {
        height: 180px;
    }
    .tour-title
    {
        font-size: 17px;
    }
    .tour-meta span {
        font-size: 11px;
        /* text-align:left; */
    }
    .tour-description
    {
        font-size:10px;
    }
    
    .tour-badge,
    .tour-days {
        font-size: 9px;
        padding: 4px 10px;
    }
}

.map-container {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding:30px;
    border-radius:15px;
    height: 100%;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-text h2 {
    color: white;
    margin-bottom: 30px;
}

.destination-list {
    list-style: none;
}

.destination-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.destination-item:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 20px;
    border-radius: 10px;
}

.destination-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.map-visual {
    position: relative;
    height: 400px;
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}
@media (max-width: 768px) {
    .map-content {
      grid-template-columns: 1fr; /* ✅ Responsive */
      gap: 30px;
    }
  }
  
.india-map-svg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 15px;
}

.map-region {
    fill: rgba(255,255,255,0.3);
    stroke: rgba(255,255,255,0.6);
    stroke-width: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-region:hover {
    fill: rgba(255,107,53,0.7);
    stroke: #ff6b35;
    stroke-width: 2;
}

.map-marker {
    fill: #ff6b35;
    stroke: white;
    stroke-width: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.map-label {
    fill: white;
    font-size: 12px;
    font-weight: bold;
    text-anchor: middle;
}
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    animation: fadeIn 0.3s ease-out;
}

.booking-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
}

.booking-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-form-header h2 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 24px;
}

.booking-form-header p {
    color: #666;
    font-size: 14px;
}

.booking-form-group {
    margin-bottom: 20px;
}

.booking-form-input,
.booking-form-select,
.booking-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.booking-form-input:focus,
.booking-form-select:focus,
.booking-form-textarea:focus {
    outline: none;
    border-color:#db412d;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.booking-form-textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.booking-btn-close {
    flex: 1;
    background: #f8f9fa;
    color: #666;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.booking-btn-close:hover {
    background: #e9ecef;
}

.booking-btn-submit {
    flex: 2;
    background: linear-gradient(135deg,#d70606);
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.booking-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-success-message {
    text-align: center;
    padding: 40px 20px;
}

.booking-success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}
.testimonials-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(0, 78, 137, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    opacity: 0;
    height:440px;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card.hidden {
    display: none;
}

.testimonial-card.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.client-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-left:100px;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.client-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.client-location {
    color: var(--gray-500);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: var(--primary);
    opacity: 0.1;
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.rating {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.star {
    color: var(--accent);
    font-size: 18px;
}

.tour-info {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(0, 78, 137, 0.05));
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
}

.tour-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 4px;
}

.tour-duration {
    color: var(--gray-600);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Load More Button Styles */
.load-more-container {
    text-align: center;
    margin: 60px 0;
}

.load-more-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.3);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.load-more-btn .btn-text {
    transition: opacity 0.3s ease;
}

.load-more-btn.loading .btn-text {
    opacity: 0;
}

.load-more-btn .loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.load-more-btn.loading .loading-spinner {
    opacity: 1;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    
    
    .client-avatar {
        width: 170px;
        height: 170px;
        font-size: 30px;
		margin-left:160px;
      
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
    .client-avatar {
        margin-left:50px !important;
    }
    .testimonial-card
    {
        height:510px;
		 padding: 30px;
    }
    .client-avatar {
        width: 140px;
        height: 140px;
        font-size: 20px;
       margin-left: 30%;
     
    }
}
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd23f, #06d6a0, #118ab2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 2;
}
/* Branches Section - Integrated into footer content */
.branches-section {
    padding: 20px 0 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.branches-title {
    color: #ffd23f;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.branches-title i {
    color: #06d6a0;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    text-align: left;
}

.branch-region {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid #ff6b35;
}

.region-title {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.branch-cities {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffd23f;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3 i {
    font-size: 1.2rem;
}

.company-info p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #ffd23f;
}

.contact-item i {
    width: 20px;
    color: #06d6a0;
    font-size: 1.1rem;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-links a:hover {
    color: #ffd23f;
    padding-left: 5px;
}

.quick-links a i {
    font-size: 0.8rem;
    color: #06d6a0;
}

.popular-tours {
    list-style: none;
}

.popular-tours li {
    margin-bottom: 12px;
}

.popular-tours a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.popular-tours a:hover {
    color: #ffd23f;
    padding-left: 5px;
}

.popular-tours a i {
    font-size: 0.8rem;
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link.facebook { background: #3b5998; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.twitter { background: #1da1f2; }
.social-link.youtube { background: #ff0000; }
.social-link.whatsapp { background: #25d366; }

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.newsletter {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.newsletter-btn {
    padding: 12px 25px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
  
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd23f;
}

.trust-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badge i {
    color: #06d6a0;
}

.decorative-element {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.decorative-element.taj {
    top: 20px;
    right: 50px;
    font-size: 3rem;
}

.decorative-element.lotus {
    bottom: 20px;
    left: 50px;
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (max-width: 1300px) {
    .footer {
        margin-top: 30px;
    }
    .map-container {
        margin-top: 34px;
    }
}


@media (max-width: 576px) {
    .map-container {
        height: 100%;
        margin-top: 5px !important;
    }
    .footer {
        margin-top: 10px !important;
    }
}
@media (max-width: 768px)
{
    .map-container
    {
        margin-top:30px;
    }
}
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 0;
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-overlay.active .contact-form {
    transform: translateY(0);
}

.form-header {
    background: #128C7E;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #128C7E;
    font-size: 18px;
}

.company-info h3 {
    font-size: 24px;
    margin-bottom: 2px;
}

.company-info p {
    font-size: 15px;
    opacity: 0.9;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.form-body {
    padding: 25px;
    background: #f8f9fa;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 99, 132, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(54, 162, 235, 0.1) 0%, transparent 50%);
    min-height: 300px;
}

.welcome-message {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #128C7E;
}

.welcome-message h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
}

.input-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #128C7E;
    box-shadow: 0 0 0 3px rgba(18, 140, 126, 0.1);
}

.form-input::placeholder {
    color: #8899a6;
}

.start-btn {
    width: 100%;
    background: #128C7E;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.start-btn:hover {
    background: #0f7a6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.3);
}

.start-btn:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .contact-form {
        margin: 20px;
    }
    
    .form-header {
        padding: 15px;
    }
    
    .form-body {
        padding: 20px;
    }
}

/* Success animation */
.success-message {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
 @media (max-width: 600px) {
        .modal h2 {
            font-size: 1.10rem !important;
        }
        .modal p,
        .modal div {
            font-size: 0.8rem !important;
        }
    }
