/*!
Theme Name: UVS Theme
Theme URI: https://uvs.com.au/
Author: Your Name
Author URI: https://uvs.com.au/
Description: This stylesheet defines the visual appearance and layout for the UVS Theme. It includes styles for typography, colors, spacing, and responsive design to ensure a consistent look across all pages and devices.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: uvs-theme
*/


:root {
  --color-background: #131415;
  --color-text: #FFFFFF;
  --color-accent: #9BE3FF;
  --font-primary: 'Spline Sans', sans-serif;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --spacing-unit: 16px;
  --content-width: 1440px;
}

/* Minimal reset for the UVS theme */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

/* Make images and embeds behave */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Remove default list styles */
ul, ol {
  list-style: none;
}

/* Make form elements inherit font */
input, button, textarea, select {
  font: inherit;
}

/* Remove anchor underline by default */
a {
  text-decoration: none;
  color: inherit;
}

/* Base typography styles */

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}


/* UVS Theme Specific Styles */

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    margin: 0;
    padding: 0;    
}

/* Here we are adding padding from left for the side-menu */
.landing-page {
    padding-left: 96px;
}

/* 
Need discussion
.site {
    padding-left: 96px;
    padding-top: 110px;
}
main#primary {
    padding-left: 45px;
} */

.section-inner{
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 40px 20px;
}

.announcement-bar{
    background-color: #9BE3FF;
    color: #000000;
    text-align: center;
    padding: 5px 0;    
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 9991;
    left: 0;
    top: 0;
}
.announcement-bar .cross-icon{
    position: absolute;
    top: 10px;
    right: 10px;
    height: 20px;
    width: 20px;
    border: none;
    background: none;
    cursor: pointer;
}
.announcement-bar p {
    padding-right: 20px;
}
.announcement-bar .reserve-button {
    background-color: #000000;
    color: #FFFFFF;     
    border: none;
    padding: 4px 4px 4px 18px;
    cursor: pointer;    
    font-weight: 400;
    border-radius: 50px;    
    display: flex;
    align-items: center;
    gap: 10px;    
}
.announcement-bar .reserve-button .icon-container {
    border-radius: 100px;
    width: 33px;
    min-width: 33px;
    height: 33px;
    display: block;
    margin-left: auto;    
    background: url("./assets/images/forward-arrow.svg") no-repeat scroll 13px center #9ce3ff;
}
.announcement-bar .reserve-button:hover {
    background-color: #333333;
}

.main-menu {
    display: flex;
    justify-content: center;
    padding: 16px 10px 20px 10px;
    background-color: #131415;
    position: fixed;
    top: 51px;
    left: 0;
    z-index: 1000;
    width: 96px;
    height: calc(100vh - 51px);
    flex-direction: column;
    transition: all 0.3s ease;    
    background: rgba(19, 19, 20, 0.9);
    backdrop-filter: blur(4px)

}
.main-menu .site-logo {
    width: 80px;
    margin-left: -3px;
    margin-bottom: auto;
    overflow: hidden;
    transition: width 0.3s ease;
}
.main-menu .site-logo img {
    height: 38px;
    width: auto;
    max-width: none;
    transition: height 0.3s ease;
}
/* Menu Expanded state  */
.menu-expanded .site-logo {
  width: 240px;
}
.menu-expanded .site-logo img{
  height: 55px;  
}
.menu-expanded.main-menu {
    width: 456px;              
}
.menu-expanded.main-menu .navigation-menu {
    opacity: 1;
    transform: translate3d(200px, 0px, 0px);
}
.menu-expanded.main-menu .copyright-wrp {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}
.menu-expanded.main-menu .site-logo_other{
    top: 83px;
    width: 103px;
}
.site-logo_other{
    position: absolute;
    top: 65px;
    left: 10px;
    width: 74px;
    transition: .3s ease;
}
.menu-toggle {
    margin-left: 14px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
}
.menu-toggle .icon-container {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.menu-toggle .icon-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #9BE3FF 0%, #5D8899 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 100px;
  z-index: -1;
}

.menu-toggle:hover .icon-container:hover::after {
  opacity: 1;
}


.menu-toggle .menu-icon,
.menu-toggle .close-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    transition: opacity 0.3s, transform 0.3s;
}

/* Menu Icon (three horizontal lines) */
.menu-toggle .menu-icon {
    opacity: 1;
    transform: scale(1);
    width: 24px;
    height: 24px;
}
.menu-toggle .menu-icon img{
    width: 24px;
    height: 24px;
}

/* Close Icon (X shape) */
.menu-toggle .close-icon {
    opacity: 0;
    transform: scale(0.5);
    width: 18px;
    height: 18px;
}
.menu-toggle .close-icon img{
    width: 18px;
    height: 18px;
}
.menu-text{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFFFFF;
}

/* Toggle icon visibility based on menu state */
.menu-expanded .menu-toggle .menu-icon {
    opacity: 0;
    transform: scale(0.5);
}
.menu-expanded .menu-toggle .close-icon {
    opacity: 1;
    transform: scale(1);
}


/* Navigation Menu Styles */

.navigation-menu {
    opacity: 0;
    position: absolute;
    transform: translate3d(-100%, 0px, 0px);
    width: 200px;
    transition: all ease 0.3s;
}
.navigation-menu ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.navigation-menu ul li a {
    color: #FFFFFF;
    font-weight: 600;
    transition: color 0.3s;
}
.navigation-menu ul li a:hover {
    color: #9BE3FF;
}

.copyright-wrp {
    position: fixed;
    bottom: 20px;
    left: 30px;
    opacity: 0;
    transform: translate3d(-105%, 0px, 0px);
    transition: all ease 0.3s;
    font-size: 13px;
    width: 402px;
    color: #777777;
}
.copyright-wrp a{
    color: #FFFFFF;
}

.main-menu.announcement-bar-removed{
    top: 0;
    height: 100vh;
}
/* Main Menu & Navigation Ends */

/* Hero Section with Background Video */
section.hero-section {    
    height: 100vh;
    float: left;
    width: 100%;
    position: relative;
}

.hero-cta-container {
    position: absolute;
    left: 56px;
    top: 316px;
    z-index: 1;
}
.hero-cta-container h1 {
    font-size: 40px;
    color: #FFFFFF;
    margin-bottom: 5px;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    max-width: 600px;
    line-height: 52px;
}
.hero-cta-container h2 {
    font-size: 28px;
    text-transform: uppercase;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    letter-spacing: -0.5px;
}
.hero-cta-container p {
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 38px;
    max-width: 600px;
    line-height: 24px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
}
.hero-cta-container .reserve-button {
    background-color: #FFFFFF;
    color: #000000;    
    border: 2px solid transparent;  
    padding: 15px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    border-radius: 100px;
    transition: all ease 0.3s;
}
.hero-cta-container .reserve-button:hover {
    border-color: #015499;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-background-video video,
.hero-background-video iframe{
    position: absolute;
    height: inherit;
    width: inherit;
    object-fit: cover;
}
.hero-background-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 34.9%, rgba(0, 0, 0, 0.5) 72.62%),
                linear-gradient(180deg, rgba(0, 0, 0, 0) 91%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}
.hero-background-video source {
    object-fit: cover;
}
.scroll-down-indicator{
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 14px;
}
.scroll-down-indicator a{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 300;
}
.scroll-down-indicator .down-arrow {
    background: url("./assets/images/down-arrow.svg") no-repeat scroll center center;
    width: 16px;
    height: 16px;
    display: block;
    margin-top: 4px;
}

/* Hero Section - Ends */




/* About Section - Starts */
.about-section {
   background: radial-gradient(37.53% 82.64% at 50% 113.02%, #314C56 0%, #131314 100%),
linear-gradient(90.51deg, rgba(23, 23, 23, 0.5) 15.66%, rgba(23, 23, 23, 0) 94.97%);
    float: left;
    width: 100%;
    padding: 40px 20px 30px 20px; 
}
.about-section .about-inner {
    display: flex;
    gap: 80px;
    max-width: 1250px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 40px 90px 40px 20px;
}
.about-section .about-left {
    flex: 1 1 400px;
    color: #FFFFFF;
}

.about-section .about-right {
    flex: 1 1 635px;
    color: #FFFFFF;
}
.about-section .main-heading {
    font-size: 20px;       
    margin-bottom: 16px;
    color: #FFFFFF;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
    max-width: 360px;
    text-transform: uppercase;
}
.about-section p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;        
    color: #FFFFFF; 
    line-height: 24px;
}

/* Car#1 section - Starts */
.slider-section{    
    padding: 60px 20px;    
    overflow: hidden;
    min-height: 800px;
}
.slider-inner{
    position: relative;
}
.slider-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: inherit;
}
.slider-bg::before{
    background: radial-gradient(73.47% 251.7% at 77.64% 41.39%, rgba(0, 0, 0, 0) 0%, #131314 100%),     
    linear-gradient(180deg, rgba(0, 0, 0, 0) 76.61%, #131314 102.57%),
    linear-gradient(180deg, #131314 0%, rgba(0, 0, 0, 0) 35%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
}
.mobile-bg{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    display: none;    
}
.mobile-bg img{
    bottom: 0;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mobile-bg::before{
    background: radial-gradient(73.47% 251.7% at 77.64% 41.39%, rgba(0, 0, 0, 0) 0%, #131314 100%),     
    linear-gradient(180deg, rgba(0, 0, 0, 0) 76.61%, #131314 102.57%),
    linear-gradient(180deg, #131314 0%, rgba(0, 0, 0, 0) 35%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
}

.slider-section .slider-info-container {
    position: absolute;
    top: 70px;
    left: 35px;
    color: #FFFFFF;
    z-index: 1;
}
.slider-info{

}
.slider-info h2 {
    font-size: 13px;
    margin-bottom: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    font-style: normal;
    color: rgba(155, 227, 255, 1);
    text-transform: uppercase;
}
.slider-info p {
    font-size: 32px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: "Special Gothic Expanded One", sans-serif;
    max-width: 600px;
    line-height: 32px;
    margin-bottom: 40px;
}
.slider-info-features {
    border-radius: 64px;
    background: transparent;
    position: relative;
    padding: 21px 5px;
}
.slider-section .slider-info-features::before{
  content:''; 
  position:absolute; 
  inset:0; 
  padding:1px; 
  border-radius:inherit;

  background: linear-gradient(335deg,#9BE3FF,#131314);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor; 
  mask-composite: exclude;
  pointer-events:none;
}

.slider-info-features ul {
    display: flex;
    gap: 15px;
    padding: 16px 32px;
    list-style: none;
    flex-direction: column;
    align-items: flex-start;
}
.slider-info-features ul li {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    flex: 1;
    text-align: center;
    background: url('./assets/images/bullet-icon.svg') no-repeat left center;
    background-size: 8px 8px;
    padding-left: 16px;
}
.slider-info-content {
    max-width: 430px;
    border-radius: 64px 64px 64px 4px;
    padding: 45px 33px 33px 0px;
    position: relative;
}
.slider-info-content > div {
    margin-bottom: 20px;
}
.slider-info-content::before {
    content:''; 
    position:absolute; 
    inset:0; 
    padding:1px; 
    border-radius:inherit;

  background: linear-gradient(309deg, #9BE3FF 0%, #13131400 58%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor; 
  mask-composite: exclude;
  pointer-events:none;
}

/* Call to Action Banner */
.cta-banner {
    background-color: rgba(19, 19, 20, 1);
    text-align: center;
    padding: 40px 45px;
    color: #000000;
}
.cta-banner .cta-banner-inner {
    padding: 0;
    border-radius: 64px;
    display: inline-block;
    width: 100%;
    background: linear-gradient(#000000, #000000) padding-box, linear-gradient(to right, #9BE3FF, #131314) border-box;
    border: 1px solid transparent;
}
.cta-banner .cta-banner-gradient-overlay {
    background: radial-gradient(37.53% 82.64% at 50% 113.02%, #314C56 0%, #131314 100%),
linear-gradient(90.51deg, rgba(23, 23, 23, 0.5) 15.66%, rgba(23, 23, 23, 0) 94.97%);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    height: inherit;
    color: #FFFFFF;
    padding: 65px 20px;
    border-radius: 64px;
    position: relative;
}
.cta-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
    margin-bottom: 32px;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}   
.cta-banner .cta-button {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    padding: 15px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    border-radius: 50px;
}
.cta-banner .cta-button:hover {
    background-color: #333333;
}
.cta-banner-car-image {
    background: url('./assets/images/cta-car.png') no-repeat center bottom;
    background-size: contain;
    width: 517px;
    height: 192px;
    position: absolute;
    right: 10px;
    bottom: -110px;
    z-index: 0;
}

/* News and Video Section */

.news-and-video{
    border-top: 1px solid rgba(64, 64, 64, 1);
    margin-top: 45px;
}
.news-and-video h1{ 
    margin-bottom: 16px;
    color: #FFFFFF;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.post-grid {   
    display: grid;
    gap: 20px;
    padding: 40px 45px;
}


.short-news-controls{
    display: none;
}

.featured-article-heading{
    margin-bottom: 12px;
    font-family: 'IBM Plex Sans';
    font-weight: 600;
    font-size: 20px;
    display: block;
    padding-bottom: 10px;    
}

.more-news-articles-heading{
    margin-bottom: 12px;
    font-family: 'IBM Plex Sans';
    font-weight: 600;
    font-size: 20px;
    display: block;
    margin-top: 20px;
    padding-bottom: 10px;    
}


/* Big box spans full width */
.hero-post-card {
    /* height: 300px; */
    position: relative;

}
.hero-post-card .hero-post-info{
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 2;
}
.hero-post-info h2{
    font-weight: 600;
    font-size: 26px;
    float: left;
    width: 100%;
    margin: 12px 0;
}
.hero-post-info p{

}

.hero-post-card img{
    width: 100%;
    border-radius: 6px;
}
.hero-post-card a::before{
    content: '';    
    position:absolute; 
    inset:0;
    pointer-events:none;
    border-radius: 6px;
    background: linear-gradient(to bottom, #000 0%, transparent 76%);
    z-index: 1;
}

/* Grid for bottom boxes */
.short-news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.short-news-card {
    
}

.short-news-card > a > img{
    border-radius: 6px;
}

.short-news-card .post-info{
    float: left;
    width: 100%;
    margin: 20px 0 12px 0;
}

.short-news-card .post-info .post-category-tag,
.hero-post-card .hero-post-info .post-category-tag{
    background-color: #9BE3FF;
    color: #000000;
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 50px;
}
.short-news-card h3{
    font-weight: 600;
    font-size: 18px;
    float: left;
    width: 100%;
    margin-bottom: 12px;
}
.short-news-card p{
    float: left;
    width: 100%;
}

/* Watch Video Thumbnail Styling */

.fm-thumb{
  position:relative; 
  border-radius:6px; 
  overflow:hidden; 
  background:#000;
}
.fm-thumb img{ 
    display:block; 
    width:100%; 
    height:auto; 
    object-fit:cover; 
}

.fm-overlay{
  position:absolute; 
  inset:0; 
  opacity: 0.6;
  pointer-events:none;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.38) 22%,
    rgba(0,0,0,.18) 45%,
    rgba(0,0,0,.06) 62%,
    rgba(0,0,0,0) 78%
  );
}

.fm-badge{
  position:absolute; 
  left:16px; 
  bottom:16px;
  display:flex; 
  align-items:center; 
  gap:12px;
  pointer-events:none;
}
.fm-icon{
  width:44px; 
  height:44px;
  border-radius:50%;
  background:#fff; 
  box-shadow:0 4px 16px rgba(0,0,0,.25);
  position:relative; 
  flex:0 0 44px;
}
.fm-icon::after{
  content:""; 
  position:absolute; 
  top:50%; 
  left:50%;
  transform:translate(-38%,-50%);
  width:0; 
  height:0;
  border-left:10px solid #111; 
  border-top:9px solid transparent;
  border-bottom:9px solid transparent;
}
.fm-text{
  color:#fff; 
  font:500 18px/1.1  "IBM Plex Sans", sans-serif;
  text-shadow:0 1px 2px rgba(0,0,0,.45);
}


.featured-media--embed { position: relative; aspect-ratio: 16/9; }
.featured-media--embed iframe { width: 100%; height: 100%; }
.featured-video { width: 100%; display: block; }

/* Reserve Spot Section */
.reserve-spot-section { 
   padding: 60px 40px 45px;
}   
.reserve-spot-section .section-inner{
    background: linear-gradient(#000000, #000000) padding-box, linear-gradient(to right, #9BE3FF, #131314) border-box;
    border: 1px solid transparent;
    border-radius: 32px;
    padding: 0;
}
.reserve-spot-gradient-bg {
    background: radial-gradient(37.53% 82.64% at 50% 113.02%, #314C56 0%, #131314 100%),
linear-gradient(90.51deg, rgba(23, 23, 23, 0.5) 15.66%, rgba(23, 23, 23, 0) 94.97%);
    padding: 80px 20px;
    text-align: center;     
    border-radius: 32px;
}
.reserve-spot-section .section-inner h2 {
    font-size: 32px;
    font-weight: 700;       
    margin-bottom: 16px;
    color: #FFFFFF;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}
.reserve-spot-section .section-inner p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;        
    color: #FFFFFF;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 24px;
}
.wpcf7{
    max-width: 690px;
    margin: 0 auto;
}
.form-row {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.field-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 328px;
    width: 100%;
}
.field-wrapper label,
.select-field-wrapper label{
    margin-bottom: 10px;
    float: left;
}
.input-field{
    background-color: transparent;
    color: rgba(209, 209, 209, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 100px;
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
}
.select-field-wrapper {
    width: 100%;
}
.select-field-wrapper select{
     background-color: transparent;
    color: rgba(209, 209, 209, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 100px;
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: url(./assets/images/down-arrow.svg) no-repeat scroll calc(100% - 20px) center;
}
.wpcf7-submit.form-submit{
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    border-radius: 50px;
}

/* Site Footer Starts  */ 
.site-footer{
    border-top: 1px solid rgba(64, 64, 64, 1);
    float: left;
    width: 100%;
    margin-top: 130px;    
    padding-left: 96px;
}

.site-footer .footer-content{
    margin: 0 auto;
    max-width: 1200px;
    padding: 40px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-left-section .footer-company-info .company-logo{
    margin-bottom: 24px;
}

.footer-left-section .footer-info{
    margin-bottom: 40px;
}

.footer-left-section .footer-info h3{
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 24px;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;    
    line-height: 48px;
}

.footer-left-section .footer-info p{
    
}

/* Footer Left Side - Ends */

/* Footer Right Side - Starts */
.footer-right-section{
    
}
.owner-info{

}

.owner-image{
    border-bottom: 1px solid #9BE3FF;
    border-radius: 40px;
}

.owner-details{
    margin-top: 20px;
}

.owner-details h4{
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
}
.owner-details p{
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
}
.owner-details p a:hover{
    text-decoration: underline;
}
.owner-details .phone-icon{ 
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background: url(./assets/images/phone-icon.svg) no-repeat scroll 0 0 transparent;
}   
.owner-details .email-icon{
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background: url(./assets/images/email-icon.svg) no-repeat scroll 0 0 transparent;
}

/* Footer Right Side - Ends */


/* Carousal styling */

.carousal-inner{
    display: flex;
    justify-content: center;
    max-width: 1300px;
}
.carousal-inner .regular.slider{
    max-width: 1300px;
    overflow: hidden;
}

/* Contact Form 7 Related Styling */

.wpcf7-not-valid-tip {
    color: #FF2121;
    font-size: 14px;
    float: left;
    margin-left: 8px;
    margin-top: 10px;
    font-weight: 300;
    display: flex;
    align-items: center;
}
.wpcf7-not-valid-tip:before {
    background: url(./assets/images/warning.svg) no-repeat scroll 0 0 transparent;
    width: 15px;
    height: 18px;
    content: '';
    display: block;
    margin-right: 5px;
    float: left;
    background-size: 15px;
}

/* Generic class for success/error message*/
.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: none !important;
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
}

/* Success Message */
.wpcf7 form.sent .wpcf7-response-output {
    position: relative;
    border-radius: 10px;
    background: rgba(20, 178, 9, 0.2); /* Solid Bg color */
    color: #fff;
    padding: 12px 16px;
    border: none;
}

.wpcf7 form.sent .wpcf7-response-output::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px; 
    border-radius: inherit;
    background: linear-gradient(90deg, #14B209, rgba(20, 178, 9, 0));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; 
}
.wpcf7 form.sent .wpcf7-response-output::before {
    background: url(./assets/images/success-icon.svg) no-repeat scroll 0 0 transparent;
    width: 20px;
    height: 13px;
    content: '';
    display: block;
    margin-right: 8px;
    float: left;
    background-size: 15px;
}
/* Error Message */

.wpcf7 form.invalid .wpcf7-response-output {
    position: relative;
    border-radius: 10px;
    background: rgba(255, 33, 33, 0.2);
    color: #fff;
    padding: 12px 16px;
    border: none;
}

.wpcf7 form.invalid .wpcf7-response-output::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px; 
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 33, 33, 1), rgba(255, 33, 33, 0));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.wpcf7 form.invalid .wpcf7-response-output::before {
    background: url(./assets/images/warning-white-icon.svg) no-repeat scroll 0 0 transparent;
    width: 20px;
    height: 18px;
    content: '';
    display: inline-block;
    margin-right: 3px;
    background-size: 15px;
}

/* Privacy and other inner pages Desktop */

.site-main.inner-page, .site-main.not-found-page, .single-post-page {
    padding: 95px 45px 20px 150px;   
    max-width: var(--content-width);
    margin: 0 auto; 
}
/* Page Heading */
.site-main.inner-page header.entry-header {
    margin-bottom: 40px;
    font-family: 'Special Gothic Expanded One';
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-transform: uppercase;
}

/* Heading inside content */
.site-main.inner-page h2.wp-block-heading {
    margin-bottom: 12px;
    font-family: 'IBM Plex Sans';
    font-weight: 600;
    font-size: 20px;
}
.site-main.inner-page a{
    text-decoration: underline;
}

.site-main.inner-page p {
    margin-bottom: 15px;
}

.wp-block-list {
  margin: 1.5em 0;
  padding-left: 1.5em;
  list-style-type: disc;
}

.wp-block-list li {
  margin: 0.4em 0;
  line-height: 1.6; 
  position: relative;
}

.wp-block-list li::marker {
  color: #fff;
  font-size: 1.2em;
}



/* Basic styling for 404 Page */
.error-404.not-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  text-align: center;
  padding: 40px 20px;
}

.error-404 .error-title {
  font-size: 5rem;
  font-weight: bold;
  margin: 0;
  color: #FFFFFF;
}

.error-404 .error-subtext {
  font-size: 1.5rem;
  margin-top: 15px;
  color: #666;
}

/* Post Page styling */

.entry-meta {
  font-size: 14px;
  color: #fff;
  margin: 10px auto;
}

.entry-meta a {
  color: #fff;
  text-decoration: none;
}

.entry-meta a:hover {
  text-decoration: underline;
}

.entry-meta .byline {
  margin-left: 10px;
  opacity: 0.85;
}

.entry-meta time {
  margin-right: 5px;
}
.entry-meta time.updated{
	display: none;
}
.wp-post-image{
	width: 100%;
}

.entry-content,
.entry-footer{
	margin: 10px auto;
}

/* Comments Area */
.comments-area {
  margin-top: 40px;
  color: #fff;
}

/* Title */
.comment-reply-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

/* Logged-in message */
.logged-in-as {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}
.logged-in-as a {
  color: #fff;
  text-decoration: underline;
}

/* Textarea */
.comment-form-comment textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #555;
  border-radius: 14px; /* fully rounded */
  padding: 12px 16px;
  color: #fff;
  resize: vertical;
  outline: none;
}
.comment-form-comment textarea:focus {
  border-color: #fff;
}

/* Submit button */
.comments-area .form-submit .submit {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 9999px;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.form-submit .submit:hover {
  background: #fff;
  color: #000;
}

/* Required star */
.required {
  color: #ff6b6b;
}

/* Input fields */
.comment-form > p {
    margin-bottom: 20px;
}
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  width: 100%;
  background: transparent;
  border: 1px solid #555;
  border-radius: 9999px; /* fully rounded */
  padding: 10px 16px;
  color: #fff;
  outline: none;
  margin-top: 6px;
  transition: border-color 0.3s;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
  border-color: #fff;
}

/* Labels */
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
  font-size: 14px;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

/* Checkbox (cookies consent) */
.comment-form-cookies-consent {
  font-size: 13px;
  color: #ccc;
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.comment-form-cookies-consent input[type="checkbox"] {
  accent-color: #fff; /* modern browsers */
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.comment-form-cookies-consent label {
  cursor: pointer;
}


/* Tablet Landscape */
@media screen and (max-width: 1250px) {
    .about-section .about-inner {
        gap: 30px;
    }
    .slider-section{
        position: relative;
    }
    .mobile-bg{
        display: block;
    }
    .slider-bg{        
        display: none;
    }
}


/* Tablet Landscape */
@media screen and (max-width: 1024px) {
   
    .cta-banner{
        padding: 40px 20px 110px 20px;
    }
    .cta-banner-car-image{
            width: 400px;
            bottom: -75px;
    }    
}

@media (max-width: 960px) {
  .post-modal-content { width: 92vw; height: 88vh; }
  .modal-body { padding: 20px 22px; }
  .modal-nav.next { right: 52px; }
  .short-news-cards {  
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Tablet Portrait */

@media screen and (max-width: 768px){

    .announcement-bar {
        top: 91px;
    }
    .announcement-bar .reserve-button {
        width: 445px;
    }

    .main-menu .site-logo {
        width: 77px;
        margin-top: 5px;
    }
    .main-menu .site-logo img {
        height: 34px;
    }
   .main-menu {    
        justify-content: space-between;    
        width: 100%;
        height: 90px !important;
        flex-direction: row;
        transition: all 0.3s ease;
        backdrop-filter: blur(4px);
        top: 0;
        z-index: 9991;
    }
    .menu-toggle {
        right: 20px;
    }
    .menu-toggle .icon-container {
        position: relative;
        width: 34px;
        height: 34px;
    }
    .menu-toggle .menu-icon{
        width: 20px;
        height: 23px;
    }
    .menu-toggle .close-icon {       
        width: 14px;
        height: 18px;
    }
    .menu-text {
        font-size: 13px;
    }
    .menu-expanded.main-menu {
        width: 100%;
        height: 100% !important;
    }
    .navigation-menu{
        transform: translate3d(-108%, 110px, 0px);
    }
    /* Updating the position of Main navigation as it would come from the top in mobile */ 
    .menu-expanded.main-menu .navigation-menu {        
        transform: translate3d(25px, 110px, 0px)
    }
    .menu-expanded .site-logo {
        width: 240px;
    }
    .copyright-wrp {
        width: 220px;        
    }
    .menu-expanded.main-menu .copyright-wrp{
        transform: translate3d(0, 0px, 0px);
    }

    .cta-banner{
        padding: 40px 20px 45px 25px;
    }
    .cta-banner-car-image{
        width: 400px;
        bottom: -75px;
    }    

    /* Here we are removing the padding from left side because the main navigation will go from left to top of the page */
    .landing-page, .site-footer {
        padding-left: 0;
    }    

    .site-main.inner-page, .site-main.not-found-page, .single-post-page {
        padding: 160px 40px 20px 40px;
    }
    .site-main.inner-page header.entry-header{
        font-size: 16px;
    }


    .cta-banner .cta-banner-gradient-overlay{
        padding: 54px 20px;
    }
    .cta-banner h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .cta-banner .cta-button {    
        padding: 13px 12px;   
        font-size: 14px;
    }
    .cta-banner-car-image {
        width: 340px;
        bottom: -75px;
    }

    
    .slider-info p {
        font-size: 20px;       
        line-height: 28px;
        margin-bottom: 5px;
    }  
    .slider-info-features ul {    
        gap: 12px;
        padding: 9px 26px;
    }
    .slider-section .slider-info-container {        
        top: 10px;
        left: 10px;  
    }    

    .slider-inner{
        min-height: 545px;
    }

    /* News & Video Section */
    .short-news-cards {    
        grid-template-columns: repeat(1, 1fr);    
    }

    /* Site Footer */
    .site-footer .footer-content { 
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-expanded.main-menu .site-logo_other{
        top: 25px;
        left: 177px;
    }
    .site-logo_other{
        top: 25px;
        left: 100px;

        width: 103px;
    }
}

/* Mobile */

@media screen and (max-width: 650px){

    /* Global styling */   

    .announcement-bar .reserve-button {
        width: auto;
    }

    /* Hero Section Mobile specific styles */
    section.hero-section {
        height: 100vh;
    }

    .hero-cta-container {        
        left: 50px;
        top: 36%;        
    }
    .hero-cta-container h1 {
        font-size: 28px;    
        margin-bottom: 5px;
    }
    .hero-cta-container h2 {
        font-size: 23px;
    }

    /* Announcement Bar */
    .announcement-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 18px;        
    }
    .announcement-bar p {
        text-align: left;
        margin-bottom: 11px;
    }                 

    /* About section */   
    .about-section .about-inner{
        gap: 0;    
        padding: 0px;
    }

    /* Car Info banner section */
    .slider-section {
        min-height: 576px;
    }
    .slider-info p {
        font-size: 26px;    
        line-height: 32px;
        margin-bottom: 14px;
    }
    .slider-info-features ul {    
        gap: 12px;
        padding: 9px 0px;
    }
    .slider-info-features ul li {
        font-size: 13px;
        background-size: 8px 8px;
        padding-left: 16px;
    }   

    .slider-info-features{
        padding: 26px 35px;
    }

    /* CTA Banner section */
    .cta-banner {
        padding: 19px 20px 40px 20px;
    }
    .cta-banner .cta-banner-gradient-overlay {     
        font-size: 24px;   
        padding: 65px 10px;   
    }
    .cta-banner-car-image {
        width: 288px;
        bottom: -49px;
    }

    /* News & Video section */

    .hero-post-card .hero-post-info{
        position: initial;
        margin-top: 20px;
    }
    .hero-post-card a::before{
        display: none;
    }

    .hero-post-info h2 {
        font-size: 20px;
    }

    /* Reserve Spot section */    
    .reserve-spot-section .section-inner h2 {
        font-size: 24px;
    }
    .form-row {
        flex-direction: column;
    }
    .form-row:last-child {
        margin-bottom: 0;
        gap: 0;
    }
    .select-field-wrapper {
       max-width: 330px;
    }

    /* Success and Error message icons */
    .wpcf7 form.invalid .wpcf7-response-output::before,
    .wpcf7 form.sent .wpcf7-response-output::before {
        margin-right: 15px;
    }
    .wpcf7 form .wpcf7-response-output {
        margin: 1em 0.5em 1em;
    }
    
    /* Inner Page */
    .site-main.inner-page, .site-main.not-found-page, .single-post-page {
        padding: 200px 40px 20px 40px;
    }

    /* Badge Styling for mobile  */
    .fm-badge{ 
        left:12px; 
        bottom:12px; 
        gap:10px; 
    }
    .fm-icon{ 
        width:38px; 
        height:38px; 
        flex-basis:38px; 
    }
    .fm-icon::after{ 
        border-left-width:12px; 
        border-top-width:8px; 
        border-bottom-width:8px; 
    }
    .fm-text{ 
        font-size:16px; 
    }
    
    

    /* Here we are going to make the articles look like slider */ 
    .short-news-cards{
        display:grid;
        grid-template-columns: none;   /* IMPORTANT: remove the 3-col rule */
        grid-auto-flow: column;        /* lay items left to right */
        grid-auto-columns: 100%;       /* 1 card per view (use 80% for peek) */
        gap:20px;
        overflow-x:auto; overflow-y:hidden;
        scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
        padding-bottom:12px;
    }
    .short-news-cards > *{ scroll-snap-align:start; min-width:0; }
    
    .more-news-articles-heading,
    .featured-article-heading{
        border-bottom: 1px solid #404040;
    }

    /* Adding the controls css */
    .short-news-controls {
        display: flex;
        gap: 10px;
        margin-left: 45px;
    }

    .short-news-controls button {
        display: block;
        width: 44px;
        height: 44px;
        padding: 0;   
        cursor: pointer;
        color: transparent;
        border: none;
        outline: none;
        background: #ffffff;    
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .short-news-controls 
    .short-news-prev:before, 
    .short-news-next:before {
        content: ' ';    
        font-size: 20px;
        line-height: 1;
        height: 18px;
        width: 11px;
        display: block;
        opacity: .75;
        color: white;        
        background: url(./assets/images/forward-arrow.svg) no-repeat scroll 0 0 transparent;
        background-size: 11px;
    }    
    .short-news-prev:before{
        transform: rotate(180deg);
    }
}


/* --- Overlay base --- */
.post-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.post-modal.open { display: flex; }
.post-modal.open.show { opacity: 1; }

/* --- Modal box --- */
.post-modal-content {
  width: 100%;
  max-width: 1260px;
  height: 80vh;
  background: var(--color-background);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  position: relative;
  transform: translateY(10px);
  transition: transform 0.25s ease;
}
.post-modal.open.show .post-modal-content { transform: translateY(0); }

.modal-body {
  padding: 32px 56px;
  overflow-y: auto;
  height: 100%;
}
.modal-post{
    
}
.modal-body .short-news-card{

}
.modal-body .short-news-card img{ 
    width: 100%;
}
.modal-post-content {
    float: left;
    width: 100%;
    margin-top: 12px;
}
/* --- Buttons --- */
.close-modal {
    display: flex;
    justify-content: center;
    align-items: center;
}
.close-modal img{
    width: 18px;
    height: 18px;
}
.close-modal, .modal-nav {
  position: absolute;
  top: 10px;
  width: 42px; height: 42px;
  border: none;
  border-radius: 100px;
  background: #ffffff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}
.close-modal:hover, .modal-nav:hover { background: rgba(255,255,255,0.75); }
.close-modal { right: 10px; }
.modal-nav.prev { left: 58px; top: 50%; }
.modal-nav.next { right: 58px;  top: 50%; }

/* --- Loading Spinner --- */
.modal-loading {
  text-align: center;
  padding-top: 100px;
  color: #777;
}
.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border: 4px solid #ccc;
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Scroll lock --- */
body.no-scroll { overflow: hidden; }