/* Base Styles & Variables */
:root {
    --primary-red: #EB1C23;
    --primary-red-hover: #d3161d;
    --secondary-red: #EB1C23D9;

    --text-main: #1a1a1a;
    --text-muted: #656565;
    --secondary-grey:#484848;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark:#333333;
    --footer-color:#999999;
    --footer-text:#606060;
    --border-color:#515151;
    --footer-sotc-text:#CCCCCC;
    --highlight-yellow: #f8e12e;
    --text-search:#1A1A1A80;
    --font-main: 'Inter', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-input: 0px 8px 32px 0px #00000038;

}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    /* max-width: 1200px; */
 margin: 0 85px;
    padding: 0 20px;
}

.section {
    padding: 40px 0;
}

/* --- Reusable Utility Classes --- */
/* Font/Typography Classes */
.font-poppins-medium {
    font-family: var(--font-poppins);
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0px;
}

.font-poppins {
    font-family: var(--font-poppins);
}

/* Color Classes */
.text-primary { color: var(--primary-red); }
.text-main { color: var(--text-main); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--bg-white); }
.text-yellow { color: var(--highlight-yellow); }

.bg-primary { background-color: var(--primary-red); }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-white); }
.bg-yellow { background-color: var(--highlight-yellow); }
/* -------------------------------- */

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    /* margin-bottom: 8px; */
        font-family: var(--font-poppins);

}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.section-header {
    margin-bottom: 40px;
}

.section-description{
    color: #656565;
    font-size: 1rem;
    font-weight: 600;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;    font-family: var(--font-poppins);


}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.view-all {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: underline;
    line-height: 19px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 30px;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: white;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.hero{
    transition: background-image 0.5s ease-in-out;
}

.hero-content{
    animation: fadeIn .5s ease;
}

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

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#bbb;
    display:inline-block;
    cursor:pointer;
    margin:0 4px;
}

.dot.active{
    background:#fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    color: white;
    padding: 0 104px;;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.0) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 673px;;
}

.badge {
    display: inline-block;
    background-color:  #FF000080;
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 61px;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    font-family: var(--font-poppins);

}

.hero p {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    max-width: 460px;
    font-family: var(--font-poppins);
}

.explore-tours{
        font-family: var(--font-poppins);
font-weight: 700;
    font-size: 0.95rem;
    border-radius:4px
}

.search-container {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
}

.search-bar {
    display: flex;
    background: white;
    border-radius: 8px;
    /* padding: 8px; */
    box-shadow: var(--shadow-input);
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 10px;
    gap: 10px;
    padding:8px 8px 8px 16px;
}

.search-input input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.938rem;
    padding: 10px;
    font-weight:400;
    font-family: var(--font-poppins);
    color:var(--text-search)
}

.search-input .icon {
    color: var(--text-muted);
}

.btn-search {
    background-color: var(--primary-red);
    color: white;
    /* border-radius: 40px; */
    padding: 12px 30px;
        border: transparent;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
        font-family: var(--font-poppins);

}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 32px;
    z-index: 10;
    pointer-events: none;
}

.carousel-nav button {
    pointer-events: auto;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.3s;
}

/* .carousel-nav button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
} */

.carousel-nav button:hover {
    background: rgba(255,255,255,0.45);
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 5px;
}

/* Scrolling Banner */
.scrolling-banner {
    background-color: var(--primary-red);
    color: white;
    padding: 7px 0;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-text {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    animation: scrollText 20s linear infinite;
        font-family: var(--font-poppins);

}

.scrolling-text span {
    display: inline-block;
    vertical-align: middle;
}

.dot-separator {
    margin: 0 30px;
    font-size: 1.2rem;
    color: #FFFFFF80;

}

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

/* Cards Grid */
.cards-grid {
    display: grid;
    gap: 20px;
        margin-top: -9px;
        margin-left: -17px;
}

.package-grid{
    margin-left: 0 !important;
}

.cols-5 { grid-template-columns: repeat(5, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card {
    /* background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.card:hover {
    transform: translateY(-5px);
}
/* 
.card-img-placeholder {
    background-color: #ddd;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: bold;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
} */

.card-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-img-placeholder.square {
    /* height: 250px; */
}

/* Destinations */
.destinations {
    background-color: #F8F8F8;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: end;
}

.destination-card{
    padding:0 !important;
}

.dest-grid{
    gap:0px
}

.destination-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.dest-card {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* use cover instead of fill to prevent squishing */
    display: block;
    transition: transform 0.4s ease;
}

.destination-item:hover .dest-card {
    /* transform: translateY(-6px); */
}

.destination-item:hover .dest-card img {
    /* transform: scale(1.04); */
}

.destination-item h3 , .experience-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-grey);
    margin: 0;
    text-align: center;
    font-family: var(--font-poppins);
}



/* Experiences */
.experience-card {
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-lg);
}
.experience-card .card-img-placeholder {
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

/* Europe Deal Banner */
.europe-deal {
    position: relative;
    background-image: url('assets/images/offerbanner.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    transition: background-image 0.5s ease-in-out;
    /* margin: 40px 0; */
}

.deal-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.deal-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.deal-dot.active {
    background: white;
    width: 24px;
    border-radius: 5px;
}

.deal-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.deal-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-text {
    max-width: 500px;
}

.deal-subtitle {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.deal-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin: 15px 0;
}

.highlight {
    color: var(--highlight-yellow);
}

.deal-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    opacity: 0.9;
}

.deal-stats {
    display: flex;
    gap: 15px;
}

.stat-box {
    background: #433D3D66;
border: 0.8px solid #FFFFFF1A;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    backdrop-filter: blur(5px);
    min-width: 140px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--highlight-yellow);
}

/* Trending Packages */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    background: #f1f1f1;
    padding: 6px;
    border-radius: 30px;
    width: fit-content;
}

.tab {
    padding: 10px 24px;
    background: transparent;
    border: none;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    font-family: var(--font-poppins);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.tab.active {
    color: #fff;
    background: var(--primary-red);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.tab::after {
    display: none;
}

.tab:hover:not(.active) {
    color: var(--text-main);
    background: #e4e4e4;
}

.package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #E1E1E1;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.package-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #eee;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    z-index: 2;
}

.tag-red { background: var(--primary-red); }
.tag-green { background: #22c55e; }
.tag-gold { background: #eab308; }

.package-meta {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    z-index: 2;
}

.package-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-main);
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #EAEAEA;
    padding-top: 12px;
    margin-top: auto;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    display: block;
    line-height: 1.2;
}

.price-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    line-height: 1.2;
}

.package-card .price-row .btn {
    padding: 6px 14px !important;
    font-size: 0.75rem !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    white-space: nowrap;
    align-self: center;
    height: fit-content;
}

/* Testimonials and Other Services */
.testimonials,
.other-services {
    background-image: url('assets/images/travelstories.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-light);
}

.bg-light {
    background-color: var(--bg-light);
}

.review-card {
    padding: 30px;
 box-shadow: 0px 2px 8px 0px #0000000D;
border: 0.8px solid #E1E1E1;
border-radius: 8px;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: #ffe4e6;
    font-family: serif;
    line-height: 1;
}

.stars {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.review-card h4 {
    color: var(--primary-red);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.review-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    min-height: 80px;
}

.user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background-color: #ddd;
}

.user h5 {
    font-size: 0.95rem;
}

.user span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Why Choose Us (Bento Grid) */
.why-choose {
    background-image: url('assets/images/promise.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.bento-card {
    background:  #FFFFFF66;
    border: 0.8px solid #EB1C234D;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: 0px 2px 6px 0px #0000001F;

}

.bento-large {
    grid-column: span 7;
}

.bento-col {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bento-col .bento-card {
    flex: 1; /* Make them stretch equally */
}

.bento-grid > .bento-card:nth-of-type(3) {
    grid-column: span 6;
}

.bento-grid > .bento-card:nth-of-type(4) {
    grid-column: span 6;
}

.bento-full {
    grid-column: span 12;
    background: linear-gradient(135deg, #fff0f1, #ffe4e6);
    border: 1px solid #ffccd5;
}

.since {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.huge-text {
    font-size: 4.5rem;
    color: var(--primary-red);
    line-height: 1;
}

.bento-large h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.bento-large p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.stats-row h4 {
    font-size: 1.5rem;
    font-weight: 800;
}

.stats-row span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.icon-circle {
    width: 40px; height: 40px;
    background: #fff0f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.bento-subtitle {
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.bento-card h4 {
    margin-bottom: 10px;
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.big-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
}

/* Other Services */
.service-card {
    padding: 30px;
    border: 0.8px solid #E1E1E1;
    box-shadow: 0px 2px 8px 0px #0000000D;
    border-radius: 8px;
}
.service-card .icon-circle {
    margin-bottom: 20px;
}
.service-card h4 {
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    padding: 48px 0 20px;
    border-top: 0.8px solid var(--border-color);
    margin-top: 60px;
            font-family: var(--font-poppins);

}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 83px;
    margin-bottom: 40px;
}

.footer-col p, .footer-description{
        color:var(--footer-color);
        font-weight: 400;
        font-size: 0.8rem;
        font-family: var(--font-poppins);

}

.footer-description{
    margin-top:-10px;
}

.footer-logo {
    margin-bottom: 8px;
}

.about-col{
        max-width: 300px;
    margin-right: 92px;
}

.about-col p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px; height: 35px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-red);
    color: white;
}

.footer-tops{
    display: flex;
    gap: 36px;
}

.footer-col h3 {
    font-size: 0.75rem;
font-weight: 700;
    margin-bottom: 16px;
        text-transform: uppercase;
        color:var(--bg-dark);
line-height: 18px;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: var(--footer-text);
    transition: color 0.3s;
    font-weight: 400;
}

.footer-col ul li a:hover {
    color: var(--primary-red);
}

.footer-col p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 21px;
    border-top: 0.8px solid var(--border-color);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-sotc {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--footer-sotc-text);
    margin-top: 5px;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--bg-dark, #333333);
    color: white;
    padding: 60px 0;
}

.newsletter-subtitle {
    color: var(--secondary-red);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-poppins);
}

.newsletter-section h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: var(--font-poppins);
}

.newsletter-section p {
    color: #999999;
    font-size: 0.95rem;
    margin-bottom: 32px;
    font-weight: 400;
    font-family: var(--font-poppins);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
    padding: 14px 30px;
    font-family: var(--font-poppins);
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f1f1;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.modal-header .modal-subtitle {
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-header h2 {
    font-size: 2rem;
    margin: 5px 0 10px;
    color: #1a1a1a;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.modal-form .field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modal-form .field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.modal-form .field input, .modal-form .field textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.modal-form .field input:focus, .modal-form .field textarea:focus {
    border-color: var(--primary-red);
}

.modal-form .phone-field {
    display: flex;
    gap: 0;
}

.modal-form .phone-field input.code {
    width: 55px;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background: #f8f9fa;
    text-align: center;
    padding: 12px 0;
}

.modal-form .phone-field input[type="tel"] {
    flex: 1;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Responsive (Basic) */
@media (max-width: 992px) {
    .cards-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
    .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
    .cards-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    
    .deal-content { flex-direction: column; text-align: center; gap: 30px; }
    .deal-stats { justify-content: center; }
    
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-full { grid-column: auto; grid-row: auto; }
    .bento-full { flex-direction: column; text-align: center; }
    
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .cards-grid.cols-5, .cards-grid.cols-4, .cards-grid.cols-3 { grid-template-columns: 1fr; }
    .nav-links, .btn-primary.enquire { display: none; } /* Simplified mobile */
    .footer-top { grid-template-columns: 1fr; }
}
