/* public/frontend/css/style.css */

:root {
    --primary-color: #165A31;
    --secondary-color: #0D3D20;
    --accent-color: #165A31;
    --uk-blue: #165A31;
    --uk-red: #0D3D20;
    --british-gold: #C9A961;
    --success-color: #165A31;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #165A31 0%, #0D3D20 100%);
    --gradient-british: linear-gradient(135deg, #165A31 0%, #0D3D20 100%);
}

html { overflow-x: hidden; }

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

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f1f5f9 100%);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 14px;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 0.75rem 0;
    backdrop-filter: blur(20px);
    background: rgb(2 111 50) !important;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--british-gold);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgb(27 93 32) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
    color: white !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--british-gold);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
    margin-top: 66px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: slideInUp 1s ease-out;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* Cards */
.feature-card, .card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--uk-blue);
}

/* Offer Cards */
.offer-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(1, 33, 105, 0.2);
    border-color: var(--british-gold);
}

.offer-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.offer-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image-wrapper img {
    transform: scale(1.1);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-british);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.offer-price {
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-british);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.75rem 0;
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 108, 53, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 108, 53, 0.3);
}

.btn-book {
    width: 100%;
    padding: 0.85rem;
    border-radius: 25px;
    background: var(--gradient-british);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(207, 20, 43, 0.25);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 20, 43, 0.35);
    color: white;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--british-gold);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--british-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Loading Screen */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 1s ease-out 1.5s forwards;
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--british-gold);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-british);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Section */
.section-spacing {
    padding: 45px 0;
}

.section-title {
    color: var(--uk-blue);
    margin-bottom: 2rem;
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-british);
    border-radius: 2px;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--british-gold);
    transform: translateX(3px);
}

/* Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: var(--british-gold) !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 45px !important;
    height: 45px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swiper-pagination-bullet-active {
    background: var(--british-gold) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .section-spacing {
        padding: 30px 0;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}



 :root {
     --primary-color: #165A31;
     --secondary-color: #0D3D20;
     --accent-color: #165A31;
     --uk-blue: #165A31;
     --uk-red: #0D3D20;
     --british-gold: #C9A961;
     --success-color: #165A31;
     --text-dark: #1f2937;
     --text-light: #6b7280;
     --bg-light: #f8fafc;
     --bg-card: #ffffff;
     --border-color: #e2e8f0;
     --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
     --gradient-primary: linear-gradient(135deg, #165A31 0%, #0D3D20 100%);
     --gradient-british: linear-gradient(135deg, #165A31 0%, #0D3D20 100%);
 }

html {
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f1f5f9 100%);
    color: var(--text-dark);
    line-height: 1.5;
    font-size: 14px;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6,p,span,a {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Compact spacing utilities */
.compact-section {
    padding: 40px 0;
}

.compact-card {
    padding: 1.25rem;
}

/* British Union Jack Pattern */
.british-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 40%, var(--uk-red) 45%, var(--uk-red) 55%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, var(--uk-red) 45%, var(--uk-red) 55%, transparent 60%),
        linear-gradient(90deg, transparent 45%, white 48%, white 52%, transparent 55%),
        linear-gradient(0deg, transparent 45%, white 48%, white 52%, transparent 55%),
        var(--uk-blue);
    opacity: 0.05;
    z-index: -1;
}

/* Animated Background Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--british-gold);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.1;
}

.particle:nth-child(1) { width: 3px; height: 3px; top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { width: 4px; height: 4px; top: 40%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { width: 2px; height: 2px; top: 60%; left: 40%; animation-delay: 2s; }
.particle:nth-child(4) { width: 3px; height: 3px; top: 80%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { width: 2px; height: 2px; top: 30%; left: 60%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

.navbar {
    padding: 0.75rem 0;
    backdrop-filter: blur(20px);
    background: #ffffff  !important;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--british-gold);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgb(27 93 32) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    background: var(--gradient-british);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
    color: #000000 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--british-gold);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

.navbar-nav .nav-link:hover {
    color: var(--british-gold) !important;
}

.btn-sm {
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
    margin-top: 66px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(207, 20, 43, 0.1) 0%, transparent 50%);
    animation: heroShine 8s ease-in-out infinite;
}

@keyframes heroShine {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* British Crown Icon Animation */
.crown-icon {
    position: absolute;
    top: 8%;
    right: 8%;
    font-size: 3rem;
    color: var(--british-gold);
    opacity: 0.1;
    animation: crownFloat 6s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-15px) rotate(5deg); opacity: 0.2; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: slideInUp 1s ease-out;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.hero-section .lead {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.3s both;
    font-weight: 400;
}

.hero-buttons {
    animation: slideInUp 1s ease-out 0.6s both;
}

.section-spacing {
    padding: 45px 0;
}

.section-title {
    color: var(--uk-blue);
    margin-bottom: 2rem;
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-british);
    border-radius: 2px;
}

.feature-card, .card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-british);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--uk-blue);
}

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

.feature-card i {
    font-size: 1rem !important;
    margin-bottom: 1rem;
    background: var(--gradient-british);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--uk-blue);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.offer-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: linear-gradient(white, white) padding-box,
    var(--gradient-british) border-box;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--british-gold), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover::before {
    opacity: 0.1;
}

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

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(1, 33, 105, 0.15);
}

.offer-price {
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-british);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.75rem 0;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 15px;
    font-size: 6rem;
    color: var(--uk-blue);
    opacity: 0.08;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--british-gold);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--british-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--uk-blue);
    font-size: 1rem;
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.graduation-overlay {
    position: absolute !important;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(1, 33, 105, 0.9));
    padding: 20px 15px 15px;
    border-radius: 0 0 12px 12px;
}

.swiper-slide {
    /*height: 320px;*/
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.graduation-image {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.graduation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.graduation-image:hover img {
    transform: scale(1.03);
}

.graduation-info {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
}

.graduation-info h5 {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.graduation-info p {
    color: var(--british-gold);
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.success-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--british-gold);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.partner-logo {
    height: 70px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--uk-blue);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--uk-red);
}

.modal-header {
    background: var(--gradient-british);
    color: white;
    padding: 1.25rem;
    border-radius: 12px 12px 0 0;
}

.modal-content {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-body {
    padding: 1.5rem;
}

.btn {
    font-weight: 500;
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

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

.btn:hover::before {
    width: 200px;
    height: 200px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 108, 53, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 108, 53, 0.3);
}

.btn-warning {
    background: var(--gradient-british);
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(207, 20, 43, 0.25);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 20, 43, 0.3);
    color: white;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Enhanced form controls - more compact and professional */
.form-control, .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    height: 38px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--uk-blue);
    box-shadow: 0 0 0 0.2rem rgba(1, 33, 105, 0.15);
    background: white;
}

.form-label {
    font-weight: 500;
    color: var(--uk-blue);
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.list-unstyled li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.list-unstyled li:hover {
    transform: translateX(3px);
}

.list-unstyled .bi-check-circle {
    color: var(--success-color);
    margin-left: 6px;
}

.nav-tabs {
    border-bottom: 2px solid var(--uk-blue);
    margin-bottom: 1.5rem;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 12px 12px 0 0;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-british);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: var(--uk-blue);
    color: white;
}

.nav-tabs .nav-link.active::before {
    transform: scaleX(1);
}

.footer {
    background: var(--gradient-primary);
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-british);
}

.footer h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer p, .footer li {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 0;
    background: var(--british-gold);
    transition: width 0.3s ease;
}

.footer a:hover {
    color: var(--british-gold);
    transform: translateX(3px);
}

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

.price-result {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid var(--success-color);
    border-radius: 12px;
    padding: 1.5rem;
    animation: resultSlideIn 0.4s ease-out;
}

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

.price-display {
    text-align: center;
    padding: 1rem;
}

.price-sar {
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-british);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.price-gbp {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--uk-blue);
}

.alert {
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border: none;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: var(--uk-blue);
}

.gradient-bg {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0f2fe 50%, #f1f5f9 100%);
    position: relative;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(1, 33, 105, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(207, 20, 43, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-british);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 1s ease-out 1.5s forwards;
}

.loading-crown {
    font-size: 3rem;
    color: var(--british-gold);
    animation: crownSpin 1s linear infinite;
}

@keyframes crownSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

/* Swiper Custom Styles */
.swiper-button-next,
.swiper-button-prev {
    color: var(--british-gold) !important;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px !important;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--british-gold) !important;
}

/* Enhanced form groups */
.form-group {
    margin-bottom: 1rem;
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input {
    margin-top: 0.15rem;
}

.form-check-label {
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* Badge enhancements */
.badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

.british-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--gradient-british);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
}

.union-jack-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background:
        linear-gradient(45deg, var(--uk-blue) 0%, var(--uk-blue) 33%, var(--uk-red) 33%, var(--uk-red) 66%, white 66%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    opacity: 0.08;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .section-spacing {
        padding: 30px 0;
    }

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

    .feature-card {
        margin-bottom: 1rem;
        padding: 1.25rem;
    }

    .modal-dialog {
        margin: 0.5rem;
    }

    .graduation-image {
        height: 200px;
    }

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

    .success-stats {
        margin-top: 10px;
        padding: 12px;
    }

    .crown-icon {
        font-size: 2.5rem;
        top: 5%;
        right: 5%;
    }

    .btn-lg {
        font-size: 0.9rem;
        padding: 0.65rem 1.2rem;
    }

    .price-sar {
        font-size: 1.8rem;
    }

    .price-gbp {
        font-size: 1.3rem;
    }

    .form-control, .form-select {
        font-size: 0.85rem;
    }

    .modal-body {
        padding: 1.25rem;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Custom row spacing */
.row.g-3 > * {
    padding-bottom: calc(var(--bs-gutter-y) * 0.75);
    padding-top: calc(var(--bs-gutter-y) * 0.75);
}

.row.g-4 > * {
    padding-bottom: calc(var(--bs-gutter-y) * 1);
    padding-top: calc(var(--bs-gutter-y) * 1);
}

/* Professional spacing adjustments */
.mb-3 {
    margin-bottom: 0.75rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mt-3 {
    margin-top: 0.75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

/* Enhanced accessibility */
.form-control:focus,
.form-select:focus,
.btn:focus {
    outline: none;
}

.btn:focus-visible {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}


 .section-spacing {
     padding: 45px 0;
 }

.section-title {
    color: var(--uk-blue);
    margin-bottom: 3rem;
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-british);
    border-radius: 2px;
}

.about .section-title::after {

    right: 5% !important;

}

/* Offer Card Styles */
.offer-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(1, 33, 105, 0.2);
    border-color: var(--british-gold);
}

.offer-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.offer-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image-wrapper img {
    transform: scale(1.1);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-british);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.country-flag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--uk-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}

.offer-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-city {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--uk-blue);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.offer-pricing {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    text-align: center;
}

.price-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.discount-badge {
    background: var(--accent-color);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.offer-price {
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-british);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 4px;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.offer-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: start;
    gap: 8px;
}

.offer-features li i {
    color: var(--success-color);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.accommodation-type {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--british-gold);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.accommodation-type i {
    color: var(--british-gold);
    font-size: 1.2rem;
    margin-left: 6px;
}

.accommodation-type span {
    color: var(--uk-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-book {
    width: 100%;
    padding: 0.85rem;
    border-radius: 25px;
    background: var(--gradient-british);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(207, 20, 43, 0.25);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 20, 43, 0.35);
    color: white;
}

/* Swiper Customization */
.offers-swiper {
    padding: 20px 0 60px 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--british-gold) !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 45px !important;
    height: 45px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    transform: scale(1.05);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: rgba(1, 33, 105, 0.3) !important;
    opacity: 1 !important;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--british-gold) !important;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .offer-image-wrapper {
        height: 200px;
    }

    .offer-city {
        font-size: 1.2rem;
    }

    .offer-price {
        font-size: 1.8rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px !important;
    }
}

#about > div > div > div:nth-child(1) > div > h3:after , #about > div > div > div:nth-child(2) > div > h3:after,#contact > div > div > div:nth-child(1) > div > h3:after{
    right: 5% !important;
}



