/* Basic Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif; /* You can change this font */
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4; /* Light grey background */
}

/* Header and Navigation */
header {
    background-color: #2c3e50; /* Dark blue/grey */
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav h1 {
    font-size: 1.8rem;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: #3498db; /* Brighter blue on hover */
    transform: translateY(-2px);
}

/* Main Content Area */
main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Hero Section (index.html) */
#hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover; /* Replace with your hero image */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4); /* Dark overlay */
    z-index: 1;
}

#hero h2, #hero p {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#hero h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

#hero p {
    font-size: 1.5rem;
}

/* Featured Tours Section (index.html) */
#featured-tours {
    text-align: center;
    margin-bottom: 40px;
}

#featured-tours h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

#featured-tours h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #3498db;
    border-radius: 2px;
}

.tour-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.tour-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 3px solid #3498db;
}

.tour-card h3 {
    font-size: 1.6rem;
    margin: 15px 15px 10px;
    color: #2c3e50;
}

.tour-card p {
    padding: 0 15px 15px;
    color: #555;
    font-size: 0.95rem;
}

.tour-card .btn {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 15px 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tour-card .btn:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

/* Content Pages (Privacy, Terms, Contact) */
section {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

section h3 {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 25px;
    margin-bottom: 10px;
}

section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

section ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 15px;
}

section ul li {
    margin-bottom: 8px;
}

/* Contact Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
    transform: scale(1.2);
}

.checkbox-group label {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    font-weight: normal;
}

#submitButton {
    background-color: #27ae60; /* Green for submit */
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#submitButton:hover:not(:disabled) {
    background-color: #229954;
    transform: translateY(-2px);
}

#submitButton:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 30px;
}

/* Responsive Design (Media Queries) */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
    }

    nav ul li {
        margin: 0 10px;
    }

    #hero h2 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1.2rem;
    }

    .tour-card-container {
        grid-template-columns: 1fr;
    }

    section {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    nav h1 {
        font-size: 1.5rem;
    }

    nav ul li a {
        font-size: 0.9rem;
    }

    #hero {
        padding: 60px 15px;
    }

    #hero h2 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }
}

/* Add to your existing style.css */

/* --- Contact Us Redesign Specific Styles --- */
#contact-us-redesign {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 40px; /* Space between left and right sections */
    max-width: 1200px; /* Max width as per other sections */
    margin: 40px auto;
    background-color: #333333; /* Dark background for the whole section */
    color: #fff; /* White text */
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5); /* Stronger shadow for dark theme */
}

.contact-left,
.contact-right {
    flex: 1; /* Both sections take equal space */
    min-width: 300px; /* Minimum width before wrapping */
    padding: 20px;
}

.contact-left .get-in-touch-label {
    font-size: 0.9rem;
    color: #ffd700; /* Gold color for "GET IN TOUCH" */
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-left h2,
.contact-right h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.underline {
    width: 60px;
    height: 3px;
    background-color: #ffd700; /* Gold underline */
    margin-bottom: 25px;
    border-radius: 2px;
}

.contact-left p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #ccc; /* Lighter grey for body text */
}

.contact-info-items {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #ccc;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ffd700; /* Gold icons */
    margin-right: 15px;
    width: 30px; /* Fixed width for icons to align text */
    text-align: center;
    padding-top: 5px; /* Adjust vertical alignment of icon */
}

.contact-item p {
    margin-bottom: 0; /* Remove default paragraph margin */
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Styling */
.contact-right .form-group {
    margin-bottom: 20px;
}

.contact-right input[type="text"],
.contact-right input[type="email"],
.contact-right input[type="tel"],
.contact-right input[type="url"],
.contact-right textarea {
    width: 100%;
    padding: 15px;
    border: none; /* Remove default border */
    border-radius: 5px;
    background-color: #4a4a4a; /* Darker grey for input fields */
    color: #fff; /* White text in inputs */
    font-size: 1rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
    color: #b0b0b0; /* Lighter placeholder text */
}

.contact-right input:focus,
.contact-right textarea:focus {
    background-color: #5a5a5a; /* Slightly lighter on focus */
    box-shadow: 0 0 10px rgba(255,215,0,0.3); /* Gold glow on focus */
    outline: none;
}

.country-code-input {
    position: relative;
    display: flex;
    align-items: center;
}

.country-flag {
    position: absolute;
    left: 15px;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    pointer-events: none; /* So input field can be clicked through it */
}

.country-flag img {
    width: 24px; /* Size of flag */
    height: auto;
    margin-right: 8px;
    border-radius: 2px;
}

.country-code-input input[type="tel"] {
    padding-left: 60px; /* Make space for flag and arrow */
}


.contact-right textarea {
    resize: vertical;
    min-height: 120px; /* Min height for message box */
}

.contact-right .checkbox-group {
    display: flex;
    align-items: flex-start; /* Align text to top if it wraps */
    margin-bottom: 25px;
}

.contact-right .checkbox-group input[type="checkbox"] {
    margin-top: 4px; /* Adjust vertical alignment of checkbox */
    margin-right: 10px;
    transform: scale(1.2); /* Make checkbox slightly larger */
    accent-color: #ffd700; /* Gold checkbox color */
}

.contact-right .checkbox-group label {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    font-weight: normal;
}

#submitButton {
    background-color: #ffd700; /* Gold button */
    color: #333; /* Dark text on button */
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

#submitButton:hover:not(:disabled) {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

#submitButton:disabled {
    background-color: #666666; /* Darker grey when disabled */
    cursor: not-allowed;
    color: #aaa;
}

/* Responsive adjustments for the contact page */
@media (max-width: 900px) {
    #contact-us-redesign {
        flex-direction: column; /* Stack columns on smaller screens */
        padding: 30px;
    }

    .contact-left,
    .contact-right {
        min-width: unset; /* Remove min-width to allow full width */
        width: 100%;
        padding: 0; /* Remove internal padding if desired */
    }

    .contact-left h2, .contact-right h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    #contact-us-redesign {
        padding: 20px;
    }

    .contact-left .get-in-touch-label {
        font-size: 0.8rem;
    }

    .contact-left h2, .contact-right h2 {
        font-size: 1.8rem;
    }

    .contact-item p,
    .contact-right input,
    .contact-right textarea,
    .contact-right .checkbox-group label {
        font-size: 0.9rem;
    }

    #submitButton {
        padding: 12px 25px;
        font-size: 1rem;
    }
}