/* This file will contain the redesigned styles for the Amera Taj Trip website. */

/* General Body Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(7, 110, 169, 0.2);
    touch-action: manipulation;
}

a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Section Spacing */
section {
    position: relative;
}

/* Fade-in Animation for Sections */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

section {
    animation: fadeIn 0.8s ease-out;
}

/* Header and Navigation */
.header-redesigned {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(7, 110, 169, 0.1);
}

.header-redesigned .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-redesigned .logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.header-redesigned .logo img:hover {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 25px;
    position: relative;
}

.main-nav > ul > li > a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 12px;
    display: block;
    position: relative;
    border-radius: 6px;
}

.main-nav > ul > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #076ea9 0%, #055a8c 100%);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav > ul > li > a:hover::before,
.main-nav > ul > li > a.active::before {
    width: 80%;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
    color: #076ea9;
    background-color: rgba(7, 110, 169, 0.05);
}

/* Dropdown Menu Styles */
.main-nav li.has-sub ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block;
    flex-direction: column;
    z-index: 1000;
}

.main-nav li.has-sub:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav li.has-sub ul li {
    margin: 0;
    width: 100%;
}

.main-nav li.has-sub ul li a {
    padding: 12px 20px;
    color: #333;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.main-nav li.has-sub ul li a:hover {
    background-color: #f5f5f5;
    color: #076ea9;
    border-left-color: #076ea9;
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    border: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    padding: 11px 15px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(7, 110, 169, 0.3);
    z-index: 1001;
    line-height: 1;
    min-width: 45px;
    text-align: center;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, #055a8c 0%, #044a73 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(7, 110, 169, 0.4);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle.active {
    background: linear-gradient(135deg, #055a8c 0%, #044a73 100%);
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info .phone {
    font-weight: 500;
    margin-right: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(7, 110, 169, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #055a8c 0%, #044a73 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(7, 110, 169, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Tour Packages Section */
.packages-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(245,247,250,0.9) 100%);
    position: relative;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(7, 110, 169, 0.2) 50%, transparent 100%);
}

.packages-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #076ea9;
    position: relative;
    padding-bottom: 20px;
}

.packages-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #076ea9 0%, #055a8c 100%);
    border-radius: 2px;
}

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

/* Stagger Animation for Cards */
.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }
.package-card:nth-child(4) { animation-delay: 0.4s; }

.package-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(7, 110, 169, 0.1);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #076ea9 0%, #055a8c 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.package-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.package-card-content {
    padding: 25px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.package-card-content h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.package-card-content .btn-secondary {
    color: #076ea9;
    background-color: transparent;
    border: 2px solid #076ea9;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.package-card-content .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.package-card-content .btn-secondary:hover {
    color: #fff;
    border-color: #076ea9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 110, 169, 0.3);
}

.package-card-content .btn-secondary:hover::before {
    left: 0;
}

/* Footer */
.footer-redesigned {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #076ea9 0%, #055a8c 50%, #076ea9 100%);
    box-shadow: 0 2px 10px rgba(7, 110, 169, 0.5);
}

.footer-redesigned::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(7, 110, 169, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(5, 90, 140, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-redesigned .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.footer-col {
    position: relative;
    text-align: left;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background: linear-gradient(90deg, #076ea9 0%, #055a8c 100%);
    height: 3px;
    width: 50px;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(7, 110, 169, 0.4);
}

.footer-col p {
    color: #d0d0d0;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 15px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    word-wrap: break-word;
    margin: 0 0 20px 0;
}

.footer-col p:last-child {
    margin-bottom: 0;
}

.footer-col p span {
    flex-shrink: 0;
    line-height: 1.8;
    vertical-align: top;
}

.footer-col p a {
    display: inline;
    padding: 0;
    margin: 0;
}

.footer-col p a::after {
    display: none;
}

.footer-col p a:hover {
    transform: none;
    color: #fff;
}

.footer-col p strong {
    color: #fff;
    font-weight: 600;
    display: inline-block;
    margin-right: 8px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-col li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.footer-col li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #076ea9;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.footer-col li:hover::before {
    opacity: 1;
    transform: translateX(5px);
    color: #055a8c;
}

/* Special styling for Tour Packages section */
.footer-packages ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-packages li {
    background: linear-gradient(135deg, rgba(7, 110, 169, 0.15) 0%, rgba(5, 90, 140, 0.15) 100%);
    border-left: 3px solid #076ea9;
    padding: 12px 15px 12px 35px;
    border-radius: 8px;
    margin-bottom: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.footer-packages li::before {
    content: '✨';
    left: 12px;
    color: #076ea9;
    opacity: 1;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-packages li::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(7, 110, 169, 0.25) 50%, transparent 100%);
    transition: left 0.5s ease;
    z-index: 0;
}

.footer-packages li:hover {
    background: linear-gradient(135deg, rgba(7, 110, 169, 0.25) 0%, rgba(5, 90, 140, 0.25) 100%);
    border-left-color: #ffd700;
    border-left-width: 4px;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(7, 110, 169, 0.4);
}

.footer-packages li:hover::after {
    left: 100%;
}

.footer-packages li a {
    color: #e0e0e0;
    font-weight: 500;
    display: block;
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 1.5;
}

.footer-packages li:hover a {
    color: #fff;
    transform: none;
    font-weight: 600;
}

.footer-packages li:hover::before {
    transform: translateY(-50%) rotate(15deg) scale(1.2);
    color: #ffd700;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
}

.footer-col a {
    text-decoration: none;
    color: #d0d0d0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding: 4px 0;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #076ea9 0%, #055a8c 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-col a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    align-items: flex-start;
    justify-content: flex-start;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: linear-gradient(135deg, rgba(7, 110, 169, 0.2) 0%, rgba(5, 90, 140, 0.2) 100%);
    border: 2px solid rgba(7, 110, 169, 0.3);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    padding: 0;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.social-links a img {
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(1);
}

.social-links a:hover {
    background: transparent;
    border-color: #076ea9;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(7, 110, 169, 0.4);
}

.social-links a:hover img {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #076ea9 50%, transparent 100%);
}

.footer-bottom p {
    font-size: 15px;
    color: #bbb;
    margin: 0;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
}

.footer-bottom p strong {
    color: #076ea9;
    font-weight: 600;
}

/* Attractions Page */
.attractions-section,
.market-section,
.form-section,
.gallery-section,
.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(245,247,250,0.95) 100%);
}

.attractions-section h1,
.market-section h1,
.form-section h1,
.gallery-section h1,
.contact-section h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #076ea9;
    position: relative;
    padding-bottom: 20px;
}

.attractions-section h1::after,
.market-section h1::after,
.form-section h1::after,
.gallery-section h1::after,
.contact-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #076ea9 0%, #055a8c 100%);
    border-radius: 2px;
}

.breadcrumb {
    text-align: center;
    margin-bottom: 50px;
    font-size: 15px;
    color: #666;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.breadcrumb a {
    color: #076ea9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #055a8c;
    text-decoration: underline;
}

.breadcrumb span {
    color: #999;
}

.attraction-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    margin-bottom: 35px;
    display: flex;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(7, 110, 169, 0.1);
}

.attraction-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.attraction-card img {
    width: 40%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.attraction-card-content {
    padding: 35px;
    width: 60%;
}

.attraction-card-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2c3e50;
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.attraction-card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Agra Market Page */
.market-section {
    padding: 60px 0;
}


.market-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 20px;
}

.market-item {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(7, 110, 169, 0.1);
}

.market-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 110, 169, 0.1) 0%, rgba(5, 90, 140, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.market-item:hover::after {
    opacity: 1;
}

.market-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.market-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.market-item:hover img {
    transform: scale(1.08);
}

.market-item-caption {
    padding: 18px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    background-color: #fff;
}

.market-item-caption h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Plan Your Trip Form */
.form-section {
    padding: 60px 0;
}


.form-section .form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 55px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-top: 4px solid #076ea9;
    position: relative;
    overflow: hidden;
}

.form-section .form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #076ea9 0%, #055a8c 50%, #076ea9 100%);
}

.form-section .form-container p {
    color: #666;
    line-height: 1.8;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: 2px solid #e0e0e0;
    padding: 16px 18px;
    width: 100%;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    background-color: #fafbfc;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.form-control {
    padding-right: 45px;
    padding-left: 18px;
    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='%23076ea9' 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 12px center;
    background-size: 20px;
    cursor: pointer;
    line-height: 1.5;
    min-height: 52px;
    height: 52px;
    vertical-align: middle;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

select.form-control:focus {
    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='%23055a8c' 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");
}

select.form-control option {
    padding: 12px 15px;
    background-color: #fff;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    min-height: 44px;
}

select.form-control option:disabled {
    color: #999;
    font-style: italic;
}

select.form-control option:checked,
select.form-control option[selected] {
    background-color: #076ea9;
    color: #fff;
}

select.form-control option:hover {
    background-color: #f0f0f0;
}

select.form-control:invalid {
    color: #999;
}

select.form-control:valid:not([value=""]) {
    color: #333;
}

/* Fix for IE and older browsers */
select.form-control::-ms-expand {
    display: none;
}

.form-control:focus {
    outline: none;
    border-color: #076ea9;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(7, 110, 169, 0.1), 0 4px 12px rgba(7, 110, 169, 0.15);
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #999;
}

.form-control:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.form-control:valid:not(:focus):not(:placeholder-shown) {
    border-color: #27ae60;
}

.form-group {
    position: relative;
}

.form-group .error-message {
    display: none;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    font-weight: 500;
}

.form-control:invalid:not(:focus):not(:placeholder-shown) + .error-message,
.form-control:invalid:not(:focus):not(:placeholder-shown) ~ .error-message {
    display: block;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    color: #fff;
    padding: 16px 45px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(7, 110, 169, 0.3);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #055a8c 0%, #044a73 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(7, 110, 169, 0.5);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Gallery Page */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(245,247,250,0.95) 100%);
    min-height: 100vh;
}

.gallery-section .container {
    position: relative;
}

/* Gallery Section Description */
.gallery-section .gallery-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 17px;
    line-height: 1.9;
    padding: 0 20px;
    font-weight: 400;
}

/* Gallery Empty State */
.gallery-grid:empty::before {
    content: 'No images available at the moment.';
    display: block;
    text-align: center;
    color: #999;
    font-size: 18px;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    margin-top: 20px;
}

/* Gallery Item Loading Animation */
.gallery-item.loaded {
    opacity: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 0;
}

/* Masonry-like effect for better visual appeal */
.gallery-item:nth-child(3n+1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(3n+2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3n+3) {
    animation-delay: 0.3s;
}

.gallery-item {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(7, 110, 169, 0.1);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.gallery-item a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 110, 169, 0.85) 0%, rgba(5, 90, 140, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 48px;
    color: #fff;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    pointer-events: none;
    line-height: 1;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.2);
    border-color: rgba(7, 110, 169, 0.3);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    z-index: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Loading state for gallery images */
.gallery-item img:not([src]),
.gallery-item img[src=""] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.gallery-item img[src]:not([src=""]) {
    background: none;
    animation: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Error state for broken images */
.gallery-item img[src=""],
.gallery-item img:not([src]) {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
}

.gallery-item img::after {
    content: '📷';
    font-size: 48px;
    display: block;
    text-align: center;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}


.contact-info-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.contact-details {
    width: 40%;
}

.contact-details h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 16px;
    line-height: 1.8;
}

.contact-form {
    width: 60%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-top: 4px solid #076ea9;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #076ea9 0%, #055a8c 50%, #076ea9 100%);
}

.contact-details h2 {
    color: #076ea9;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details p {
    line-height: 2;
}

.contact-details a {
    color: #076ea9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #055a8c;
    text-decoration: underline;
}

/* Mobile Navigation - Tablet and Below */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-top: 1px solid rgba(7, 110, 169, 0.1);
    }
    
    .main-nav.active {
        max-height: 800px;
        padding: 20px 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }
    
    .main-nav li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav > ul > li > a {
        padding: 15px 0;
        display: block;
        border-radius: 0;
    }
    
    .main-nav > ul > li > a::before {
        display: none;
    }
    
    .main-nav > ul > li > a:hover {
        background-color: rgba(7, 110, 169, 0.05);
        padding-left: 10px;
    }
    
    /* Mobile Dropdown */
    .main-nav li.has-sub ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f9f9f9;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0;
    }
    
    .main-nav li.has-sub.active ul {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .main-nav li.has-sub > a::after {
        content: '+';
        float: right;
        font-size: 20px;
        font-weight: bold;
        color: #076ea9;
        transition: transform 0.3s ease;
        margin-top: -2px;
    }
    
    .main-nav li.has-sub.active > a::after {
        content: '−';
        transform: rotate(0deg);
    }
    
    .main-nav li.has-sub ul li a {
        padding: 12px 20px 12px 30px;
        font-size: 14px;
    }
    
    .contact-info {
        margin-left: auto;
        margin-right: 15px;
    }
}

/* Large Desktop */
@media (max-width: 1200px) {
    .main-nav li {
        margin-left: 20px;
    }
    
    .container {
        max-width: 1140px;
    }
}

/* Prevent Text Overflow */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6,
    p, span, a, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix for long text */
    .package-card-content p,
    .attraction-card-content p,
    .contact-details p {
        word-break: break-word;
    }
}

@media (max-width: 768px) {
    .packages-section h2,
    .attractions-section h1,
    .market-section h1,
    .form-section h1,
    .gallery-section h1,
    .contact-section h1 {
        font-size: 32px;
        padding-bottom: 15px;
    }
    
    .packages-section h2::after,
    .attractions-section h1::after,
    .market-section h1::after,
    .form-section h1::after,
    .gallery-section h1::after,
    .contact-section h1::after {
        width: 60px;
        height: 3px;
    }
    .footer-redesigned .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links a {
        margin: 0 5px;
    }
}

/* Welcome Section Styling */
.pknamee {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pknamee span {
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glan {
    text-align: center;
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* Trip Section Enhancement */
.trip {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(7, 110, 169, 0.1);
}

.trip:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.trip h1 {
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.bk {
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(7, 110, 169, 0.3);
}

.bk:hover {
    background: linear-gradient(135deg, #055a8c 0%, #044a73 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(7, 110, 169, 0.5);
}

/* Note Section Styling */
.in2 {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #076ea9;
}

.in2 h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.in2 ul {
    list-style: none;
    padding: 0;
}

.in2 ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(7, 110, 169, 0.1);
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.in2 ul li:last-child {
    border-bottom: none;
}

.in2 ul li strong {
    color: #076ea9;
    font-weight: 600;
}

/* About Section Enhancement */
.aboutbg {
    background-attachment: fixed;
    position: relative;
}

.aboutbg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.about h2 {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Smooth Scroll Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card,
.attraction-card,
.market-item,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Intersection Observer Animation */
.package-card.visible,
.attraction-card.visible,
.market-item.visible,
.gallery-item.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Gallery Item Focus States for Accessibility */
.gallery-item a:focus {
    outline: 3px solid #076ea9;
    outline-offset: 4px;
    border-radius: 16px;
}

.gallery-item a:focus-visible {
    outline: 3px solid #076ea9;
    outline-offset: 4px;
}

/* Swipebox Overlay Improvements */
#swipebox-overlay {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#swipebox-slider .slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

#swipebox-slider .slide img {
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

#swipebox-prev,
#swipebox-next {
    background: rgba(7, 110, 169, 0.9) !important;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    min-width: 50px !important;
    min-height: 50px !important;
}

#swipebox-prev:hover,
#swipebox-next:hover {
    background: rgba(7, 110, 169, 1) !important;
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

#swipebox-close {
    background: rgba(7, 110, 169, 0.9) !important;
    border-radius: 50%;
    width: 45px !important;
    height: 45px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    min-width: 45px !important;
    min-height: 45px !important;
}

#swipebox-close:hover {
    background: rgba(7, 110, 169, 1) !important;
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Mobile Swipebox Controls */
@media (max-width: 768px) {
    #swipebox-prev,
    #swipebox-next {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
    }
    
    #swipebox-close {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }
    
    #swipebox-slider .slide img {
        max-width: 95%;
        max-height: 85vh;
    }
}

/* Loading State */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Pulse Animation for Important Elements */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.btn-primary:focus,
.btn-submit:focus {
    animation: pulse 2s infinite;
}

/* Hover Effect for Images */
img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover img {
    transform: scale(1.02);
}

/* Selection Color */
::selection {
    background-color: rgba(7, 110, 169, 0.3);
    color: #fff;
}

::-moz-selection {
    background-color: rgba(7, 110, 169, 0.3);
    color: #fff;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #076ea9 0%, #055a8c 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #055a8c 0%, #044a73 100%);
}

/* Tablet Responsive */
@media (max-width: 992px) and (min-width: 769px) {
    .packages-grid,
    .market-gallery,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .contact-info-container {
        gap: 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .header-redesigned .container {
        flex-wrap: wrap;
        padding: 0 15px;
    }
    
    .header-redesigned {
        padding: 12px 0;
    }
    
    .header-redesigned .logo {
        flex: 1;
    }
    
    .header-redesigned .logo img {
        height: 40px;
        max-width: 100%;
    }
    
    .mobile-menu-toggle {
        order: 2;
        margin-left: 10px;
    }
    
    .contact-info {
        order: 3;
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }
    
    .btn-primary {
        padding: 10px 18px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
    
    .main-nav {
        order: 4;
        width: 100%;
        margin-top: 10px;
    }
    
    .main-nav.active {
        max-height: 800px;
        padding: 15px 0;
    }
    
    .main-nav ul {
        padding: 0 15px;
    }
    
    .main-nav > ul > li > a {
        padding: 14px 0;
        font-size: 15px;
    }
    main-nav > ul > li > a {
        padding: 14px 0;
        font-size: 15px;
    }
    
    .main-nav li.has-sub > a::after {
        font-size: 18px;
        margin-top: -2px;
    }
    
    /* Packages Grid */
    .packages-grid,
    .market-gallery,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .gallery-item {
        max-width: 100%;
        aspect-ratio: 16/10;
    }
    
    .gallery-item::after {
        font-size: 32px;
    }
    
    .packages-section h2,
    .attractions-section h1,
    .market-section h1,
    .form-section h1,
    .gallery-section h1,
    .contact-section h1 {
        font-size: 28px;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }
    
    .packages-section h2::after,
    .attractions-section h1::after,
    .market-section h1::after,
    .form-section h1::after,
    .gallery-section h1::after,
    .contact-section h1::after {
        width: 50px;
        height: 3px;
    }
    
    .packages-section,
    .attractions-section,
    .market-section,
    .form-section,
    .gallery-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .breadcrumb {
        margin-bottom: 30px;
        padding: 10px 15px;
        font-size: 14px;
    }
    
    /* Cards */
    .package-card,
    .market-item,
    .gallery-item {
        margin-bottom: 0;
    }
    
    .package-card-content,
    .attraction-card-content {
        padding: 20px 15px;
    }
    
    .package-card-content h3 {
        font-size: 20px;
    }
    
    .package-card-content p {
        font-size: 14px;
    }
    
    .package-card img,
    .market-item img,
    .gallery-item {
        aspect-ratio: 4/3;
        min-height: 200px;
    }
    
    .gallery-item img {
        height: 100%;
        width: 100%;
    }
    
    .gallery-item::after {
        font-size: 36px;
    }
    
    /* Attraction Cards */
    .attraction-card {
        flex-direction: column;
        margin-bottom: 25px;
    }
    
    .attraction-card img {
        width: 100%;
        height: 220px;
    }
    
    .attraction-card-content {
        width: 100%;
        padding: 25px 20px;
    }
    
    .attraction-card-content h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .attraction-card-content p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* Market Items */
    .market-item-caption {
        padding: 15px 12px;
        font-size: 14px;
    }
    
    .market-item-caption h4 {
        font-size: 18px;
    }
    
    /* Forms */
    .form-section .form-container,
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-control {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    textarea.form-control {
        min-height: 100px;
    }
    
    .btn-submit {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
    }
    
    /* Contact Page */
    .contact-info-container {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    
    .contact-details,
    .contact-form {
        width: 100%;
    }
    
    .contact-details h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .contact-details p {
        font-size: 15px;
        line-height: 1.8;
    }
    
    /* Footer */
    .footer-redesigned {
        padding: 50px 0 20px;
    }
    
    .footer-redesigned .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-col h4 {
        font-size: 18px;
    }
    
    .footer-col h4::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col li::before {
        display: none;
    }
    
    .footer-col li {
        padding-left: 0;
    }
    
    .footer-col a:hover {
        transform: none;
    }
    
    .social-links {
        text-align: center;
        justify-content: center;
    }
    
    .social-links a {
        margin: 0 8px 10px;
    }
    
    .footer-col p {
        text-align: center;
    }
    
    .footer-packages li {
        padding: 10px 12px 10px 30px;
    }
    
    .footer-packages li::before {
        left: 10px;
        font-size: 14px;
    }
    
    /* Welcome Section */
    .pknamee {
        font-size: 28px;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    .glan {
        font-size: 15px;
        padding: 20px 15px;
        line-height: 1.8;
    }
    
    /* Trip Section */
    .trip {
        padding: 35px 20px;
        margin: 20px 0;
    }
    
    .trip h1 {
        font-size: 24px;
        padding: 20px 10px;
    }
    
    .trip img {
        max-width: 60px;
        height: auto;
    }
    
    .bk {
        padding: 15px 25px;
        font-size: 18px;
        width: 100%;
        max-width: 250px;
        margin: 15px auto;
        display: block;
    }
    
    /* Note Section */
    .in2 {
        padding: 20px 15px;
        margin: 30px 0;
    }
    
    .in2 h2 {
        font-size: 20px;
        padding: 10px 15px;
    }
    
    .in2 ul li {
        font-size: 14px;
        padding: 10px 0;
        padding-left: 0;
    }
    
    /* Package Card Buttons */
    .package-card-content .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    /* Image Responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .img-responsive {
        width: 100%;
        height: auto;
    }
    
    /* Prevent Horizontal Scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Fix for Bootstrap columns on mobile */
    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    /* Ensure images don't overflow */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix table responsiveness */
    table {
        width: 100%;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    
    /* Fix form elements */
    input, select, textarea {
        max-width: 100%;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    /* Fix select dropdown on iOS */
    select.form-control {
        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='%23076ea9' 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 12px center;
        background-size: 18px;
        padding-right: 40px;
        min-height: 48px;
    }
    
    select.form-control option {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    /* Touch-friendly buttons */
    button, a.btn-primary, a.btn-secondary, .btn-submit {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Prevent zoom on input focus iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    textarea,
    select {
        font-size: 16px;
    }
    
    /* Fix for fixed backgrounds on mobile */
    .aboutbg {
        background-attachment: scroll;
    }
    
    /* Improve touch targets */
    .main-nav > ul > li > a,
    .footer-col a,
    .package-card-content .btn-secondary {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Fix slider on mobile */
    .images-slider,
    #fwslider,
    #wowslider-container1 {
        width: 100%;
        overflow: hidden;
    }
    
    /* Fix WhatsApp button position */
    #whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    #whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    /* Fix to-top button */
    #toTop {
        width: 45px;
        height: 45px;
        bottom: 70px;
        right: 15px;
    }
    
    /* Ensure all sections are properly spaced */
    section {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Fix for flexbox items */
    .header-redesigned .container {
        flex-wrap: wrap;
    }
    
    /* Better spacing for mobile */
    .packages-section,
    .attractions-section,
    .market-section,
    .form-section,
    .gallery-section,
    .contact-section {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .header-redesigned {
        padding: 10px 0;
    }
    
    .header-redesigned .logo img {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        padding: 9px 12px;
        font-size: 20px;
    }
    
    .btn-primary {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .packages-section h2,
    .attractions-section h1,
    .market-section h1,
    .form-section h1,
    .gallery-section h1,
    .contact-section h1 {
        font-size: 24px;
    }
    
    .pknamee {
        font-size: 24px;
    }
    
    .glan {
        font-size: 14px;
        padding: 15px 12px;
    }
    
    .trip {
        padding: 25px 15px;
    }
    
    .trip h1 {
        font-size: 20px;
        padding: 15px 8px;
    }
    
    .bk {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .form-section .form-container,
    .contact-form {
        padding: 25px 15px;
    }
    
    .package-card-content,
    .attraction-card-content {
        padding: 18px 12px;
    }
    
    .package-card-content h3 {
        font-size: 18px;
    }
    
    .attraction-card-content h2 {
        font-size: 20px;
    }
    
    .market-item-caption h4 {
        font-size: 16px;
    }
    
    .contact-details h2 {
        font-size: 22px;
    }
    
    .footer-redesigned {
        padding: 40px 0 15px;
    }
    
    .footer-col h4 {
        font-size: 16px;
    }
    
    .footer-col p,
    .footer-col li {
        font-size: 13px;
    }
    
    .social-links a {
        height: 40px;
        width: 40px;
        margin: 0 5px 8px;
    }
    
    .social-links a img {
        width: 20px;
        height: 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .packages-section h2,
    .attractions-section h1,
    .market-section h1,
    .form-section h1,
    .gallery-section h1,
    .contact-section h1 {
        font-size: 22px;
    }
    
    .pknamee {
        font-size: 22px;
    }
    
    .trip h1 {
        font-size: 18px;
    }
    
    .bk {
        font-size: 14px;
        padding: 10px 18px;
    }
}
@media (min-width: 768px) {
    .footer-get-in-touch {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}