/* root colors */
:root {
    --primary-color:#FA7436;
    --white-color:#FFFFFF ;
    --background-color:#F7F8FC;
    --text-dark: #333;
    --text-medium: #666;
     --silver-color:#999 ;
    --shadow-subtle: 0 10px 40px rgba(0, 0, 0, 0.08);
    --card-shadow: rgba(0, 0, 0, 0.05);
}

*,
*::after,
*::before{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}

body {
background: var(--white-color);
color: var(--text-dark);
line-height: 1.6;
}

/* base styling completed */

.highlight {
  color: #FA7436;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
position: relative;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    font-family: 'Volkhov', serif;
}

.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;

}

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

.login {
    top: 2px;           
    right: 10px;           
    color: var(--primary-color);
    font-weight: 502;
    text-decoration: none;
}

.signup {
    top: 2px;             
    right: 10px;  
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    gap: 50px;
}

.hero-text {
 max-width: 860px;
 padding-bottom: 90px;

}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 498;
    line-height: 1.3;
font-family: 'Volkhov', serif;

}

.hero-text p {
    margin: 35px 0;
    color: var(--text-medium);
    font-size: 1.3rem;
font-weight: 398;
}

.discover-btn {
 position: absolute;
  left: 85px;  
  padding: 12px 20px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  transition: 0.3s;
}


.base-air{
  position: relative; 
  width: 53%;
  height: 100%; 
}
.base-air{
    position: absolute;
    top: -18%; 
    right: 1px; 
    background: url("assets/element(1).svg") no-repeat center center / contain; 
    opacity: 0.7; 
    z-index: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
}
.circle-bg {
    width: 360px;
    height: 360px;   
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: -1;
}

.hero-image img {
    max-width: 460px;
}

.bold-text{
    font-weight: 100; 
}

/* Award Badge */
.badge-award {
  position: absolute;
  top: 60px;
  left: -50px;
  background: var(--white-color);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.badge-award img {
  width: 30px;
  height: 30px;
}

/* Review Badge */
.badge-review {
  position: absolute;
  bottom: 110px;
  left: -8px;
  background: var(--white-color);
  padding: 0.6rem 0.3rem;
  border-radius: 10px;
 font-size: 0.85rem;
  line-height: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 195px;
}
.badge-review img {
  width: 29px;
  height: 29px;
}
.badge-review span {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}
.badge-review small {
  font-size: 0.75rem;
  color: var(--text-medium);
}


/* Explore Badge */
.badge-explore {
  position: absolute;
  top: 190px;
  right: 3px;
  background: var(--white-color);
 padding: 0.4rem 0.7rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 250px;
}
.badge-explore img {
  width: 36px;
  height: 36px;
}
.badge-explore span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.badge-explore small {
  display: block;
  font-size: 1rem;
  color: var(--text-medium);
}

/* Search Bar */
.search-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white-color);
    padding: 20px 35px;
    width: 55%;
    margin: -19px auto;
    border-radius: 6px;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.18);
    gap: 20px;
}

.search-field h4 {
    font-weight: 500;
    margin-bottom: 5px;
}

.search-field p {
    font-size: 0.9rem;
    color: #777;
}

.explore-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}


h2 {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 2.8rem; /* Exact size from inspection */
}

h3 {
    color: var(--text-dark);
    font-weight: 700;
}


/* Features Section Styling */
.features-section {
  position: relative;
  text-align: center;
  background-color:var(--background-color);  
  padding: 100px 8% 100px;   
  top:80px;
  display: flex;
  justify-content: center; 
  align-items: center;                
  flex-direction: column;               
  height: 100vh; 
    overflow: hidden; 
}

.section-title {
    font-size: 3rem; 
    font-family: 'Volkhov', serif;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-subtitle {
    max-width: 550px;
    margin: 0 auto 80px;
    color:var(--text-medium);
    font-size: 1rem;
}

/* Airplane right side */
.airplane-Right {
    position: absolute;
    top: 9%; 
    right: 15%; 
    width: 160px;
    height: 100px;
    background: url("assets/Element.svg") no-repeat center center / contain; 
    opacity: 0.7; 
    z-index: 0;
}

/* Cards Layout */
.feature-cards-container {
    display: flex;
    justify-content: center; 
    gap: 30px; 
}

.feature-card {    
    padding: 40px 32px;
    border-radius: 10px;
    box-shadow: var(--shadow-subtle);
    width: 31%;
    bottom:20px;
    min-width: 250px;
    text-align: left; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    z-index: 1; 
    position: relative;
}

.card1 {
    background-image: url("assets/vector-1.svg");
}

.card2 {
    background-image: url("assets/vector-2.svg");
}

.card3 {
    background-image: url("assets/vector-3.svg");
}


/* Icons Styling */
.icon-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 0px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.icon-placeholder img {
    width: 75%; 
    height: 75%;
    
}

/* --- Text Styling --- */
.feature-card h3 {
    font-size: 1.3rem;
    margin: 0 0 10px;
    width: 100%; 
}

.feature-card p {
    color: var(--text-medium);
    font-size: 1.1rem;
}


/* Exclusive Deals Section */
section.features-section{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--white-color); 
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    min-height: 100vh;
}

/* container for deal section*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto; 
    padding: 0;
    text-align: center;
}

/* second container for vacation*/
.container-s {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto; 
    padding: 10px;
    text-align: center;

}

.exclusive-deals {
    padding-bottom: 10px;

}

.exclusive-deals h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--text-dark);
}



.exclusive-deals .subtitle {
    font-size: 1.05em;
    color: var(--text-medium);
    margin-bottom: 50px; 
    line-height: 1.8;
}

/* Deal Grid */
.deal-grid {
    display: flex;
    justify-content: center; 
    gap: 25px; 
    margin-bottom: 40px; 
    flex-wrap: wrap; 
}

.deal-card {
background-color: var(--white-color);
border-radius: 5px;    
overflow: hidden;
position: relative;
box-shadow: 0 8px 20px var(--card-shadow); 
}

.cards2-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.cards2-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover; 
    display: block;
}

.cards2-content {
 padding: 15px 20px;       
  text-align: left;        
  width: 240px;            
  height: -30px;           
  box-sizing: border-box;  
  margin: 10px auto;        
  background-color: var(--white-color);   
  border-radius: 15px;               
}



.cards2-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.3em; 
    font-weight: 500;
    color: var(--text-dark);
}

.cards2-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cards2-meta span img{
     margin-bottom: -2px;
     width: 16px; 
     height: 16px;}

.cards2-meta .location {
    font-size: 1.00em;
    color: var(--text-medium);
}

.cards2-meta .location i {
    color: var(--text-light);
    margin-right: 5px;
}

.prices {
    display: flex;
    align-items: baseline;
}

.old-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9em;
    margin-right: 8px;
    font-weight: 500;
}

.new-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1em;
}

.rating-bar {
    text-align: right;  
    margin-top: -38px;
}

.star-rating {
    font-size: 17px;
    color: var(--text-dark);  
    font-weight: 500;
}

/* Featured Card second card (Firenze) */
.featured-card .cards2-image-wrapper {
    position: relative;
}

.card-overlay {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 150%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1; 
    transition: background-color 0.3s ease;
}

.book-now-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1em;
    box-shadow: 0 4px 10px rgba(255, 140, 74, 0.3);
}

/* traveling section */
/* Tree Right side(traveling section) */
.Tree-Right {
    position: absolute;
    right: 23.3%; 
    width: 120px;
    height: 65px;
    top:2255px;
    background: url("assets/Element (1).svg") no-repeat center center / contain; 
    opacity: 0.7; 
    z-index: 0;
}
.slider2-img {
  position: relative; 
  width: 100%;
  height: 100%;     
}

.slider2-img img {
  position: absolute;
  right: 185px;      
  top: 50%;       
  transform: translateY(-160%); 
  max-width: 75px;
  height: auto;
  cursor: pointer;
}


/* Card container */
.card-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Card */
.card {
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 260px;
    text-align: left;
    transition: transform 0.3s;
}

.card img {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 500;
}

.price {
    color: var(--primary-color);
    font-weight: bold;
    float: right;
}

.trip-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-medium);
}

.trip-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    }
.trip-info span img{
    width: 16px; 
    height: 16px;
}

/* testimonial section */
section.testimonial-section{
  position: relative;
  margin: 0;
  padding: 0;                         
  font-family: 'Poppins', sans-serif;
  background-color:var(--background-color);                
  color: #444;
  right:180px;
  left:-15px;

  top:10px;
  display: flex;
  justify-content: center;              
  align-items: center;                  
  flex-direction: column;              
  width: 100vw;                         
  height: 100vh;                       
  overflow: hidden;  

}

.container2 {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 100px auto;
    padding: 0 20px;
    gap: 80px;
    align-items: flex-start;
}

/* Left side Content (Testimonial) */
.left-content {
    text-align: left;
    flex: 1;
    max-width: 450px;
}

.left-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0;
}

.left-content .highlight {
    color: var(--primary-color);
    display: inline-block;
}

.left-content p {
    font-size: 1rem;
    line-height: 2.0;
    text-align: left;
    margin-top: 20px;
    color: var(--text-medium);
    gap: 15px;
}

.slider3-img{
  position: relative; 
  width: 100%;
  height: 100%; 
}
.slider3-img img {
  position: absolute;
  right: 340px;       
  top: 20px;      
}


/* Right side Content (Testimonial) */
.right-content {
    flex: 1;
    position: relative;
    padding-top: 40px; 
    max-width: 500px;
}

/* Main Testimonial Card */
.testimonial-card {
    background-color: var(--white-color);
    padding: 30px;
    padding-top: 60px; 
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    width: 90%; 
}

.main-card {
    margin-left: 20px;
}

.avatar-container {
    position: absolute;
    top: -30px; 
    left: -20px;
    width: 60px;
    height: 60px;
    border-radius: 30%;
   
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
   
}

.quote { 
   position:relative ;
   top: -20px; 
   right: 2px;                
   font-size: 1rem; 
   line-height: 1.7; 
   color: #444; 
   text-align: left;
   margin: 0 0 20px 0; 
   font-weight: 500; 
}

.author-details .author-name {
    position:relative ;
    right: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.author-details .author-location {
    position:relative ;
    right: 5px;    
    font-size: 0.9rem;
    color: var(--silver-color);
    margin: 5px 0 0 0;
}

/* Secondary/Ghost Card */
.ghost-card {
    background-color: rgba(230, 230, 230, 0.6); 
    box-shadow: none;
    padding: 40px 40px;
    position: absolute;
    bottom: -70px;
    left: 80px;
    right: -40px;
    height: 190px;
    z-index: 0;
    color: var(--text-medium);
}

/* Ghost Card Container */
.ghost-card {
    display: flex;
    flex-direction: column;
    height: 240px; 
    padding: 68px 50px;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ghost-card .author-name {
    position: absolute;
    top: 173px;                
    left: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

/* Author Title at Bottom */
.ghost-card .author-title {
    position: absolute;
    bottom: 15px;             
    left: 30px;
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

.air2-Right{
position: relative; 
  width: 30%;
  height: 60%; 
}

/* second air plane on right side*/
.air2-Right{
    position: absolute;
    top: -18%; 
    right: -110px; 
    background: url("assets/Element (2).svg") no-repeat center center / contain; 
    opacity: 0.7; 
    z-index: 0;
}

/* Blog Section */
.blog-section {
  background-color:var(--white-color);
  padding: 20px 80;
  text-align: center;
  margin-bottom:10px;
}

/* Container */
.container3 {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto; 
    padding: 10px;
}

/* Title */
.blog-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
}

/* Blog Grid */
.blog-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  width: 250px;
  transition: transform 0.3s ease;
}

/* blog card image size*/
.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 15px 15px 8px 15px;
  color: #222;
  line-height: 1.4;
}

.date {
  font-size: 0.9rem;
  color: var(--silver-color);
  margin: 0 15px 15px 15px;
}

.slider4-img {
  position: relative; 
  width: 100%;
  height: 100%; 
}

.slider4-img img {
  position: relative;
  top: 47px;       
  align-items: center;  
  max-width: 75px;
  height:12px;
  cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

/* Subscription-mail Section */
/* Subscription-mail Section Styling */
.subscription-section {
    padding-top: 0px;
    padding-bottom: 0; 
    background-color: var(--white-color);
    position: relative;
    z-index: 1;
}

.subscription-box {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--primary-color); 
    border-radius: 20px;
    padding: 70px 40px;
    text-align: center;
   bottom:-180px;
    color: var(--white-color);
    position: relative;
    overflow: hidden; 
}

.subscription-title {
    font-family: 'Volkhov', serif;
    font-size: 2.5rem;
    font-weight: 700; 
    color:var(--white-color);                                                             
}

.email-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 550px;
    margin: 0 auto;
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 5px;
    position: reletive;
    z-index: 2;
}

.email-input-group {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding: 0 10px;
}

.mail-icon {
    font-size: 1.2rem;
    margin-right: 10px;
    color: var(--silver-color);
}

.email-form-container input[type="email"] {   
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 1rem;
    width: 100%;
    color: var(--text-dark);
}

.subscribe-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Palm Tree Image */
.palm-tree-image {
    position: absolute;
    top: 8px;
    right: 1px;
    width: 100px;
    height: auto;
    opacity: 0.8;
    z-index: 1; 
}

/* round lines Image */
.round-lines {
    position: absolute;
    right: 61.8%; 
    width: 380px;
    height: 380px;
    top:21px;
    background: url("assets/Element (4).svg") no-repeat center center / contain; 
    opacity: 0.7; 
    z-index: 0;
}

/* Footer Section */
/* Footer section Styling */
.main-footer {
  background-color: var(--background-color); 
  padding: 50px 180px;
  top:80px;
  bottom:40px;
  margin-top: 5px; 
  padding-top: 280px; 
   
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--silver-color);
    flex-wrap: wrap;
}

.footer-column {
    flex-basis: 20%;
    min-width: 180px;
    padding: 10px;
}

.trabook-info {
    flex-basis: 40%; 
    min-width: 290px;
    margin-right: -5px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark); 
}

.tagline {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 30px;
}
.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark); 
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #888;
    font-size: 0.95rem;
}

/* bottom slider*/
.slider5-img{
  position: relative;
  width: 45%;
  height: 45%; 
  left: -5px;
  bottom: 20px;
}

/* Copyright Bar */
/* Copyright Bar Styling */
.copyright-bar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 0.90rem;
    color: #888;
    flex-wrap: wrap;
}
.copyright-bar p {
    margin: 5px 0;
}

.terms-conditions a {
    color: #888;
}

 /* Media Queries */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 40px;
    }

    .logo {
        font-size: 1.6rem;
    }

    .nav-links {
        display: none; 
    }

    .auth-buttons {
        gap: 20px;
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        padding: 40px 40px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        padding-bottom: 40px;
        order: 2; 
    }

    .hero-text h1 {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin: 20px 0;
    }

    .discover-btn {
        position: static; 
        margin-top: 20px;
        left: auto;
        display: inline-block;
    }

    .hero-image {
        order: 1; 
        margin-bottom: 50px;
        max-width: 400px;
    }

    .base-air,
    .badge-award,
    .badge-review,
    .badge-explore {
        display: none;
    }

    .circle-bg {
        width: 300px;
        height: 300px;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-image img {
        max-width: 100%;
    }

    /* Search Bar */
    .search-bar {
        width: 90%;
        margin: -40px auto 40px;
        padding: 15px 25px;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
    }

    .search-field {
        min-width: 120px;
        padding: 5px 0;
    }

    .explore-btn {
        padding: 10px 15px;
        flex-grow: 1;
        margin-top: 10px; 
    }

    /* Features Section */
    .features-section {
        padding: 80px 40px;
        top: 0; 
        height: auto; 
        min-height: auto;
    }

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

    .section-subtitle {
        margin-bottom: 50px;
    }

    .feature-cards-container {
        flex-wrap: wrap;
    }

    .feature-card {
        width: 45%; 
        min-width: 300px;
        margin-bottom: 20px;
    }

    .airplane-Right {
        display: none;
    }

    /* Exclusive Deals Section */
    .container-s {
        padding: 0 40px;
    }
    
    .deal-grid {
        gap: 30px;
    }

    .cards2-content {
        width: 100%; 
    }

    .Tree-Right,
    .slider2-img {
        display: none;
    }
    
    /* Testimonial Section */
    section.testimonial-section {
        right: 0;
        left: 0;
        top: 0;
        height: auto;
        padding: 80px 40px;
        width: auto;
        min-height: auto;
    }

    .container2 {
        flex-direction: column;
        margin: 50px auto;
        gap: 40px;
        align-items: center;
    }

    .left-content {
        max-width: 100%;
        text-align: center;
    }

    .left-content h2 {
        font-size: 2.8rem;
    }

    .left-content p {
        text-align: center;
    }

    .slider3-img {
        display: none;
    }

    .right-content {
        max-width: 100%;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 90%;
        margin-left: 0;
    }

    .ghost-card,
    .air2-Right {
        display: none; 
    }

    /* Blog Section */
    .blog-section {
        padding: 20px 40px;
    }

    .blog-grid {
        gap: 20px;
    }
    
    .blog-card {
        width: 45%;
        max-width: 300px;
    }

    .slider4-img {
        display: none;
    }

    /* Subscription-mail Section */
    .subscription-section {
        padding: 0 40px;
    }
    
    .subscription-box {
        padding: 50px 30px;
        margin-bottom: 40px;
        bottom: 0;
    }

    .subscription-title {
        font-size: 2rem;
        position: static;
        margin-bottom: 20px;
    }

    .round-lines,
    .palm-tree-image {
        display: none;
    }

    /* Footer */
    .main-footer {
        padding: 40px 40px 20px;
        top: 0;
    }
    
    .footer-content {
        justify-content: space-around; 
    }

    .trabook-info {
        flex-basis: 100%; 
        margin-bottom: 30px;
        min-width: auto;
        text-align: center;
    }

    .footer-column {
        flex-basis: 45%; 
        padding: 15px 0;
        min-width: auto;
    }
}

/* media queries (Mobile) */
@media (max-width: 600px) {
    body {
        font-size: 14px;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .auth-buttons {
        gap: 10px;
    }

    .signup {
        padding: 8px 15px;
    }
    
    /* Hero Section */
    .hero {
        padding: 20px 20px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image {
        margin-bottom: 30px;
    }
    
    .hero-image img {
        max-width: 90vw; 
    }

    .circle-bg {
        width: 250px;
        height: 250px;
    }

    /* Search Bar */
    .search-bar {
        width: 95%;
        flex-direction: column;
        align-items: stretch;
        margin: -60px auto 30px;
        padding: 15px;
    }

    .search-field {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #eee; 
    }
    .search-field:last-of-type {
        border-bottom: none;
    }
    
    .explore-btn {
        margin-top: 15px;
    }

    /* Features Section */
    .features-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }

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

    .feature-card {
        width: 100%; 
        min-width: auto;
        padding: 30px 20px;
    }

    /* Exclusive Deals Section */
    .container-s {
        padding: 0 20px;
    }
    
    .exclusive-deals h1 {
        font-size: 2.2em;
    }
    .deal-grid {
        gap: 20px;
    }
    .deal-card {
        max-width: 100%; 
    }
    .cards2-content {
        width: 100%;
    }

    /* Testimonial Section */
    section.testimonial-section {
        padding: 60px 20px;
    }
    .left-content h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        width: 100%;
    }

    /* Blog Section */
    .blog-section {
        padding: 20px;
    }

    .blog-card {
        width: 100%; 
    }

    /* Subscription-mail Section */
    .subscription-box {
        padding: 40px 20px;
    }

    .subscription-title {
        font-size: 1.6rem;
    }

    .email-form-container {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
    }
    
    .email-input-group {
        background-color: var(--white-color);
        border-radius: 6px;
        margin-bottom: 10px;
        width: 100%;
    }

    .subscribe-button {
        width: 100%;
        padding: 13px 20px;
    }

    /* Footer */
    .main-footer {
        padding: 40px 20px 10px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .trabook-info {
        text-align: left;
        margin-bottom: 20px;
    }

    .footer-column {
        flex-basis: 100%;
        padding: 10px 0;
        min-width: auto;
    }

    .copyright-bar {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 10px;
    }

    .terms-conditions {
        margin-bottom: 10px;
    }
}

