:root {
    --tgh-blue: #3A7BD3;
    --tgh-red: #C73D5E;
    --tgh-teal: #3DB5A4;
    --tgh-dark: #141414; 
    --tgh-gray: #595959; 
    --tgh-white: #FFFFFF;
    --tgh-light-gray: #f7f9fb;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --color-primary: var(--tgh-dark); 
    --color-secondary: var(--tgh-red); 
    --color-accent-blue: var(--tgh-blue); 
    --color-accent-red: var(--tgh-red); 
    --color-accent-teal: var(--tgh-teal); 
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

ul, ol {
    padding: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*:focus {*/
/*    outline: 2px solid var(--color-accent-blue);*/
/*    outline-offset: 2px;*/
/*}*/

body {
    font-family: var(--font-body);
    color: var(--tgh-dark);
    background-color: var(--tgh-white);
    transition: background-color 0.3s ease;
    min-height: 100vh; 
    line-height: 1.5; 
    margin: 0; 
    scroll-behavior: smooth;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    color: var(--tgh-dark);
    text-rendering: optimizeLegibility;
    line-height: 1.2;
    text-wrap: balance; 
    margin-top: 1.5em; 
    margin-bottom: 0.5em; 
}

.section-heading {
    font-size: clamp(2rem, 5vw, 3rem); 
    color: var(--tgh-dark);
    margin-bottom: 0.5rem;
    text-align: center; 
}

.section-paragraph-slogan {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--tgh-gray); 
    margin-bottom: 3rem;
    padding-left: 1rem; 
    padding-right: 1rem; 
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center; 
}

@media (min-width: 600px) {
    .section-heading {
        font-size: clamp(2.5rem, 4.5vw, 3.5rem); 
    }
    .section-paragraph-slogan {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin-bottom: 3.5rem;
    }
}

@media (min-width: 992px) {
    .section-heading {
        font-size: clamp(3rem, 4vw, 4rem); 
    }
    .section-paragraph-slogan {
        margin-bottom: 4rem;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: none;
}

.disabled-element {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
  background-color: #e9ecef;
  color: #6c757d;
  box-shadow: none !important;
  text-decoration: none !important;
}

/* ================= LOGO STYLE (Unified Size) ================= */
.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
    max-height: 100px;
}

.scrolled .logo-img {
    height: 60px;
    max-height: 60px;
}

/* ---------------- 3. Navbar Styles ---------------- */
.navbar-tgh {
    background-color: var(--tgh-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    min-height: 60px;
}

/* DESKTOP Transparent State  */
.navbar-transparent {
    background-color: transparent !important;
    box-shadow: none !important;
}

.navbar-transparent .nav-link,
.navbar-transparent .navbar-brand {
    color: var(--tgh-white) !important;
}

.navbar-transparent .nav-link:hover {
    color: var(--tgh-teal) !important;
}
.navbar-transparent .dropdown-toggle::after {
    filter: brightness(0) invert(1);
}
.navbar-tgh .dropdown-toggle::after {
    filter: none;
}

.nav-link {
    color: var(--tgh-dark) !important;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
    padding: 10px 0;
}

@media (min-width: 992px) {
    .navbar-nav .nav-item {
        display: flex;
        align-items: center;
    }
    .nav-link {
        padding: 0.5rem 0;
    }
}

.nav-link:hover { color: var(--tgh-blue) !important; }
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--tgh-teal);
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active {
    color: var(--tgh-red) !important;
    font-weight: 700;
}

.nav-item:not(.dropdown) .nav-link.active::after {
    background: var(--tgh-red);
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
    background-color: var(--tgh-red);
    color: var(--tgh-white) !important;
}

.nav-item.dropdown .nav-link::after {
    display: none;
}

.navbar-toggler {
    border: none;
    color: var(--tgh-dark);
    padding: 0.5rem;
}

.navbar-transparent .navbar-toggler {
    color: var(--tgh-white);
    filter: brightness(0) invert(1);
}

/* ================= MOBILE/TABLET STYLES (Transparency Disabled) ================= */
@media (max-width: 991px) {
    #mainNavbar {
        background-color: var(--tgh-white) !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
    }
    #mainNavbar .logo-img {
        height: 60px;
        max-height: 60px;
    }
    #mainNavbar .nav-link,
    #mainNavbar .navbar-brand {
        color: var(--tgh-dark) !important;
    }
    .navbar-toggler {
        color: var(--tgh-dark);
        filter: none;
    }
    .navbar-collapse,
    .navbar-transparent .navbar-collapse,
    .dropdown-menu {
        background-color: var(--tgh-white) !important;
        /* box-shadow: 0 0 15px rgba(0,0,0,0.1); */
        padding: 15px;
        border-radius: 0 0 10px 10px;
    }

    .dropdown-item:hover, .dropdown-item:focus, .dropdown-item.active {
        background-color: var(--tgh-red);
        color: var(--tgh-white) !important;
    }
    .navbar-collapse .nav-link,
    .navbar-collapse .dropdown-toggle {
        color: var(--tgh-dark) !important;
    }

    .nav-link {
        margin: 0;
    }
}

/* CTA Button */
.navbar .btn-cta {
    background-color: var(--tgh-red);
    border-color: var(--tgh-red);
    color: var(--tgh-white);
    font-weight: bold;
    padding: 8px 30px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(199,61,94,0.3);
    transition: all 0.4s ease;
    white-space: nowrap;
}

.navbar .btn-cta:hover,
.navbar .btn-cta:focus {
    background-color: #A3334E;
    transform: scale(1.02);
    color: var(--tgh-white);
}

/* ================= END MOBILE/TABLET STYLES ================= */
/* ---------------- Hero css start ---------------- */
:root {
    --hero-min-height: 80vh;
    --hero-max-height: 100vh;
    --hero-overlay-color: rgba(0, 0, 0, 0.75);
    --tgh-white: #ffffff;
    --hero-content-max-width: 1400px;
}

.hero-section {
    position: relative;
    min-height: var(--hero-min-height);
    max-height: var(--hero-max-height);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 0;
    color: var(--tgh-white);
    text-align: center;
    will-change: min-height, max-height;
}

.hero-section-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--hero-overlay-color); 
    z-index: 1;
    pointer-events: none;
    will-change: opacity;
}

.hero-section-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
    will-change: opacity;
}

.hero-bg,
.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    object-fit: cover;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.hero-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
    overflow: hidden;
    pointer-events: none;
}

/* Default Desktop/Large Screen Scaling */
.hero-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%; 
    height: 200%;
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
    will-change: transform, opacity;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--hero-content-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    will-change: transform;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-block-end: 0.5em;
    text-shadow: 0 4px 8px rgba(0,0,0,0.8);
    line-height: 1.1;
    color: var(--tgh-white);
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-block-end: 2em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    color: var(--tgh-white);
}

/* ---------------------------------------------------- */
/* --- Media Queries for Responsiveness (Increased Iframe Scaling) --- */
/* ---------------------------------------------------- */

@media (max-width: 48rem) {
    .hero-section {
        min-height: 65vh;
    }
    .hero-content h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    /* MOBILE: Increase scaling for maximum coverage on tall, narrow screens */
    .hero-iframe {
        width: 250%; 
        height: 250%;
    }
}


@media (min-width: 48.01rem) and (max-width: 64rem) {
    .hero-section {
        min-height: 75vh;
    }
    .hero-content h1 {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }
    .hero-content p {
        margin-block-end: 3em;
    }
    /* TABLET: Increase scaling for better coverage */
    .hero-iframe {
        width: 250%; 
        height: 250%;
    }
}


@media (min-width: 64.01rem) {
    .hero-section {
        max-height: 90vh;
    }
    .hero-content {
        padding: 0 3rem;
    }
    .hero-content h1 {
        font-size: 5rem;
    }
}
/* ----------------Hero css ends  here ---------------- */
/* pink cta button css start */
.cta-button {
    display: inline-block;
    padding: clamp(10px, 3vw, 12px) clamp(25px, 7vw, 30px);
    font-size: clamp(0.9rem, 2vw, 1rem); 
    
    background-color: var(--tgh-primary); 
    color: var(--tgh-white);
    border: 2px solid var(--tgh-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    
    transition: background-color 0.3s ease-in-out, 
                border-color 0.3s ease-in-out,
                transform 0.2s ease-out,
                box-shadow 0.3s;
}

.cta-button:hover,
.cta-button:focus {
    background-color: var(--tgh-dark-primary); 
    border-color: var(--tgh-dark-primary);
    
    transform: translateY(-1px);
    box-shadow: 0 4px 10px var(--shadow-primary);
    
    outline: 2px solid var(--tgh-white); 
    outline-offset: 3px;
}

.cta-button:focus {
    outline-color: var(--tgh-dark-primary);
    box-shadow: 0 0 0 3px var(--tgh-white), 0 4px 10px var(--shadow-primary);
}

@media (max-width: 600px) {
    .cta-button {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}
/* pink cta button css  end here */


/* Start: Services and Contact Button Styles */

#services .btn-primary {
    background-color: var(--tgh-blue);
    border: 1px solid var(--tgh-blue);
    color: white;
    padding: 0.875rem 2.1875rem;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#services .btn-primary:hover {
    background-color: #2D63B3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 123, 211, 0.4);
}

/* Start: Updated Services and Contact Button Styles */
#services .btn-cta,
#contact .btn-cta,
.page #proven-record .btn-cta,
#Hotel-BookingSection .btn-cta {
    background-color: var(--tgh-red);
    border: 1px solid var(--tgh-red);
    color: var(--tgh-white);
    padding: 1rem 3.125rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(199, 61, 94, 0.3);
    transition: all 0.4s ease;
}

#services .btn-cta:hover,
#contact .btn-cta:hover,
.page #proven-record .btn-cta:hover,
#Hotel-BookingSection .btn-cta:hover {
    background-color: #A3334E;
    transform: scale(1.02);
    color: var(--tgh-white);
    box-shadow: 0 8px 20px rgba(199, 61, 94, 0.5);
}

@media (min-width: 48em) {
    #services .btn-cta,
    #contact .btn-cta,
    .page #proven-record .btn-cta,
    #Hotel-BookingSection .btn-cta {
        padding: 1.125rem 3.5rem;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    #services .btn-primary,
    #services .btn-primary:hover,
    #services .btn-cta,
    #services .btn-cta:hover,
    #contact .btn-cta,
    #contact .btn-cta:hover,
    .page #proven-record .btn-cta,
    .page #proven-record .btn-cta:hover,
    /* Added selector for the new button's target */
    #Hotel-BookingSection .btn-cta,
    #Hotel-BookingSection .btn-cta:hover {
        transition: none !important;
        transform: none !important;
    }
}

@media screen and (-ms-high-contrast: active), (forced-colors: active) {
    #services .btn-primary,
    #services .btn-cta,
    #contact .btn-cta,
    .page #proven-record .btn-cta,
    #Hotel-BookingSection .btn-cta {
        border: 2px solid currentcolor;
        background-color: transparent !important;
        box-shadow: none !important;
    }
}
/* End: Services and Contact Button Styles */

/*
|=============================================================================|
|                        1. SERVICE CARD STYLES                               |
|=============================================================================|
*/
.service-card {
    /* --- 1.1 Base Card Container Styles --- */
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(26,26,26,0.08);
    background-color: var(--tgh-white);
    display: flex;
    flex-direction: column;
    height: 100%; 
    width: 100%;
    margin: 0 auto;

    max-width: 20rem;
    min-height: 30rem; 

    box-shadow: 0 0.625rem 2.5rem rgba(0,0,0,0.07);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, box-shadow;
}

/* --- 1.2 Hover States --- */
.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.9375rem 2.1875rem rgba(0,0,0,0.15);
}


/*
|=============================================================================|
|                        2. PROPERTY CARD STYLES                              |
|=============================================================================|
*/
.property-card {
    /* --- 2.1 Base Card Container Styles --- */
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(26,26,26,0.08);
    background-color: var(--tgh-white);
    display: flex;
    flex-direction: column;
    height: 100%; 
    width: 100%;
    margin: 0 auto;

    max-width: 20rem;
    min-height: 30rem; 

    box-shadow: 0 0.625rem 2.5rem rgba(0,0,0,0.07);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, box-shadow;
}

/* --- 2.2 Image Styles --- */
.property-card-img {
    height: 12.5rem;
    width: 100%;
    object-fit: cover;
    display: block;

    filter: brightness(0.95);
    transition: filter 0.5s ease;
    
    border-radius: 0.75rem 0.75rem 0 0;
}

/* --- 2.3 Card Body Styles --- */
.property-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

/* --- 2.4 Card Title and Text Styles (Unified) --- */
.property-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    min-height: 3.5rem; /* Consistent height for alignment (approx 2 lines) */
    margin-bottom: 0.5rem; /* Consistent bottom margin */
}
.property-card .card-text {
    flex-grow: 0; 
    margin-bottom: 1rem !important;
}

/* --- 2.5 CTA (Button) Styles --- */
.property-card .btn-cta {
    background-color: var(--tgh-red);
    border: 1px solid var(--tgh-red);
    color: var(--tgh-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    text-decoration: none;
    padding: 0.75rem 1.5625rem;
    display: inline-block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto; /* Anchor to bottom */
}
.property-card .btn-cta:hover {
    background-color: #A3334E;
    transform: scale(1.02);
    color: var(--tgh-white);
    box-shadow: 0 4px 10px rgba(199,61,94,0.4);
}

/* --- 2.6 Alignment and Hover States --- */
.property-card-body > *:last-child {
    margin-top: auto; 
}
.property-card:hover .property-card-img {
    filter: brightness(1);
    transform: none;
}
.property-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 1.25rem 3.125rem rgba(58,123,211,0.2);
}

/* --- 2.7 Metadata Styles --- */
.property-card .bi-geo-alt-fill {
    color: var(--tgh-teal) !important;
    vertical-align: middle;
}


/*
|=============================================================================|
|                        3. EXPERIENCE CARD STYLES                            |
|=============================================================================|
*/
.experience-card {
    /* --- 3.1 Base Card Container Styles --- */
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(26,26,26,0.08);
    background-color: var(--tgh-white);
    display: flex;
    flex-direction: column;
    height: 100%; 
    width: 100%;
    margin: 0 auto;

    max-width: 20rem;
    min-height: 30rem; 

    box-shadow: 0 0.625rem 2.5rem rgba(0,0,0,0.07);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, box-shadow;
}

/* --- 3.2 Image Styles --- */
.experience-card-img {
    height: 12.5rem;
    width: 100%;
    object-fit: cover;
    display: block;

    filter: brightness(0.95);
    transition: filter 0.5s ease;
    
    border-radius: 0.75rem 0.75rem 0 0;
}

/* --- 3.3 Card Body Styles --- */
.experience-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

/* --- 3.4 Card Title and Text Styles (Unified) --- */
.experience-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    min-height: 3.5rem; /* Consistent height for alignment (approx 2 lines) */
    margin-bottom: 0.5rem; /* Consistent bottom margin */
}
.experience-card .card-text {
    flex-grow: 0; 
    margin-bottom: 1rem !important;
}

/* --- 3.5 CTA (Button) Styles --- */
.experience-card .btn-cta {
    background-color: var(--tgh-red);
    border: 1px solid var(--tgh-red);
    color: var(--tgh-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    text-decoration: none;
    padding: 0.75rem 1.5625rem;
    display: inline-block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto; /* Anchor to bottom */
}
.experience-card .btn-cta:hover {
    background-color: #A3334E;
    transform: scale(1.02);
    color: var(--tgh-white);
    box-shadow: 0 4px 10px rgba(199,61,94,0.4);
}

/* --- 3.6 Alignment and Hover States --- */
.experience-card-body > *:last-child {
    margin-top: auto; 
}
.experience-card:hover .experience-card-img {
    filter: brightness(1);
    transform: none;
}
.experience-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 1.25rem 3.125rem rgba(58,123,211,0.2);
}

/* --- 3.7 Metadata Styles --- */
.experience-card .bi-geo-alt-fill {
    color: var(--tgh-teal) !important;
    vertical-align: middle;
}

/*
|=============================================================================|
|                        4. OFFER CARD STYLES                                 |
|=============================================================================|
*/
.offer-card {
    overflow: hidden;
    background-color: var(--tgh-white);
    /* Essential for making the card content fill the available height */
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    max-width: 20rem;
    min-height: 30rem;
    box-shadow: 0 0.625rem 2.5rem rgba(0,0,0,0.07);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, box-shadow;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.offer-card .card-image-base {
    height: 12.5rem;
    width: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
    transition: filter 0.5s ease;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.offer-card-body {
    padding: 1.25rem;
    /* Essential for internal vertical alignment */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    min-height: 3.5rem;
    margin-bottom: 0.5rem;
}

.offer-card .card-text {
    /* Ensures the text area takes up extra space, pushing the button down */
    flex-grow: 1;
    margin-bottom: 1rem !important;
}

.offer-card .card-cta-button {
    background-color: var(--tgh-red);
    border: 1px solid var(--tgh-red);
    color: var(--tgh-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    text-decoration: none;
    padding: 0.75rem 1.5625rem;
    display: inline-block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Aligns the button to the bottom within the flex-column body */
    margin-top: auto;
}

.offer-card .card-cta-button:hover {
    background-color: #A3334E;
    transform: scale(1.02);
    color: var(--tgh-white);
    box-shadow: 0 4px 10px rgba(199,61,94,0.4);
}

.offer-card:hover {
    box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.1) !important;
    border-color: var(--tgh-blue);
}

.offer-card:hover .card-image-base {
    filter: brightness(1);
    transform: none;
}

.offer-card .bi-geo-alt-fill {
    color: var(--tgh-teal) !important;
    vertical-align: middle;
}

.offer-badge {
    position: absolute;
    top: 0.9375rem;
    right: -0.625rem;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-radius: 0.375rem;
    z-index: 10;
    color: var(--tgh-white);
}

.limited-offer-badge {
    background-color: var(--tgh-red);
    transform: rotate(5deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.offer-price-display del {
    font-size: 0.9rem;
}

.offer-price-display .text-red {
    font-size: 1.5rem;
}
.locationtext{font-size:12px;}
/*
|=============================================================================|
|                        5. PAGE INFO CARD STYLES (.page .info-card)          |
|=============================================================================|
*/
.page .info-card {
    /* --- 5.1 Base Card Container Styles --- */
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(26,26,26,0.08);
    background-color: var(--tgh-white);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0.625rem 2.5rem rgba(0,0,0,0.07);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, box-shadow;

    max-width: 20rem;
    min-height: 30rem;
    height: auto;
}

/* --- 5.2 Image Styles --- */
.page .fixed-card-img {
    height: 12.5rem;
    width: 100%;
    object-fit: cover;
    display: block;

    filter: brightness(0.95);
    transition: filter 0.5s ease;

    border-radius: 0.75rem 0.75rem 0 0;
}

/* --- 5.3 Card Body Styles --- */
.page .info-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

/* --- 5.4 Card Title and Text Styles (Unified) --- */
.page .info-card-title {
    font-size: 1.5rem; /* Unified to 1.5rem */
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--tgh-red);
    margin-bottom: 0.5rem; /* Consistent bottom margin */
    line-height: 1.2;
    min-height: calc(1.5rem * 1.2 * 2); /* Consistent height for alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page .info-card-text {
    color: var(--tgh-dark, #555);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0; /* Note: This card's text doesn't share the 1rem spacing of the other cards */
    flex-grow: 1;
    display: block;
}

/* --- 5.5 Hover States --- */
.page .info-card:hover .fixed-card-img,
.page .info-card:focus-within .fixed-card-img {
    filter: brightness(1);
    transform: none;
}
.page .info-card:hover,
.page .info-card:focus-within {
    transform: translateY(-0.3125rem);
    box-shadow: 0 1.25rem 3.125rem rgba(58,123,211,0.2);
}


/*
|=============================================================================|
|                        6. UTILITY STYLES                                    |
|=============================================================================|
*/
/* Google Review Style */
.google-review {
    color: var(--tgh-teal);
    font-weight: 700;
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    background-color: var(--tgh-light-gray);
    margin-bottom: 0.9375rem;
}
.google-review .bi-star-fill {
    color: gold;
    font-size: 0.9rem;
}

/* Carousel Styles */
.page .carousel-item .row {
    margin-left: 0;
    margin-right: 0;
    padding: 0 0.9375rem;
    display: flex;
    align-items: stretch;
}
/* Ensure the column wrappers are also flex containers */
.page .carousel-item .col-md-4,
.page .carousel-item .col-lg-3,
.page .carousel-item .col-12 {
    display: flex;
}
.carousel-control-prev, .carousel-control-next {
    width: 10%;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.125rem;
    height: 3.125rem;
    background-size: 50% 50%;
    background-color: var(--tgh-blue);
    border-radius: 50%;
    filter: none;
    transition: background-color 0.3s ease;
}
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--tgh-teal);
}
.carousel-indicators {
    position: static;
    z-index: 15;
    margin: 1rem 0 0;
    text-align: center;
}
.carousel-indicators [data-bs-target] {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: var(--tgh-blue);
    opacity: 0.5;
    transition: opacity 0.6s ease, background-color 0.3s ease;
}
.carousel-indicators .active {
    opacity: 1;
    background-color: var(--tgh-teal);
}
/*
|=============================================================================|
|                          5. DIVIDER AND STATS RIBBON                        |
|=============================================================================|
*/
.tgh-divider {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.875rem;
}
.tgh-divider .blue,
.tgh-divider .red,
.tgh-divider .teal {
    width: 1.875rem;
    height: 0.25rem;
    border-radius: 0.125rem;
}
.tgh-divider .blue { background-color: var(--tgh-blue); }
.tgh-divider .red { background-color: var(--tgh-red); }
.tgh-divider .teal { background-color: var(--tgh-teal); }

.stats-ribbon {
    background-color: var(--tgh-dark);
    color: var(--tgh-white);
    padding: 3.75rem 0;
    border-top: 0.3125rem solid var(--tgh-teal);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 100%;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--tgh-teal);
    margin-bottom: 0.3125rem;
    line-height: 1;
    text-shadow: 0 0 0.625rem rgba(61, 181, 164, 0.5);
    display: block;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--tgh-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    margin-bottom: 0;
}
.stats-ribbon .col-md-4:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 47.9375em) {
    .stats-ribbon .col-md-4:not(:last-child),
    .stats-ribbon .col-md-4 {
        border-right: none;
        margin-bottom: 1.875rem !important;
        padding-bottom: 1.875rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .stats-ribbon .col-md-4:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0;
        border-bottom: none;
    }
}

.page .stats-ribbon {
    padding: 5rem 0;
    border-top: 0.3125rem solid var(--tgh-teal);
}
.page .stat-number {
    font-size: 4rem;
    text-shadow: 0 0 0.9375rem rgba(61, 181, 164, 0.6);
}
.page .stat-label {
    font-weight: 600;
}

.page .testimonial-card {
    background-color: var(--tgh-light-gray, #f8f9fa);
    padding: 1.875rem;
    border-radius: 0.75rem;
    border-top: 0.375rem solid var(--tgh-red);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.page .testimonial-text {
    font-style: italic;
    color: var(--tgh-dark, #333);
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-bottom: 0.9375rem;
}


.page .stats-ribbon { 
    padding: 5rem 0;
    border-top: 0.3125rem solid var(--tgh-teal); 
}
.page .stat-number { 
    font-size: 4rem; 
    text-shadow: 0 0 0.9375rem rgba(61, 181, 164, 0.6); 
}
.page .stat-label { 
    font-weight: 600; 
}

.page .stats-ribbon .col-md-4:not(:last-child) { 
    border-right: 1px solid rgba(255, 255, 255, 0.2); 
}

@media (max-width: 47.9375em) { 
    .page .stats-ribbon .col-md-4 {
        margin-bottom: 1.875rem !important;
        padding-bottom: 1.875rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .page .stats-ribbon .col-md-4:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0;
        border-bottom: none;
    }
}


.page .info-card-title {
    font-family: var(--font-heading);
    color: var(--tgh-red); 
    margin-bottom: 0.5rem; 
    line-height: 1.2;
    min-height: calc(1.5rem * 1.2 * 2); 
    display: flex;
    align-items: center;
    justify-content: center;
}

.page .info-card-text {
    color: var(--tgh-dark, #555); 
    font-family: var(--font-body);
    font-size: 1rem; 
    margin-bottom: 0; 
    flex-grow: 0; 
    display: block; 
}

.page .testimonial-card { 
    background-color: var(--tgh-light-gray, #f8f9fa); 
    padding: 1.875rem; 
    border-radius: 0.75rem; 
    border-top: 0.375rem solid var(--tgh-red); 
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
    
    height: 100%; 
    display: flex; 
    flex-direction: column;
    justify-content: space-between;
}

.page .testimonial-text { 
    font-style: italic; 
    color: var(--tgh-dark, #333); 
    line-height: 1.6;
    flex-grow: 1; 
    display: flex;
    align-items: center; 
    margin-bottom: 0.9375rem; 
}

.page .carousel-item .row {
    margin-left: 0;
    margin-right: 0;
    padding: 0 0.9375rem; 
}

/* --- Carousel Controls (Global styles apply now) --- */

/* |=============================================================================|
|                          FOOTER LINK STYLES                                   |
|=============================================================================|
*/

footer a { 
    color: var(--tgh-light-gray) !important; 
    transition: color 0.3s ease; 
    text-decoration: none; 
}

footer a:hover,
footer a:focus {
    color: var(--tgh-teal) !important; 
    text-decoration: underline;
}

/* |=============================================================================|
|                          FLOATING BUTTON STYLES                               |
|=============================================================================|
*/

.floating-buttons {
    position: fixed;
    bottom: 1.5625rem; 
    right: 1.5625rem; 
    z-index: 9999;
    transform: translateZ(0); 
}

.float-btn {
    width: 3.4375rem; 
    height: 3.4375rem; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem; 
    color: #fff;
    margin-top: 0.75rem; 
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0.25rem 0.625rem rgba(0,0,0,0.3); 
    border: 2px solid transparent;
}

.whatsapp { background: #25D366; } 
.gmail { background: #EA4335; } 

.more-btn {
    background: #ffffff !important;
    border: 2px solid #3DB5A4 !important; 
    color: #3DB5A4 !important; 
}

.more-btn:hover,
.more-btn:focus {
    transform: scale(1.20) translateZ(0);
    background: #EAF7F5 !important;
    border-color: #3DB5A4 !important;
    color: #3DB5A4 !important;
}

.float-btn:hover,
.float-btn:focus, 
.floatingsocial-icon:hover,
.floatingsocial-icon:focus { 
    background: #FFFFFF !important;
    border: 2px solid #3A7BD3 !important; 
    color: #3A7BD3 !important; 
    transform: scale(1.18) translateZ(0); 
}

.hidden-btn {
    opacity: 0;
    transform: scale(0.7) translateZ(0);
    pointer-events: none;
    transition: all 0.3s ease !important; 
}

.floatingsocial-menu {
    position: absolute;
    bottom: 4.375rem; 
    right: 0.3125rem; 
    display: flex;
    flex-direction: column;
    gap: 0.75rem; 

    opacity: 0;
    pointer-events: none;
    transform: translateY(1.25rem) translateZ(0); 
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); 
}

.floatingsocial-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) translateZ(0);
}

.floatingsocial-icon {
    width: 3.125rem; 
    height: 3.125rem; 
    border-radius: 50%;
    font-size: 1.5rem; 
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.3); 
    border: 2px solid transparent;
}


/* |=============================================================================|
|                          MEDIA QUERIES & ACCESSIBILITY (A11y)                 |
|=============================================================================|
*/

@media (max-width: 48em) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .property-card .btn-cta, 
    .experience-card .btn-cta,
    .offer-card .card-cta-button {
        padding: 0.625rem 1.25rem;
    }
}

@media (max-width: 30em) { 
    .floating-buttons {
        bottom: 1rem; 
        right: 1rem; 
    }

    .float-btn {
        width: 3.125rem; 
        height: 3.125rem; 
        font-size: 1.5rem; 
    }

    .floatingsocial-menu {
        bottom: 4rem; 
    }
    .floatingsocial-icon {
        width: 2.8125rem; 
        height: 2.8125rem; 
        font-size: 1.3rem; 
    }
}

@media (min-width: 64em) {
    .property-card, .experience-card {
        max-width: 21.875rem;
    }
}

/* A11Y: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .service-card, .property-card, .experience-card, .offer-card,
    .property-card:hover, .experience-card:hover, .offer-card:hover,
    .property-card .btn-cta:hover, .experience-card .btn-cta:hover, .offer-card .card-cta-button:hover,
    .carousel-control-prev-icon, .carousel-control-next-icon,
    .carousel-indicators [data-bs-target],
    footer a,
    .page .info-card,
    .page .info-card:hover,
    .page .info-card:focus-within,
    .page .carousel-control-prev, 
    .page .carousel-control-next,
    .float-btn,
    .float-btn:hover,
    .float-btn:focus,
    .more-btn:hover,
    .more-btn:focus,
    .floatingsocial-icon,
    .floatingsocial-icon:hover,
    .floatingsocial-icon:focus {
        transition: none !important;
        transform: none !important;
        box-shadow: none !important;
    }
    .stat-number, 
    .page .stat-number {
        text-shadow: none !important;
    }
    .floatingsocial-menu {
        transition: opacity 0s !important;
        transform: none !important;
    }
    .floatingsocial-menu.active {
        opacity: 1; 
    }
    .hidden-btn {
        transition: opacity 0s !important;
        transform: none !important;
    }
}

/* A11Y: High Contrast Mode (Forced Colors) */
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
    .property-card .btn-cta, 
    .experience-card .btn-cta,
    .offer-card .card-cta-button {
        border: 2px solid currentcolor;
        background-color: transparent !important;
        color: currentcolor !important;
        box-shadow: none !important;
    }
    .service-card, .property-card, .experience-card, .offer-card,
    .page .info-card {
        border: 2px solid currentcolor;
        box-shadow: none !important;
        background-color: transparent !important;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon, .carousel-indicators [data-bs-target],
    .page .carousel-control-prev-icon, .page .carousel-control-next-icon {
        background-color: currentcolor !important;
        filter: none !important;
        box-shadow: none !important;
    }
    .offer-price-display del {
        text-decoration: line-through;
    }
    footer a,
    footer a:hover,
    footer a:focus {
        color: LinkText !important; 
        text-decoration: underline !important;
    }
    
    .stats-ribbon, .page .stats-ribbon {
        border: 2px solid currentcolor; 
        border-top: 0.3125rem solid currentcolor; 
        background-color: transparent !important;
        box-shadow: none !important;
    }
    .stat-number, .page .stat-number {
        color: Highlight !important;
        text-shadow: none !important;
    }
    .stats-ribbon .col-md-4:not(:last-child),
    .page .stats-ribbon .col-md-4:not(:last-child) {
        border-color: currentcolor !important;
    }
    .stat-label { 
        color: LinkText !important;
    }
    .page .info-card-title {
        color: Highlight !important;
    }
    .page .testimonial-card { 
        border: 2px solid currentcolor; 
        border-top: 0.25rem solid currentcolor; 
        background-color: transparent !important;
    }
    .page .testimonial-text { 
        color: WindowText !important;
    }
    .float-btn, .floatingsocial-icon, .more-btn {
        border: 2px solid currentcolor !important;
        background-color: transparent !important;
        color: currentcolor !important;
        box-shadow: none !important;
    }
    .float-btn:hover, .float-btn:focus, .floatingsocial-icon:hover, .floatingsocial-icon:focus {
        background-color: transparent !important;
        color: Highlight !important;
        border-color: Highlight !important;
    }
}

/* --- START: Two-Column Events Layout CSS --- */
:root {
    /* Color Palette */
    --tgh-white: #ffffff;
    --tgh-dark: #333333;
    --tgh-gray: #6c757d; 
    --tgh-light-gray: #f8f9fa; 

    /* Custom Colors based on typical web designs */
    --color-primary: #1e3a5f; 
    --color-secondary: #dc3545; 
    --color-accent-blue: #007bff; 
    --color-accent-teal: #17a2b8; 
    --color-accent-red: #dc3545; 

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--tgh-dark);
}

.mydesignSlider.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    max-width: 1200px;
    margin: 60px auto;
    gap: 40px;
    padding: 0 20px;
    align-items: center; 
}

.mydesignSlider .text-column {
    padding: 30px;
    background-color: var(--tgh-light-gray); 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mydesignSlider .section-heading {
    font-family: var(--font-heading);
    font-size: 2.5em;
    color: var(--color-secondary); 
    margin-bottom: 20px;
    border-left: 5px solid var(--color-accent-blue);
    padding-left: 15px;
}

.mydesignSlider .section-body {
    margin-bottom: 30px;
    color: var(--tgh-gray);
}

.mydesignSlider .topic-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.mydesignSlider .topic-item {
    padding: 10px 15px;
    font-weight: 500;
    color: var(--color-primary);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
    margin-bottom: 5px;
}

.mydesignSlider .topic-item:hover {
    background-color: rgba(0, 123, 255, 0.1); 
}

.mydesignSlider .topic-item.active {
    background-color: var(--color-accent-blue); 
    color: var(--tgh-white);
    font-weight: 700;
}

.mydesignSlider .topic-item.active .list-icon {
    color: var(--tgh-white);
}

.mydesignSlider .list-icon {
    color: var(--color-accent-teal); 
    margin-right: 10px;
    font-weight: 700;
}

.mydesignSlider .cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--color-accent-red);
    color: var(--tgh-white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mydesignSlider .cta-button:hover {
    background-color: var(--tgh-dark);
}

.mydesignSlider .slider-column {
    position: relative;
    overflow: hidden; 
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mydesignSlider .image-slider {
    position: relative;
    width: 100%;
}

.mydesignSlider .slide {
    display: none; 
    width: 100%;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.mydesignSlider .slide.active {
    display: block; 
    opacity: 1;
}

.mydesignSlider .slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.mydesignSlider .slider-control {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: var(--tgh-white);
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5); 
    border: none;
    z-index: 10;
}

.mydesignSlider .prev-btn {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.mydesignSlider .next-btn {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.mydesignSlider .slider-control:hover {
    background-color: var(--color-accent-blue); 
}


@media screen and (max-width: 768px) {
    .mydesignSlider.two-column-section {
        grid-template-columns: 1fr; 
        gap: 20px;
        margin: 30px auto;
    }

    .mydesignSlider .section-heading {
        font-size: 2em;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .mydesignSlider.two-column-section {
        gap: 30px; 
    }
}
/* --- END: Two-Column Events Layout CSS --- */
/* --- Our Services Page --- */
 

        .Servicepage {
            overflow-x: hidden;
        }
        

        .Servicepage .hero-section-services {
            background: linear-gradient(135deg, var(--tgh-light-gray) 0%, var(--tgh-white) 100%);
            padding: 9rem 1rem 0rem; 
            text-align: center;
            overflow: hidden;
            position: relative;
        }
        
        .Servicepage .hero-section-services h1 {
            font-size: clamp(2.5rem, 7vw, 5.5rem); 
            color: var(--color-primary);
            margin-top: 0;
            margin-bottom: 0.5rem; 
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            line-height: 1.1;
        }

        .Servicepage .highlight-text {
            color: var(--color-secondary);
        }
        
        .Servicepage .hero-section-services .section-paragraph-slogan {
            font-weight: 300;
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            color:var(--tgh-teal);
        }

        .Servicepage .service-block {
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--tgh-light-gray);
        }

        .Servicepage .service-block .container, .Servicepage .service-content {
            position: relative;
            z-index: 10;
        }

        .Servicepage .service-content ul {
            list-style: disc;
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .Servicepage .service-content ul li {
            margin-bottom: 0.5rem;
            font-weight: 300;
            line-height: 1.6;
        }

        .Servicepage .service-content h3 {
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: clamp(1.5rem, 5vw, 2.25rem);
        }

        .Servicepage .color-blue, .Servicepage .color-red, .Servicepage .color-teal, .Servicepage .color-dark {
            border-bottom: none;
            padding-bottom: 0;
            display: block;
        }
        
        .Servicepage .color-blue i { color: var(--color-accent-blue); }
        .Servicepage .color-red i { color: var(--color-secondary); }
        .Servicepage .color-teal i { color: var(--color-accent-teal); }
        .Servicepage .color-dark i { color: var(--tgh-dark); }


        .Servicepage .service-image-wrapper {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--tgh-light-gray);
            transition: transform 0.4s ease-out, box-shadow 0.4s ease;
            position: relative;
            z-index: 20;
            height: auto;
            max-height: 350px;
            margin-bottom: 2rem;
        }
        
        .Servicepage .service-block:not(:nth-of-type(3)):not(:nth-of-type(4)) .service-image-wrapper:hover {
            transform: scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .Servicepage .service-image-wrapper img {
            transition: opacity 0.4s;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .Servicepage .carousel-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--tgh-light-gray);
            height: auto;
            max-height: 350px;
            min-height: 250px;
            position: relative;
            z-index: 20;
            margin-bottom: 2rem;
        }

        .Servicepage .carousel-item img {
            height: 350px;
            object-fit: cover;
            width: 100%;
        }
        
        .Servicepage .btn-primary {
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: inline-block;
            margin-top: 0.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .Servicepage .btn-primary[style*="--color-accent-blue"]:hover {
            background-color: var(--tgh-dark) !important;
            border-color: var(--tgh-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        .Servicepage .btn-primary[style*="--color-secondary"]:hover {
            background-color: var(--tgh-dark) !important;
            border-color: var(--tgh-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        .Servicepage .btn-primary[style*="--color-accent-teal"]:hover {
            background-color: var(--tgh-dark) !important;
            border-color: var(--tgh-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        
        .Servicepage .btn-primary.btn-dark-primary {
            background-color: var(--tgh-dark);
            border-color: var(--tgh-dark);
            color: var(--tgh-white);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .Servicepage .btn-primary.btn-dark-primary:hover {
            background-color: var(--tgh-gray) !important;
            border-color: var(--tgh-gray) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* === DESKTOP OVERRIDES (min-width: 992px) === */
        @media (min-width: 992px) {
            
            .Servicepage .service-block {
                padding: 5rem 0;
            }

            .Servicepage .service-block .row {
                align-items: center;
            }
            
            .Servicepage .service-block:nth-of-type(2n+1) .service-image-wrapper,
            .Servicepage .service-block:nth-of-type(2n+1) .carousel-container {
                order: 2;
                margin-bottom: 0;
            }
            .Servicepage .service-block:nth-of-type(2n+1) .service-content {
                order: 1;
                padding-right: 5rem;
            }
            
            .Servicepage .service-block:nth-of-type(2n) .service-image-wrapper,
            .Servicepage .service-block:nth-of-type(2n) .carousel-container {
                order: 1;
                margin-bottom: 0;
            }
            .Servicepage .service-block:nth-of-type(2n) .service-content {
                order: 2;
                padding-left: 5rem;
            }

            .Servicepage .service-block:nth-of-type(3) .service-content,
            .Servicepage .service-block:nth-of-type(4) .service-content {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .Servicepage .carousel-item img {
                height: 550px;
            }
            .Servicepage .carousel-container {
                min-height: 550px;
                max-height: none;
            }

            .Servicepage .service-block:not(:nth-of-type(3)):not(:nth-of-type(4)) .service-image-wrapper {
                height: 100%;
                max-height: none;
            }
            
            .Servicepage .btn-primary {
                display: inline-block;
            }
        }
        
/* --- AboutUs Page --- */
    
    .AboutUsPage .hero-about {
    background: linear-gradient(rgba(20, 20, 20, 0.7), rgba(20, 20, 20, 0.7)), url('assets/images/TGHOFFICE.jpg') no-repeat center center/cover;
    color: var(--tgh-white);
    padding: 8rem 0;
    text-align: center;
}

.AboutUsPage .hero-about .section-heading {
    color: var(--tgh-white);
    margin-bottom: 1rem;
}

.AboutUsPage .hero-about .section-paragraph-slogan {
    color: var(--tgh-light-gray);
    margin-bottom: 2rem;
    max-width: 800px;
}

.AboutUsPage .about-section {
    padding: 4rem 0;
}

.AboutUsPage .btn-primary {
    --bs-btn-bg: #0d6efd00;}

.AboutUsPage .about-section .text-content {
    padding: 2rem;
}

.AboutUsPage .about-section .img-fluid {
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.AboutUsPage .mission-vision-values {
    background-color: var(--tgh-light-gray);
    padding: 4rem 0;
}

.AboutUsPage .mission-vision-values .card {
    border: none;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.AboutUsPage .mission-vision-values .card-title {
    font-family: var(--font-heading);
    color: var(--tgh-blue);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.AboutUsPage .mission-vision-values .card-text {
    color: var(--tgh-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.AboutUsPage .services-overview {
    padding: 5rem 0;
    background-color: var(--tgh-white);
}

.AboutUsPage .service-card {
    background-color: var(--tgh-light-gray);
    border: none;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.AboutUsPage .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    background-color: var(--tgh-white);
}

.AboutUsPage .service-card i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.AboutUsPage .service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.AboutUsPage .service-card p {
    color: var(--tgh-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.AboutUsPage .service-hotel i { color: var(--tgh-blue); }
.AboutUsPage .service-travel i { color: var(--tgh-red); }
.AboutUsPage .service-event i { color: var(--tgh-teal); }

.AboutUsPage .team-section {
    background-color: var(--tgh-dark);
    color: var(--tgh-white);
    padding: 4rem 0;
}

.AboutUsPage .team-section .section-heading,
.AboutUsPage .team-section .section-paragraph-slogan {
    color: var(--tgh-white);
}

.AboutUsPage .team-section .team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.AboutUsPage .team-section .team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--tgh-blue);
}

.AboutUsPage .team-section .team-member h5 {
    font-family: var(--font-heading);
    color: var(--tgh-teal);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.AboutUsPage .team-section .team-member p {
    color: var(--tgh-light-gray);
    font-size: 0.95rem;
}

.AboutUsPage .cta-section {
    background-color: var(--tgh-blue);
    color: var(--tgh-white);
    padding: 3rem 0;
    text-align: center;
}

.AboutUsPage .cta-section .btn-primary {
    background-color: var(--tgh-red);
    border-color: var(--tgh-red);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.AboutUsPage .cta-section .btn-primary:hover {
    background-color: var(--tgh-dark);
    border-color: var(--tgh-dark);
}

.AboutUsPage footer {
    background-color: var(--tgh-dark);
    color: var(--tgh-gray);
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.AboutUsPage footer a {
    color: var(--tgh-teal);
    text-decoration: none;
}

.AboutUsPage footer a:hover {
    color: var(--tgh-white);
}

.AboutUsPage .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--tgh-dark) !important;
    font-size: 1.8rem;
}

.AboutUsPage .navbar-brand span {
    color: var(--tgh-red);
}

.AboutUsPage .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--tgh-dark) !important;
    margin-left: 1rem;
    position: relative;
}

.AboutUsPage .nav-link:hover {
    color: var(--tgh-blue) !important;
}

.AboutUsPage .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--tgh-blue);
    transition: width 0.3s ease;
}

.AboutUsPage .nav-link:hover::after,
.AboutUsPage .nav-link.active::after {
    width: 100%;
}

.AboutUsPage .header-bg {
    background-color: var(--tgh-white);
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}



 /* Contact Page Specific Styles */
.ContactPage .contact-section {
    padding: 4rem 0;
    background-color: var(--tgh-light-gray); /* Use the light gray for contrast */
}

.ContactPage .contact-card {
    background-color: var(--tgh-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(20, 20, 20, 0.05); /* subtle shadow */
    height: 100%; /* Important for equal height columns */
}

.ContactPage .info-card {
    background-color: var(--color-accent-blue); /* Accent color for the info side */
    color: var(--tgh-white);
    padding: 2.5rem;
}

.ContactPage .info-card h3,
.ContactPage .info-card p,
.ContactPage .info-card a {
    color: var(--tgh-white);
}

.ContactPage .info-card a:hover {
    color: var(--tgh-teal); /* Hover effect using another accent color */
}

.ContactPage .icon-box {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.ContactPage .contact-button {
    background-color: var(--color-secondary); /* Primary button color */
    border-color: var(--color-secondary);
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: background-color 0.3s, border-color 0.3s;
}

.ContactPage .contact-button:hover {
    background-color: var(--tgh-red); /* Slightly darker or same as primary */
    border-color: var(--tgh-red);
    opacity: 0.9;
}

/* Global Offices Styling */
.ContactPage .office-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--tgh-light-gray);
    border-radius: 0.5rem;
    background-color: var(--tgh-white);
}

.ContactPage .office-card h5 {
    color: var(--color-accent-red); /* Use an accent color for the office title */
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.ContactPage .office-card p {
    margin-bottom: 0.25rem;
    color: var(--tgh-dark);
    font-size: 0.95rem;
}

.ContactPage .office-card .flag-icon {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.ContactPage .office-card a {
    color: var(--tgh-gray);
    text-decoration: none;
}

.ContactPage .office-card a:hover {
    color: var(--color-accent-blue);
}