/* ===============================
   GLOBAL STYLES
================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0a0a0a;
    color: #e5e5e5;
    scroll-behavior: smooth;
}

.container {
    width: 85%;
    margin: auto;
    padding: 80px 0;
}

/* ===============================
   HEADER
================================= */

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.logo img {
    width: 55px;
}

nav a {
    color: #ddd;
    text-decoration: none;
    margin-left: 35px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav a:hover,
nav .active {
    color: #d4af37;
}

/* HERO SECTION FIXED */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://images.pexels.com/photos/1450353/pexels-photo-1450353.jpeg?auto=compress&cs=tinysrgb&w=1920') 
    no-repeat center center/cover;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 20px;
}

.hero-logo {
    width: 180px;   /* Bigger logo */
    margin-bottom: 30px;
    border-radius: 50%;
    border: 4px solid #d4af37;
}

.hero h1 {
    font-size: 60px;
    color: #ffffff;
    letter-spacing: 2px;
}

.hero p {
    font-size: 22px;
    color: #d4af37;
    margin-top: 10px;
}


/* ===============================
   SECTION TITLES
================================= */

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: #d4af37;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: #c9a227;
    font-size: 16px;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* ===============================
   SERVICES & EXPERIENCE
================================= */

.services-section,
.experience-section {
    padding: 120px 20px;
    background: #0a0a0a;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    transition: 0.4s ease;
    border: 1px solid #222;
}

.service-card:hover {
    transform: translateY(-10px);
    border: 1px solid #d4af37;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
    text-align: center;
}

.card-content h3 {
    margin-bottom: 12px;
    color: #d4af37;
    font-size: 22px;
}

.card-content p {
    color: #aaa;
    font-size: 15px;
}

/* ===============================
   ABOUT PAGE FIXED
================================= */

.about-hero {
    padding-top: 140px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 10px;
}

.about-hero p {
    color: #aaa;
    font-size: 18px;
}

/* LOGO CENTER FIX */
.about-logo {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.about-logo img {
    width: 160px;
    border-radius: 50%;
    border: 4px solid #d4af37;
}

/* CONTENT CENTER FIX */
.about-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

.about-content h2 {
    color: #fff;
    margin-bottom: 15px;
}

.about-content p {
    color: #bbb;
    line-height: 1.8;
    font-size: 17px;
}

/* ===============================
   DESTINATIONS PAGE
================================= */

.dest-section {
    padding: 140px 60px 100px;
    text-align: center;
}

.dest-section h1 {
    color: #d4af37;
    font-size: 38px;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* EXACTLY 3 PER ROW */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* CARD STYLE */
.dest-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transition: 0.4s ease;
}

/* IMAGE */
.dest-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* TITLE */
.dest-card h3 {
    padding: 20px;
    font-size: 20px;
    color: #d4af37;
    letter-spacing: 1px;
}

/* HOVER EFFECT */
.dest-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.dest-card:hover img {
    transform: scale(1.05);
}

/* TABLET */
@media (max-width: 992px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .dest-grid {
        grid-template-columns: 1fr;
    }
}


/* ===============================
   CONTACT PAGE
================================= */

.contact-section {
    padding: 120px 60px 80px;
}

.contact-section h1 {
    text-align: center;
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 50px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #111;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #222;
}

.info-card i {
    font-size: 20px;
    color: #d4af37;
}

.social-icons a {
    font-size: 18px;
    color: white;
    margin-right: 12px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a1a1a;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #d4af37;
    color: black;
    transform: scale(1.1);
}
.contact-form {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #0a0a0a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 6px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #d4af37;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #c9a227;
}

/* ===============================
   FOOTER
================================= */

footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 50px 20px;
    border-top: 1px solid #222;
}


/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 900px) {

    .main-header {
        padding: 15px 25px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .why-modern {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }
}
/* ===============================
   FLOATING WHATSAPP
================================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    z-index: 9999;
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
/* WHY CHOOSE US GRID FIX */

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #111;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
}

.why-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-card h3 {
    color: #d4af37;
    margin-bottom: 12px;
    font-size: 20px;
}

.why-card p {
    color: #bbb;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
