/* ==========================================
   SRH TOURS & TRAVELS CHENNAI
   Premium Website CSS
==========================================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f7f7f7;

    color:#333;

    overflow-x:hidden;

    line-height:1.6;

}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

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

::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:20px;
}

/* Loader */

#loader{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.spinner{

    width:70px;

    height:70px;

    border:7px solid #ddd;

    border-top:7px solid gold;

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/* Header */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    padding:15px 80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(0,0,0,.80);

    backdrop-filter:blur(10px);

    z-index:9999;

    box-shadow:0 5px 20px rgba(0,0,0,.25);

}

/* Logo */

.logo img{

    height:75px;

}

/* Navigation */

nav{

display:flex;

align-items:center;

}

.nav-links{

display:flex;

list-style:none;

}

.nav-links li{

margin-left:30px;

}

.nav-links li a{

text-decoration:none;

color:white;

font-size:16px;

font-weight:500;

transition:.3s;

position:relative;

}

.nav-links li a:hover{

color:#FFD700;

}

.nav-links li a::after{

content:"";

position:absolute;

left:0;

bottom:-5px;

width:0;

height:2px;

background:#FFD700;

transition:.3s;

}

.nav-links li a:hover::after{

width:100%;

}

.menu-toggle{

display:none;

font-size:30px;

cursor:pointer;

color:white;

}

/* Hero */

.hero{

position:relative;

height:100vh;

background:url("../images/hero-banner.png");

background-size:cover;

background-position:center;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

color:white;

}

.hero-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.60);

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin-top:40px;

    padding:20px;

}

.hero h1{

font-size:55px;

font-weight:600;

margin-bottom:15px;

text-shadow:2px 2px 10px black;

}

.hero h3{

font-size:30px;

color:#FFD700;

margin-bottom:25px;

}

.hero p{

font-size:22px;

margin-bottom:40px;

line-height:1.8;

}

/* Buttons */

.btn{

display:inline-block;

padding:15px 35px;

background:#FFD700;

color:#111;

border-radius:40px;

text-decoration:none;

font-size:18px;

font-weight:600;

transition:.4s;

border:none;

cursor:pointer;

margin:10px;

}

.btn:hover{

background:white;

transform:translateY(-5px);

box-shadow:0 15px 25px rgba(0,0,0,.3);

}

.btn-secondary{

background:white;

color:#111;

}

.btn-secondary:hover{

background:#FFD700;

}

/* Common Section */

section{

padding:100px 80px;

}

section h2{

text-align:center;

font-size:42px;

margin-bottom:50px;

position:relative;

}

section h2::after{

content:"";

width:100px;

height:4px;

background:#FFD700;

display:block;

margin:15px auto;

border-radius:20px;

}

/* Cards */

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.card{

background:white;

padding:35px;

border-radius:15px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.card:hover{

transform:translateY(-12px);

box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.card i{

font-size:55px;

color:#FFD700;

margin-bottom:20px;

}

.card h3{

margin-bottom:15px;

font-size:24px;

}

.card p{

font-size:16px;

color:#666;

}

/* ===================================================
   ABOUT SECTION
===================================================*/

#about{
    background:#ffffff;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    transition:.5s;
}

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

.about-text{
    flex:1;
}

.about-text h2{
    text-align:left;
}

.about-text h2::after{
    margin:15px 0;
}

.about-text p{
    font-size:18px;
    color:#555;
    margin-bottom:25px;
    line-height:1.9;
}

/* ===================================================
   SERVICES
===================================================*/

#services{
    background:#f9f9f9;
}

#services .card{

    border-top:5px solid #FFD700;

}

#services .card:hover{

    background:#111;

    color:white;

}

#services .card:hover p{

    color:#ddd;

}

#services .card:hover i{

    color:#FFD700;

}

/* ===================================================
   FLEET
===================================================*/

#fleet{

    background:white;

}

#fleet .card{

    overflow:hidden;

}

#fleet .card i{

    font-size:65px;

}

#fleet .card:hover{

    background:#FFD700;

    color:#111;

}

#fleet .card:hover p{

    color:#111;

}

/* ===================================================
   STATISTICS
===================================================*/

#stats{

    background:linear-gradient(135deg,#111,#333);

    color:white;

}

#stats h2{

    color:white;

}

#stats .card{

    background:rgba(255,255,255,.08);

    color:white;

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

}

#stats .card:hover{

    transform:translateY(-8px);

}

#stats h1{

    color:#FFD700;

    font-size:55px;

    margin-bottom:10px;

}

#stats p{

    color:#eee;

    font-size:18px;

}

/* ===================================================
   PACKAGES
===================================================*/

#packages{

    background:#f5f5f5;

}

#packages .card{

    border-radius:20px;

    overflow:hidden;

    position:relative;

}

#packages .card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:#FFD700;

}

#packages .card:hover{

    background:#111;

    color:white;

}

#packages .card:hover p{

    color:#ddd;

}

/* ===================================================
   GALLERY
===================================================*/

#gallery{

    background:white;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

}

.gallery-grid img{

    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    transition:.5s;

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

.gallery-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 20px 40px rgba(0,0,0,.3);

}

/* Gallery Title */

#gallery h2{

    margin-bottom:60px;

}

/* ===================================================
   COMMON IMAGE EFFECT
===================================================*/

img{

    max-width:100%;

    display:block;

}

/* ===================================================
   SECTION SPACING
===================================================*/

#about,
#services,
#fleet,
#stats,
#packages,
#gallery{

    padding-top:100px;

    padding-bottom:100px;

}

/* ==========================================
   TESTIMONIAL SECTION
==========================================*/

#testimonial{
    background:#f8f8f8;
}

#testimonial .card{
    position:relative;
    padding:40px;
    text-align:center;
}

#testimonial .card::before{
    content:"★★★★★";
    color:#FFD700;
    font-size:22px;
    display:block;
    margin-bottom:20px;
}

#testimonial h4{
    color:#d4af37;
    margin-top:20px;
}

/* ==========================================
   BOOKING FORM
==========================================*/

#booking{
    background:white;
}

#booking form{
    max-width:800px;
    margin:auto;
}

#booking input,
#booking textarea{
    width:100%;
    padding:18px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    font-family:Poppins,sans-serif;
    transition:.3s;
}

#booking input:focus,
#booking textarea:focus{
    outline:none;
    border-color:#FFD700;
    box-shadow:0 0 12px rgba(255,215,0,.4);
}

#booking textarea{
    min-height:170px;
    resize:vertical;
}

#booking button{
    width:100%;
}

/* ==========================================
   CONTACT
==========================================*/

#contact{
    background:#111;
    color:white;
    text-align:center;
}

#contact h2{
    color:white;
}

#contact h3{
    color:#FFD700;
    margin-bottom:20px;
}

#contact p{
    margin:12px 0;
    font-size:17px;
}

.contact-buttons{
    margin:35px 0;
}

.contact-buttons .btn{
    margin:10px;
}

#contact iframe{
    border-radius:15px;
    margin-top:35px;
}

/* ==========================================
   FOOTER
==========================================*/
/* ==========================================
   PREMIUM FOOTER
========================================== */

footer{

    position:relative;

    overflow:hidden;

    background:url("../images/hero-banner.png") center center/cover no-repeat;

    color:white;

    padding:90px 20px;

    text-align:center;

}

/* Dark Overlay */

footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,0.80);

    z-index:1;

}

/* Footer Content */

.footer-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}

.footer-content h2{

    font-size:36px;

    color:#FFD700;

    margin-bottom:20px;

    font-weight:700;

}

.footer-content p{

    color:#fff;

    font-size:17px;

    line-height:1.9;

    margin:10px 0;

}

/* Contact Icons */

.footer-contact{

    margin-top:30px;

}

.footer-contact p{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

}

.footer-contact i{

    color:#FFD700;

    font-size:20px;

}

/* Social Icons */

.footer-social{

    margin-top:35px;

}

.footer-social a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:50px;

    height:50px;

    border-radius:50%;

    background:#FFD700;

    color:#111;

    margin:0 8px;

    font-size:20px;

    transition:.4s;

    text-decoration:none;

}

.footer-social a:hover{

    background:white;

    transform:translateY(-5px);

}

/* Copyright */

.footer-bottom{

    margin-top:35px;

    border-top:1px solid rgba(255,255,255,.2);

    padding-top:20px;

    font-size:15px;

    color:#ddd;

}

/* Mobile */

@media(max-width:768px){

.footer-content h2{

    font-size:28px;

}

.footer-content p{

    font-size:15px;

}

.footer-social a{

    width:42px;

    height:42px;

}

}
/* ==========================================
   FLOATING BUTTONS
==========================================*/

.float-btn{

    position:fixed;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    text-decoration:none;

    font-size:28px;

    box-shadow:0 10px 25px rgba(0,0,0,.3);

    z-index:999;

    transition:.3s;

}

.float-btn:hover{

    transform:scale(1.1);

}

.whatsapp{

    background:#25D366;

    bottom:95px;

    right:20px;

}

.call{

    background:#007BFF;

    bottom:20px;

    right:20px;

}

/* ==========================================
   TOP BUTTON
==========================================*/

#topBtn{

    position:fixed;

    bottom:20px;

    left:20px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#FFD700;

    color:#111;

    font-size:24px;

    cursor:pointer;

    display:none;

    z-index:999;

    transition:.3s;

}

#topBtn:hover{

    transform:scale(1.1);

}

/* ==========================================
   CARD ANIMATION
==========================================*/

.card{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================
   RESPONSIVE
==========================================*/

@media(max-width:992px){

header{

    padding:15px 25px;

}

.logo img{

    height:60px;

}

.hero h1{

    font-size:42px;

}

.hero h3{

    font-size:24px;

}

.hero p{

    font-size:18px;

}

section{

    padding:80px 25px;

}

.about-container{

    flex-direction:column;

}

.gallery-grid{

    grid-template-columns:1fr 1fr;

}

.cards{

    grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.menu-toggle{

    display:block;

}

.nav-links{

    display:none;

    position:absolute;

    top:80px;

    right:15px;

    width:260px;

    background:#111;

    border-radius:15px;

    flex-direction:column;

    padding:20px;

}

.nav-links.active{

    display:flex;

}

.nav-links li{

    margin:15px 0;

}

.hero{

    text-align:center;

}

.hero h1{

    font-size:34px;

}

.hero h3{

    font-size:20px;

}

.hero p{

    font-size:16px;

}

.hero-buttons{

    display:flex;

    flex-direction:column;

}

.gallery-grid{

    grid-template-columns:1fr;

}

.cards{

    grid-template-columns:1fr;

}

.float-btn{

    width:55px;

    height:55px;

}

}

@media(max-width:480px){

.hero h1{

    font-size:28px;

}

.hero p{

    font-size:15px;

}

.btn{

    width:100%;

}

section h2{

    font-size:30px;

}

}

.success-message{
    display:none;
    margin-top:20px;
    padding:15px;
    background:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb;
    border-radius:8px;
    text-align:center;
    font-weight:600;
}

.logo{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.logo h2{
    font-size:32px;
    font-weight:700;
    margin:0;
    line-height:1.1;
}

.logo h2 span.gold{
    color:#FFD700;
}

.logo h2 span.white{
    color:#FFFFFF;
}

.logo .city{
    color:#DDDDDD;
    font-size:13px;
    letter-spacing:4px;
    margin-top:3px;
    text-transform:uppercase;
}

.logo .tagline{
    color:#FFD700;
    font-size:12px;
    margin-top:4px;
    letter-spacing:1px;
    font-weight:500;
}


