/*
Theme Name: Hotel Girja Sagar
Author: Prakriti
Version: 1.0
*/
/* --- Global Styles & Variables --- */
:root {
    --gold: #D4AF37; /* Metallic gold from logo */
    --gold-dim: #BF9B30; /* Slightly darker gold for hover states */
    --deep-blue: #0A1C2E; /* Deep navy blue background */
    --deep-blue-light: #162B40; /* Lighter shade of the background */
    --teal: #147A8F; /* Accent teal for buttons and highlights */
    --white: #FFFFFF;
    --text-color: #E0E0E0; /* Slightly off-white for body text */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Smooth scrolling for internal links */
}

body {
    font-family: 'Times New Roman', serif; /* Professional serif */
    background-color: var(--deep-blue);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Reduce padding slightly */
}

/* --- Buttons --- */
.btn-explore, .btn-search, .btn-book, .btn-reservations, .btn-submit-comment {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease; /* CHANGE: added transform to transition */
    border: none;
}

/* CHANGE: Added button scale-on-click effect */
.btn-explore:active, .btn-search:active, .btn-book:active, .btn-reservations:active, .btn-submit-comment:active {
    transform: scale(0.95);
}

.btn-explore {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    margin-top: 20px;
}
.btn-explore:hover {
    background-color: var(--gold);
    color: var(--deep-blue);
}

.btn-search, .btn-submit-comment {
    background-color: var(--gold);
    color: var(--deep-blue);
}
.btn-search:hover, .btn-submit-comment:hover {
    background-color: var(--gold-dim);
}

.btn-book {
    background-color: var(--teal);
    color: var(--white);
    font-size: 0.9em;
}
.btn-book:hover {
    background-color: #106679;
}

.btn-reservations {
    background-color: var(--teal);
    color: var(--white);
    border: 2px solid transparent;
}
.btn-reservations:hover {
    background-color: transparent;
    border-color: var(--teal);
    color: var(--teal);
}

/* --- Icons --- */
.gold-icon {
    color: var(--gold);
}

/* --- 1. Responsive Header Styles --- */
header {
    background: linear-gradient(135deg, var(--gold) 0%, #BF9B30 100%);
    padding: 10px 0;
    position: fixed; /* Fixed header */
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: slideInDown 0.5s ease; /* CHANGE: added animation on load */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px; /* Smaller logo for responsive design */
    margin-right: 12px;
}

.logo-text h1 {
    font-size: 1rem; /* Smaller font for responsive design */
    color: #1A3E5C;
    line-height: 1.1;
    font-weight: bold;
}

.logo-text p {
    font-size: 0.6rem; /* Smaller tagline */
    color: #333;
    letter-spacing: 1px;
}

/* Menu Toggle Button (Hamburger) */
.menu-toggle {
    display: none; /* Hidden by default (on larger screens) */
    background: transparent;
    border: none;
    color: #1A3E5C;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Navigation Links */
.nav-links ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links ul li {
    margin-left: 20px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #1A3E5C;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-links ul li a:hover:not(.btn-reservations) {
    color: #333;
}

/* Responsive Styles for Header (Tablet and Mobile) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show hamburger menu */
    }

    .nav-links {
        position: absolute;
        top: 100%; /* Below the header */
        left: 0;
        width: 100%;
        background-color: var(--gold-dim);
        display: none; /* Hidden by default */
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: display 0.3s ease; /* CHANGE: minor transition for menu open */
    }

    .nav-links.active {
        display: flex; /* Show when active class is added */
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
    }

    .nav-links ul li {
        margin: 10px 0;
        width: 80%; /* Link width */
        text-align: center;
    }

    .nav-links ul li a {
        display: block;
        padding: 10px 0;
    }

    .btn-reservations {
        width: 100%; /* Full width button */
    }
}

/* --- 2. Responsive Hero Section Styles with Video --- */
.hero {
    height: 100vh; /* Full viewport height */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px; /* Offset for fixed header (approx height) */
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container */
}

.hero-image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    z-index: 10;
    text-align: center;
    width: 80%; /* Responsive content width */
    animation: fadeIn 1s ease 0.3s both; /* CHANGE: Fade in on load */
}

.hero-text-box {
    border: 2px solid var(--gold);
    padding: 30px; /* Responsive padding */
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-text-box h2 {
    color: var(--gold);
    font-size: 2rem; /* Responsive font size */
    letter-spacing: 1px;
}

/* Responsive Styles for Hero (Mobile) */
@media (max-width: 480px) {
    .hero-text-box h2 {
        font-size: 1.5rem; /* Smaller font on mobile */
    }
}

/* --- Responsive Reservation Bar --- */
.reservation-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #1A3E5C;
    padding: 15px 0;
    z-index: 10;
    animation: slideInUp 0.7s ease; /* CHANGE: slide up on load */
}

.reservation-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Wrap on smaller screens */
    gap: 15px;
}

.form-group {
    display: flex;
    align-items: center;
}

.form-group label {
    margin-right: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.date-input-wrapper {
    position: relative;
}

.date-input {
    background-color: var(--white);
    color: #333;
    border: 1px solid #ccc;
    padding: 8px; /* Responsive padding */
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
}

/* Responsive Styles for Reservation Bar (Tablet and Mobile) */
@media (max-width: 768px) {
    .reservation-form {
        flex-direction: column; /* Stack vertically */
    }

    .form-group {
        width: 100%;
        justify-content: center;
    }

    .date-input {
        width: 100%; /* Full width input */
    }

    .btn-search {
        width: 100%; /* Full width button */
    }
}

/* --- 3. Responsive Accommodations Section Styles --- */
.rooms {
    padding: 60px 0;
    background-color: var(--deep-blue-light);
}

.rooms h3 {
    color: var(--gold);
    text-align: center;
    font-size: 2rem; /* Responsive font size */
    margin-bottom: 40px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid columns */
    gap: 30px;
}

.room-card {
    background-color: var(--deep-blue);
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease; /* CHANGE: expanded transitions for animation */
    /* CHANGE: hide before scroll-triggered animation (requires JS) */
    opacity: 0;
}

/* CHANGE: class to apply with scroll logic */
.room-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* CHANGE: default state for rooms that need to animate (requires JS) */
.animate-room {
    transform: translateY(30px);
}


.room-card:hover {
    transform: translateY(-8px); /* CHANGE: increased lift */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2); /* CHANGE: added soft gold glow */
}

.room-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-details {
    padding: 20px;
}

.room-details h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.room-details p {
    font-size: 0.9em;
    color: #BBB;
    margin-bottom: 20px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- 4. Responsive Ratings and Reviews Section Styles --- */
.reviews {
    padding: 60px 0;
    background-color: var(--deep-blue-light);
}

.reviews h3 {
    color: var(--gold);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.reviews-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.ratings-summary {
    text-align: center;
    margin-bottom: 15px;
}

.average-rating {
    font-size: 2.5rem; /* Responsive font size */
    font-weight: bold;
    color: var(--white);
    margin-bottom: 8px;
}

.profile-img{
    width: 60px;
    height:60px ; 
}
.stars {
    font-size: 1.2rem;
    margin-left: 8px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 800px;
}

.review-box {
    background-color: var(--deep-blue);
    padding: 20px;
    position: relative;
    border-radius: 8px;
    /* CHANGE: transitions for scroll-triggered slide-in (requires JS) */
    opacity: 0; 
    transition: opacity 0.5s ease, transform 0.6s ease;
}

/* CHANGE: class to apply with scroll logic */
.review-box.slide-in-active {
    opacity: 1;
    transform: translateX(0);
}

/* Quoted Box Styles with Outlines */
.quote-box::before {
    content: '"';
    position: absolute;
    top: 5px; /* Adjusted top position */
    left: 15px; /* Adjusted left position */
    font-size: 4rem; /* Adjusted size */
    color: rgba(255, 255, 255, 0.08); /* Fainter quote */
    z-index: 0;
}

.teal-outline {
    border: 2px solid var(--teal);
    transform: translateX(-30px); /* CHANGE: default state for slide-in (requires JS) */
}

.gold-outline {
    border: 2px solid var(--gold);
    transform: translateX(30px); /* CHANGE: default state for slide-in (requires JS) */
}

.review-text {
    font-style: italic;
    color: #CCC;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
    font-size: 0.9rem; /* Adjusted font size */
    line-height: 1.5;
}

/* Comment Input Styles */
.comment-input-area {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-box {
    width: 100%;
    height: 80px; /* Responsive height */
    padding: 12px;
    background-color: var(--deep-blue);
    color: var(--text-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    resize: none;
    font-family: inherit;
    font-size: 0.9rem;
}

.comment-box:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-submit-comment {
    font-size: 0.9rem;
}

/* --- 5. Responsive Footer Styles --- */
footer {
    background-color: #1A3E5C;
    padding: 50px 0 15px; /* Reduced padding */
    color: var(--text-color);
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive columns */
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.footer-section.contact p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-section.contact i {
    color: var(--gold);
    margin-right: 8px;
}

.footer-section.info p {
    font-size: 0.85em;
    line-height: 1.5;
}

.footer-section.links ul {
    list-style: none;
}

.footer-section.links ul li {
    margin-bottom: 6px;
}

.footer-section.links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
}

.footer-section.links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.8em;
}

/* Final adjustments for very small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    .hero-text-box h2 {
        font-size: 1.2rem;
    }
}

/* --- CHANGE: NEW ANIMATION KEYFRAMES --- */

/* Slide down on load (Header) */
@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slide up on load (Reservation Bar) */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Simple fade in on load (Hero text) */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* --- 1. Main Interactive Section Styles --- */
.interactive-section {
    padding: 80px 0;
    background-color: var(--deep-blue);
}

.interactive-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* For responsiveness */
    gap: 40px;
}

/* --- 2. Circular Ring Section Styles --- */
.circular-ring-section {
    flex: 1;
    min-width: 300px; /* Base size for responsiveness */
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring-container {
    position: relative;
    width: 520px;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-logo {
    position: absolute;
    width: 140px;
    height: 140px;
    z-index: 10;
}

.center-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* The Rotating Media Ring */
.media-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 1s ease; /* Smooth rotation animation */
    z-index: 5;
}

/* ===== PERFECT CIRCULAR ORBIT (FINAL FIX) ===== */

.media-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    --radius: 200px; /* adjust if needed */
}

/* Base ring item */
.ring-item {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    overflow: hidden;
    cursor: pointer;

    top: 50%;
    left: 50%;

    /* IMPORTANT FIX */
    transform-origin: center;
}

/* Keep images straight */
.ring-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(0deg); /* ensure no tilt */
}

/* PERFECT POSITIONING (center aligned) */
.ring-item[data-index="0"] {
    transform: translate(-50%, -50%) rotate(0deg) translateY(calc(-1 * var(--radius))) rotate(0deg);
}

.ring-item[data-index="1"] {
    transform: translate(-50%, -50%) rotate(72deg) translateY(calc(-1 * var(--radius))) rotate(-72deg);
}

.ring-item[data-index="2"] {
    transform: translate(-50%, -50%) rotate(144deg) translateY(calc(-1 * var(--radius))) rotate(-144deg);
}

.ring-item[data-index="3"] {
    transform: translate(-50%, -50%) rotate(216deg) translateY(calc(-1 * var(--radius))) rotate(-216deg);
}

.ring-item[data-index="4"] {
    transform: translate(-50%, -50%) rotate(288deg) translateY(calc(-1 * var(--radius))) rotate(-288deg);
}
/* --- Thin Elegant Connecting Ring --- */
.connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.connecting-lines circle,
.connecting-lines path {
    stroke: rgba(212, 175, 55, 0.5); /* soft gold */
    stroke-width: 0.2; /* very thin like thread */
}


/* ===== CENTER IMAGE VIEWER (ENHANCED) ===== */

.center-viewer {
    display: none;
    position: absolute;

    width: 350px;   /* increased from 250 → 350 */
    height: 350px;

    background-color: var(--deep-blue-light);
    border: 4px solid var(--gold);
    border-radius: 10px;

    z-index: 15;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.close-viewer {
    position: absolute;
    top: 5px;
    right: 10px;
    color: var(--text-color);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-viewer:hover {
    color: var(--gold);
}

.center-viewer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Facilities Cards --- */
.facilities-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
}

.facility-card {
    background: linear-gradient(135deg, #1A3E5C, #0d2a3f);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.facility-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.facility-card p {
    font-weight: 600;
}

.facility-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}
/* ================= RESPONSIVE ORBIT GALLERY ================= */

/* Large Tablets */
@media (max-width: 1024px) {

    .ring-container {
        width: 420px;
        height: 420px;
    }

    .media-ring {
        --radius: 160px;
    }

    .ring-item {
        width: 95px;
        height: 95px;
    }

    .center-logo {
        width: 110px;
        height: 110px;
    }
}


/* Tablets */
@media (max-width: 768px) {

    .interactive-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .ring-container {
        width: 340px;
        height: 340px;
    }

    .media-ring {
        --radius: 125px;
    }

    .ring-item {
        width: 75px;
        height: 75px;
        border-width: 1.5px;
    }

    .center-logo {
        width: 90px;
        height: 90px;
    }

    .center-viewer {
        width: 180px;
        height: 180px;
    }
}


/* Mobile Devices */
@media (max-width: 480px) {

    .ring-container {
        width: 260px;
        height: 260px;
    }

    .media-ring {
        --radius: 95px;
    }

    .ring-item {
        width: 60px;
        height: 60px;
    }

    .center-logo {
        width: 70px;
        height: 70px;
    }

    .center-viewer {
        width: 150px;
        height: 150px;
    }
}


/* Extra Small Devices */
@media (max-width: 360px) {

    .ring-container {
        width: 220px;
        height: 220px;
    }

    .media-ring {
        --radius: 80px;
    }

    .ring-item {
        width: 50px;
        height: 50px;
    }

    .center-logo {
        width: 60px;
        height: 60px;
    }
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn-submit-contact, .btn-reservations {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}

.btn-reservations {
    background-color: var(--teal);
    color: var(--white);
    border: 2px solid transparent;
}
.btn-reservations:hover {
    background-color: transparent;
    border-color: var(--teal);
    color: var(--teal);
}

.btn-submit-contact {
    background-color: var(--gold);
    color: var(--deep-blue);
    width: 100%;
}
.btn-submit-contact:hover {
    background-color: var(--gold-dim);
}

/* --- Icons --- */
.gold-icon {
    color: var(--gold);
}

/* --- Header Styles (Consistent) --- */
header {
    background: linear-gradient(135deg, var(--gold) 0%, #BF9B30 100%);
    padding: 10px 0;
    position: fixed; /* Fixed header */
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 1.2rem;
    color: #1A3E5C;
    line-height: 1.1;
    font-weight: bold;
}

.logo-text p {
    font-size: 0.7rem;
    color: #333;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #1A3E5C;
    font-weight: 600;
    font-size: 0.95rem;
}

nav ul li a:hover:not(.btn-reservations) {
    color: #333;
}

nav ul li a.active {
    color: var(--deep-blue); /* Highlight for current page */
    border-bottom: 2px solid var(--deep-blue);
    padding-bottom: 5px;
}

/* --- About Hero Section --- */
.about-hero {
    height: 60vh;
    background-image: url('hotel-about-hero.jpg'); /* REPLACE WITH A HERO IMAGE */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px; /* Offset fixed header */
}

.hero-image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dims hero image */
}

.hero-content {
    z-index: 10;
    text-align: center;
}

.hero-text-box h2 {
    color: var(--gold);
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-text-box p {
    font-size: 1.2rem;
    color: var(--white);
}

/* --- Main About Content Section --- */
.about-main {
    padding: 60px 0;
    background-color: var(--deep-blue-light);
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h3 {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.about-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.about-card {
    background-color: var(--deep-blue);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Card Outlines */
.teal-outline {
    border: 2px solid var(--teal);
}

.gold-outline {
    border: 2px solid var(--gold);
}

/* Quoted Box Styles */
.quote-box::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1); /* Dims quote slightly */
}

.about-text {
    font-style: italic;
    color: #BBB;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.about-author {
    text-align: right;
    color: var(--gold);
    font-weight: bold;
}

/* Value Proposition Styles */
.value-box {
    align-items: center;
    text-align: center;
}

.value-box i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-box h4 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.value-box p {
    color: #BBB;
    font-size: 0.95em;
}

/* --- Contact and Location Section --- */
.contact-location-section {
    padding: 60px 0;
    background-color: var(--deep-blue);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    align-items: flex-start;
}

.contact-details h3, .location-map h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-details p {
    margin-bottom: 25px;
}

.contact-info-list {
    list-style: none;
    margin-bottom: 30px;
}

.contact-info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info-list i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Simple Contact Form */
#contactForm input, #contactForm textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: var(--deep-blue-light);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    font-family: inherit;
}

#contactForm textarea {
    height: 120px;
    resize: none;
}

#contactForm input:focus, #contactForm textarea:focus {
    outline: none;
    border-color: var(--teal);
}

/* Map Container */
.map-container {
    width: 100%;
    border: 3px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* --- Footer Styles (Consistent) --- */
footer {
    background-color: #1A3E5C;
    padding: 30px 0;
    color: var(--text-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 20px;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: var(--gold);
}
