/* =========================================================
SWAPNAGANDHA RESORT GOA
MASTER PREMIUM RESPONSIVE CSS
CLEAN PRODUCTION VERSION
========================================================= */


/* =========================================================
ROOT VARIABLES
========================================================= */

:root {
    --primary: #7f9f00;
    --primary-dark: #084c35;
    --secondary: #f7f5ef;
    --text: #1f2937;
    --muted: #6b7280;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 12px 35px rgba(0,0,0,0.05);
    --radius: 14px;
}

/* =========================================================
TYPOGRAPHY SYSTEM
========================================================= */

/* BODY FONT */

body {
    font-family: 'Lora', serif;
    font-weight: 400;
    color: var(--text);
    line-height: 1.8;
}


/* LUXURY HEADINGS */

.hero h1,
.hero h2,
.section-title h2,
.final-cta h2 {
    font-family: 'Playfair Display', serif;
}
/* =========================================================
RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: auto;
}

/* =========================================================
GLOBAL SECTION H2 STYLE
========================================================= */

.section-title{

width:100%;

text-align:center;

margin-bottom:20px;
}


.section-title h2{

display:block;

width:100%;

margin:0 auto;

text-align:center;

font-family:'Playfair Display',serif;

font-size:42px;

font-weight:700;

line-height:1.3;

/* Nature Luxury Green */

color:var(--primary);

/* very subtle depth */

text-shadow:
0 1px 2px rgba(0,0,0,.04);

}



/* LEFT ALIGN OVERRIDE */

.section-title.left-align{

text-align:left;
}

.section-title.left-align h2{

text-align:left;
}



/* RESPONSIVE */

@media(max-width:768px){

.section-title h2{

font-size:30px;

}

}

/* =========================================================
HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    overflow: visible;
}


/* =========================================================
TOP STRIP
========================================================= */

.top-strip {
    background: #f8fafc;
    border-bottom: 1px solid #ececec;
    padding: 14px 0;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.35s ease;
}

.top-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-left p {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin: 0;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-right a {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    transition: 0.3s ease;
}

.top-right a:hover {
    color: var(--primary);
}


/* =========================================================
MAIN NAVBAR
========================================================= */

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 40px;
    transition: all 0.35s ease;
}


/* =========================================================
SCROLL COMPACT HEADER
========================================================= */

.header.scrolled .top-strip {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.header.scrolled .header-inner {
    padding: 14px 0;
}

.header.scrolled .logo img {
    height: 62px;
}

.header.scrolled .logo-tagline {
    margin-top: 4px;
    font-size: 12px;
}


/* =========================================================
LOGO
========================================================= */

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 280px;
    flex: 0 0 auto;
}

.logo img {
    height: 74px;
    width: auto;
    display: block;
    transition: all 0.35s ease;
}

.logo-tagline {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.2px;
    transition: all 0.35s ease;
}


/* =========================================================
DESKTOP NAVIGATION
========================================================= */

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav ul li {
    position: relative;
}

.nav ul li a {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    position: relative;
    transition: 0.3s ease;
}


/* PREMIUM HOVER EFFECT */

.nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.nav ul li a:hover {
    color: var(--primary);
}

.nav ul li a:hover::after {
    width: 100%;
}


/* =========================================================
CTA BUTTON
========================================================= */

.book-btn {
    display: inline-block;
    padding: 13px 28px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.small-book-text {
    display: none;
}


/* =========================================================
HAMBURGER MENU
========================================================= */

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    cursor: pointer;
    flex: 0 0 44px;
}

.mobile-menu-btn span {
    position: absolute;
    width: 28px;
    height: 2.5px;
    background: var(--primary);
    left: 8px;
    border-radius: 30px;
    transition: 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
    top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 20px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 28px;
}


/* =========================================================
MOBILE NAV DROPDOWN
========================================================= */

.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 20px 24px;
    z-index: 9998;
}

.mobile-nav a {
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-book-btn {
    margin-top: 18px;
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 50px;
    text-align: center;
    padding: 14px;
}


/* =========================================================
MID-SCREEN LAPTOP OPTIMIZATION
========================================================= */

@media (max-width: 1366px) and (min-width: 993px) {

    .logo img {
        height: 64px;
    }

    .logo-tagline {
        font-size: 12px;
    }

    .nav ul {
        gap: 24px;
    }

    .nav ul li a {
        font-size: 14px;
    }

    .desktop-book-text {
        display: none;
    }

    .small-book-text {
        display: inline;
    }

    .book-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}


/* =========================================================
TABLET + MOBILE
========================================================= */

@media (max-width: 992px) {

    .top-strip {
        display: none;
    }

    .nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-inner {
        padding: 18px 0;
    }

    .logo {
        min-width: auto;
    }

    .logo img {
        height: 58px;
    }

    .logo-tagline {
        font-size: 11px;
        margin-top: 5px;
    }
}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 768px) {

    .header-inner {
        padding: 14px 0;
    }

    .logo img {
        height: 52px;
    }

    .logo-tagline {
        font-size: 10px;
        margin-top: 4px;
    }

    .mobile-nav {
        padding: 18px 20px;
    }

    .mobile-nav a {
        font-size: 14px;
    }
}
/* =========================================================
HERO SECTION
========================================================= */

.hero {
    position: relative;
    min-height: 92vh;
    background: url("https://www.bestweekenddeals.com/swapnagandha/images/swapnagandha-goa1.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: var(--white);
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* HERO H1 (PRIMARY) */

.hero h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.3px;
}


/* HERO H2 (SECONDARY) */

.hero h2 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 18px;
    line-height: 1.4;
}


/* HERO SUPPORT TEXT */

.hero-subtext {
    font-size: 16px;
    opacity: 0.95;
}

.hero-urgency {
    font-size: 15px;
    font-weight: 600;
    color: #facc15;
    margin-top: 12px;
}

.hero-price {
    font-size: 17px;
    font-weight: 600;
    margin-top: 8px;
}
/* BUTTONS */

.btn-primary,
.btn-secondary {
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--white);
    color: #111827;
}

.btn-secondary:hover {
    background: #f3f4f6;
}


/* =========================================================
COMMON SECTIONS
========================================================= */

/* =========================================================
ABOUT SECTION + VIDEO
========================================================= */

.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.left-align h2 {
    text-align: left;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 22px;
    line-height: 1.9;
}

.about-content .btn-primary {
    margin-top: 12px;
}

.about-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    padding-top: 56.25%;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================================
EXPERIENCE BOXES
========================================================= */

.experience-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.experience-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.06);
}

.experience-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .experience-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 20px;
    }

    .experience-card {
        padding: 18px 12px;
        border-radius: 16px;
    }

    .experience-card h4 {
        font-size: 14px;
        line-height: 1.4;
    }
}
/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-align h2 {
        text-align: center;
    }

    .about-content {
        text-align: center;
    }
}

@media (max-width: 768px) {

    .about-section {
        padding: 70px 0;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}


/* =========================================================
ROOMS
========================================================= */

/* =========================================================
STAY OPTIONS SECTION
========================================================= */

.rooms-section {
    padding: 100px 0;
    background: #f8fafc;
}

.stay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 20px;
}

.stay-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.stay-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0,0,0,0.08);
}

.stay-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.stay-content {
    padding: 32px;
}

.stay-content h3 {
    font-size: 28px;
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
}

.stay-content p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stay-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 22px;
}

.stay-inclusions {
    background: #f9fafb;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.stay-inclusions h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #111827;
}

.stay-inclusions p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .stay-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stay-image img {
        height: auto;
    }

    .stay-content {
        padding: 28px;
    }

    .stay-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    .rooms-section {
        padding: 70px 0;
    }

    .stay-content {
        padding: 24px;
    }

    .stay-content h3 {
        font-size: 22px;
    }

    .stay-price {
        font-size: 18px;
    }
}

/* =========================================================
ACTIVITIES
========================================================= */

/* =========================================================
EXPERIENCES & ACTIVITIES SECTION
========================================================= */

.activities-section {
    padding: 20px 0;
    background: #ffffff;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.experience-item {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.03);
    transition: 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.06);
}

.experience-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
    color: #111827;
}

.experience-item p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .experience-item {
        padding: 28px 22px;
    }

    .experience-item h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {

    .activities-section {
        padding: 70px 0;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .experience-item {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .experience-item h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .experience-item p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* =========================================================
GUEST SECTION
========================================================= */

/* =========================================================
PERFECT FOR SECTION
========================================================= */

.guest-section {
    padding: 20px 0;
    background: #f8fafc;
}

.guest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.guest-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.03);
    transition: 0.3s ease;
}

.guest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.guest-card h3 {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    color: #111827;
    line-height: 1.5;
}

.guest-note {
    margin-top: 36px;
    text-align: center;
}

.guest-note p {
    display: inline-block;
    background: #ffffff;
    border: 1px solid #ececec;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.guest-note strong {
    color: var(--primary);
}


/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .guest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .guest-card {
        padding: 26px 20px;
    }

    .guest-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    .guest-section {
        padding: 70px 0;
    }

    .guest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .guest-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .guest-card h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    .guest-note {
        margin-top: 28px;
    }

    .guest-note p {
        font-size: 14px;
        padding: 12px 18px;
        border-radius: 16px;
    }
}

/* =========================================================
FAQ
========================================================= */

/* =========================================================
FAQ SECTION
========================================================= */

.faq-section {
    padding: 20px 0;
    background: #f8fafc;
}

.faq-wrapper {
    max-width: 950px;
    margin: 30px auto 0;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.03);
    transition: 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: #111827;
    margin-bottom: 14px;
    line-height: 1.5;
}

.faq-item p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.9;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .faq-item {
        padding: 28px;
    }

    .faq-item h3 {
        font-size: 21px;
    }
}

@media (max-width: 768px) {

    .faq-section {
        padding: 70px 0;
    }

    .faq-wrapper {
        margin-top: 20px;
    }

    .faq-item {
        padding: 22px 18px;
        border-radius: 16px;
        margin-bottom: 16px;
    }

    .faq-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .faq-item p {
        font-size: 14px;
        line-height: 1.7;
    }
}
/* =========================================================
LOCATION SECTION
========================================================= */

.location-section {
    padding: 100px 0;
    background: #ffffff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 22px;
}

.location-time {
    background: #f8fafc;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 24px;
    margin: 30px 0;
}

.location-time h4 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #111827;
    font-family: 'Playfair Display', serif;
}

.location-time p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #374151;
}

.location-map {
    position: relative;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    min-height: 520px;
}

.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-content {
        text-align: center;
    }

    .location-time {
        text-align: left;
    }

    .map-wrapper {
        min-height: 420px;
    }
}

@media (max-width: 768px) {

    .location-section {
        padding: 70px 0;
    }

    .location-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .location-time {
        padding: 20px;
        margin: 24px 0;
    }

    .map-wrapper {
        min-height: 340px;
        border-radius: 16px;
    }
}
/* =========================================================
PREMIUM FINAL CTA
========================================================= */

.final-cta{

position:relative;

padding:140px 0;

background:
url("https://www.bestweekenddeals.com/swapnagandha/images/swapnagandha-goa1.jpg");

background-size:cover;
background-position:center;

overflow:hidden;
}


.cta-overlay{

position:absolute;
inset:0;

background:
linear-gradient(
rgba(7,35,23,.82),
rgba(7,35,23,.65)
);

backdrop-filter:blur(2px);
}


.cta-card{

position:relative;
z-index:2;

max-width:950px;

margin:auto;

background:
rgba(255,255,255,.10);

border:1px solid rgba(255,255,255,.12);

backdrop-filter:blur(16px);

padding:60px;

border-radius:35px;

text-align:center;

box-shadow:
0 30px 80px rgba(0,0,0,.25);

color:#fff;
}


.cta-mini-title{

display:inline-block;

font-size:12px;

letter-spacing:3px;

margin-bottom:20px;

opacity:.85;
}


.cta-card h2{

font-size:54px;

line-height:1.25;

margin-bottom:25px;
}


.cta-text{

font-size:18px;

line-height:1.9;

max-width:720px;

margin:auto auto 30px;
}


.cta-pill{

display:inline-block;

padding:14px 26px;

border-radius:50px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.15);

margin-bottom:35px;

font-size:15px;

backdrop-filter:blur(10px);
}


.cta-buttons{

display:flex;

justify-content:center;

gap:18px;

margin-bottom:35px;

flex-wrap:wrap;
}


.cta-contact{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;
}


.cta-contact div{

padding:12px 20px;

background:rgba(255,255,255,.08);

border-radius:50px;

font-size:14px;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px){

.final-cta{

padding:90px 0;

}

.cta-card{

padding:35px 25px;

border-radius:25px;

}

.cta-card h2{

font-size:32px;

}

.cta-text{

font-size:15px;

}

.cta-contact{

flex-direction:column;

gap:10px;

}

}
/* =========================================================
FOOTER
========================================================= */

/* =========================================================
FOOTER
========================================================= */

.footer{

background:#0f172a;

padding:80px 0 50px;

color:#fff;

position:relative;
}


.footer-grid{

display:grid;

grid-template-columns:
2fr
1fr
1fr
1.5fr;

gap:50px;
}


.footer-logo{

width:180px;

margin-bottom:20px;
}


.footer-column h4{

font-family:'Playfair Display',serif;

font-size:24px;

margin-bottom:22px;
}


.footer-column p{

font-size:15px;

line-height:1.9;

opacity:.85;

margin-bottom:10px;
}


.footer-column ul{

padding:0;
margin:0;
list-style:none;
}


.footer-column ul li{

margin-bottom:12px;
}


.footer-column a{

color:#fff;

opacity:.85;

transition:.3s;
}


.footer-column a:hover{

opacity:1;

padding-left:5px;
}


.footer-book-btn{

display:inline-block;

margin-top:15px;

padding:13px 24px;

background:#fff;

color:#111827 !important;

border-radius:50px;

font-size:14px;

font-weight:600;
}


.footer-bottom{

margin-top:60px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.1);

text-align:center;

font-size:14px;

opacity:.75;
}


/* ======================
RESPONSIVE
====================== */

@media(max-width:992px){

.footer-grid{

grid-template-columns:1fr 1fr;

gap:35px;

}

}


@media(max-width:768px){

.footer{

padding:70px 0 120px;
}

.footer-grid{

grid-template-columns:1fr;

gap:30px;

}

.footer-logo{

width:150px;
}

.footer-column{

text-align:center;
}

.footer-bottom{

margin-top:40px;
}

}

/* =========================================================
MID-SCREEN (LAPTOPS)
========================================================= */

@media (max-width: 1366px) and (min-width: 993px) {

    .logo img {
        height: 64px;
    }

    .logo-tagline {
        font-size: 12px;
    }

    .nav ul {
        gap: 24px;
    }

    .nav ul li a {
        font-size: 14px;
    }

    .desktop-book-text {
        display: none;
    }

    .small-book-text {
        display: inline;
    }

    .book-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}


/* =========================================================
TABLET + MOBILE
========================================================= */

@media (max-width: 992px) {

    .top-strip {
        display: none;
    }

    .nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-inner {
        padding: 18px 0;
    }

    .logo {
        min-width: auto;
    }

    .logo img {
        height: 58px;
    }

    .logo-tagline {
        font-size: 11px;
        margin-top: 5px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .room-card img {
        height: auto;
    }
}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.8;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .about-content p,
    .guest-section p,
    .location-section p,
    .faq-box p {
        font-size: 15px;
    }

    .faq-box {
        padding: 28px;
    }

    .final-cta h2 {
        font-size: 30px;
    }

    .final-cta p {
        font-size: 15px;
    }

    .logo img {
        height: 52px;
    }

    .logo-tagline {
        font-size: 10px;
    }
}


/* =========================================================
BOOKING FORM
========================================================= */

.booking-form-section{

padding:20px 0;

background:#f8fafc;
}


.booking-form-card{

max-width:1000px;

margin:auto;

background:#fff;

padding:60px;

border-radius:30px;

box-shadow:
0 20px 60px rgba(0,0,0,.05);

text-align:center;
}


.booking-intro{

max-width:700px;

margin:20px auto 40px;

font-size:16px;

color:#4b5563;

line-height:1.8;
}


.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

margin-bottom:20px;
}


.booking-form input,
.booking-form textarea{

width:100%;

padding:18px 22px;

border:1px solid #e5e7eb;

border-radius:14px;

font-size:15px;

font-family:'Lora',serif;

outline:none;

transition:.3s;
}


.booking-form textarea{

resize:none;
}


.booking-form input:focus,
.booking-form textarea:focus{

border-color:var(--primary);

box-shadow:
0 0 0 4px rgba(11,107,74,.08);

}


/* CAPTCHA */

.captcha-row{

display:flex;

align-items:center;

justify-content:center;

gap:15px;

margin:30px 0;
}


.captcha-box{

background:#f3f4f6;

padding:12px 25px;

border-radius:14px;

font-size:22px;

font-weight:700;

letter-spacing:4px;
}


.refresh-btn{

background:none;

border:none;

cursor:pointer;

font-size:14px;

color:var(--primary);

font-weight:600;
}


.submit-btn{

padding:16px 45px;

border:none;

border-radius:50px;

background:var(--primary);

color:#fff;

font-size:15px;

font-weight:600;

cursor:pointer;

transition:.3s;
}


.submit-btn:hover{

background:var(--primary-dark);

transform:translateY(-2px);

}


/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px){

.booking-form-card{

padding:35px 25px;
}


.form-row{

grid-template-columns:1fr;

gap:15px;
}


.captcha-row{

flex-wrap:wrap;
}


.submit-btn{

width:100%;
}

}

/********** Form Styles including captcha******/

.captcha
{
width:60px; 
font-size:20px; 
border: 1px solid;
}
.color
{
	color:#FF0000;
}

.hidden {
	display:none;
	visibility:hidden;
}
/* =========================================================
CAPTCHA UI
========================================================= */

.captcha-row{

display:flex;

align-items:center;

gap:15px;

margin:30px 0;

flex-wrap:wrap;
}


.captcha-input{

flex:1;

min-width:180px;
}


.captcha-code{

width:100px !important;

text-align:center;

font-size:22px !important;

font-weight:700;

letter-spacing:1px;

background:#f3f4f6;

border:none !important;

color:#111827;

border-radius:14px;
}


.refresh-btn{

padding:14px 20px;

border:none;

background:#f3f4f6;

border-radius:14px;

cursor:pointer;

font-size:13px;

font-weight:600;

transition:.3s;
}


.refresh-btn:hover{

background:#e5e7eb;
}


.captcha-error{

margin-top:-15px;
margin-bottom:25px;

font-size:13px;

color:red;
}


.alert-msg{

margin-top:25px;
}


/* ======================
MOBILE
====================== */

@media(max-width:768px){

.captcha-row{

flex-direction:column;
align-items:stretch;

}

.captcha-code{

width:100% !important;

}

.refresh-btn{

width:100%;
}

}

/**********************inside pages css**********************/
/* =========================================================
INNER PAGE HERO
========================================================= */

.inner-hero{

position:relative;

height:380px;

display:flex;

align-items:center;

justify-content:center;

overflow:hidden;

text-align:center;

color:#fff;

background-size:cover;

background-position:center center;

background-repeat:no-repeat;
}


.inner-overlay{

position:absolute;

inset:0;

background:
linear-gradient(
rgba(0,0,0,.45),
rgba(0,0,0,.68)
);

z-index:1;
}


.inner-content{

position:relative;

z-index:2;

max-width:900px;
}


.inner-content h1{

font-family:'Playfair Display',serif;

font-size:54px;

line-height:1.2;

margin-bottom:18px;

color:#fff;
}


.inner-content p{

font-size:17px;

line-height:1.9;

max-width:700px;

margin:auto;

opacity:.95;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:992px){

.inner-hero{

height:320px;
}

.inner-content h1{

font-size:40px;
}

}


@media(max-width:768px){

.inner-hero{

height:260px;

padding:0 20px;
}

.inner-content h1{

font-size:30px;

margin-bottom:10px;
}

.inner-content p{

font-size:14px;

line-height:1.7;
}

}

/* =========================================================
PHOTO SECTION
========================================================= */

.about-photo{

position:relative;
}


.photo-wrapper{

overflow:hidden;

border-radius:22px;

box-shadow:
0 20px 50px rgba(0,0,0,.08);
}


.photo-wrapper img{

width:100%;

height:500px;

display:block;

object-fit:cover;

transition:.5s;
}


.photo-wrapper img:hover{

transform:scale(1.03);
}


/* EXTRA TEXT */

.about-highlight{

margin:30px 0;
}


.about-highlight p{

font-style:italic;

font-size:15px;

color:var(--primary);

margin-bottom:14px;
}



/* MOBILE */

@media(max-width:768px){

.photo-wrapper img{

height:300px;
}

.about-highlight{

text-align:center;
}

}

/* =========================================================
PRICING SECTION
========================================================= */

.pricing-section{

padding:100px 0;

/* very soft nature green */

background:#f7faf5;
}

/* =========================================================
SECTION TITLE ALIGNMENT
========================================================= */

.pricing-section .section-title{

text-align:center;

margin-bottom:20px;
}


.pricing-section .section-title h2{

display:block;

width:100%;

margin:auto;

text-align:center;
}


.pricing-intro{

max-width:760px;

margin:0 auto 35px;

text-align:center;

font-size:16px;

line-height:1.8;
}

.pricing-intro{

max-width:700px;

margin:20px auto;

text-align:center;
}


.pricing-period{

background:var(--primary);

color:#fff;

padding:18px;

border-radius:16px;

text-align:center;

font-weight:600;

margin:40px auto;

max-width:800px;
}



.pricing-table-wrapper{

overflow-x:auto;

margin-bottom:40px;
}


.pricing-table{

width:100%;

border-collapse:collapse;

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.04);

}


.pricing-table th{

background:var(--primary);

color:#fff;

padding:20px;

font-size:15px;
}


.pricing-table td{

padding:18px;

border-bottom:1px solid #ececec;

text-align:center;
}



.check-times{

display:flex;

justify-content:center;

gap:40px;

margin:40px 0;
}


.check-times div{

background:#fff;

padding:20px 35px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.04);
}



.inclusions-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-top:50px;
}


.inclusion-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.04);
}


.inclusion-card h3{

margin-bottom:20px;

font-family:'Playfair Display',serif;
}


.inclusion-card ul{

padding-left:20px;
}


.inclusion-card li{

margin-bottom:10px;
line-height:1.8;
}


.pricing-notes{

margin-top:50px;

padding:35px;

background:#fff;

border-radius:20px;
}



@media(max-width:768px){

.inclusions-grid{

grid-template-columns:1fr;
}

.check-times{

flex-direction:column;
align-items:center;
}

}

/* =========================================================
COTTAGES SECTION
========================================================= */

.cottages-section{

padding:100px 0;

background:#f7faf5;
}


.cottages-section .section-title{

text-align:center;
}


.cottages-intro{

max-width:700px;

margin:20px auto 50px;

text-align:center;

line-height:1.8;
}


.cottages-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;
}



.cottage-card{

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:
0 15px 40px rgba(0,0,0,.05);

transition:.4s;
}


.cottage-card:hover{

transform:translateY(-8px);
}


.cottage-image{

height:280px;

overflow:hidden;
}


.cottage-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;
}


.cottage-card:hover img{

transform:scale(1.05);
}


.cottage-content{

padding:30px;
}


.cottage-content h3{

font-family:'Playfair Display',serif;

font-size:28px;

margin-bottom:18px;
}


.cottage-content p{

line-height:1.8;

margin-bottom:25px;
}



.cottage-features{

display:flex;

flex-wrap:wrap;

gap:10px;

margin-bottom:25px;
}


.cottage-features span{

padding:8px 15px;

background:#f7faf5;

border-radius:50px;

font-size:13px;
}



.cottage-price{

margin-bottom:25px;

font-size:15px;
}


.cottage-price strong{

display:block;

font-size:34px;

color:var(--primary);

margin:5px 0;
}



/* ==========================
MOBILE
========================== */

@media(max-width:992px){

.cottages-grid{

grid-template-columns:1fr;
}

}

.reviews-wall-section{

padding:100px 0;

background:#f7faf5;
}


.reviews-intro{

max-width:700px;

margin:20px auto 50px;

text-align:center;
}


.reviews-grid{

column-count:4;

column-gap:25px;
}


.review-card{

background:#fff;

padding:25px;

margin-bottom:25px;

border-radius:18px;

break-inside:avoid;

box-shadow:0 10px 30px rgba(0,0,0,.05);

transition:.3s;
}


.review-card:hover{

transform:translateY(-5px);
}


.review-head{

display:flex;

gap:15px;

align-items:center;

margin-bottom:15px;
}


.review-avatar{

width:50px;
height:50px;

border-radius:50%;

background:#e8f4ec;

display:flex;

justify-content:center;

align-items:center;

font-weight:700;

color:var(--primary);
}


.review-head h4{

margin:0;
font-size:15px;
}


.review-head span{

font-size:13px;

color:#777;
}


.stars{

margin-bottom:15px;

color:#ffb400;

letter-spacing:2px;
}


.review-card p{

line-height:1.8;
font-size:14px;
}


@media(max-width:992px){

.reviews-grid{

column-count:2;
}

}


@media(max-width:768px){

.reviews-grid{

column-count:1;
}

}

/* =========================================================
GUEST LOVE SUMMARY
========================================================= */

.guest-love-box{

background:#fff;

padding:35px;

border-radius:22px;

margin-bottom:50px;

box-shadow:
0 12px 35px rgba(0,0,0,.04);

text-align:center;
}


.guest-love-box h3{

font-family:'Playfair Display',serif;

font-size:28px;

margin-bottom:30px;
}


.guest-love-grid{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:15px;
}


.love-item{

padding:12px 20px;

background:#f0f8f2;

border-radius:50px;

font-size:14px;

font-weight:500;

transition:.3s;
}


.love-item:hover{

background:var(--primary);

color:#fff;
}



/* =========================================================
REVIEW BUTTONS
========================================================= */

.review-actions{

margin-top:50px;

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;
}


.review-btn{

padding:15px 30px;

background:var(--primary);

color:#fff;

border-radius:50px;

font-weight:600;

transition:.3s;
}


.review-btn:hover{

transform:translateY(-3px);
}


.review-btn.secondary{

background:#fff;

border:1px solid #ddd;

color:#333;
}



/* MOBILE */

@media(max-width:768px){

.guest-love-box{

padding:25px;
}


.guest-love-box h3{

font-size:24px;
}

}

/* =========================================================
FULL ACTIVITIES SECTION
========================================================= */

.activities-full-section{

padding:100px 0;

background:#f7faf5;
}


.activities-full-section .section-title{

text-align:center;
}


.activities-intro{

max-width:750px;

margin:20px auto 50px;

text-align:center;

line-height:1.9;
}


.activities-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;
}


.activity-card{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,.04);

transition:.3s;
}


.activity-card:hover{

transform:translateY(-5px);

box-shadow:
0 15px 35px rgba(0,0,0,.08);
}


.activity-card h3{

font-family:'Playfair Display',serif;

font-size:24px;

margin-bottom:15px;
}


.activity-card p{

font-size:14px;

line-height:1.8;
}


/* RESPONSIVE */

@media(max-width:992px){

.activities-grid{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:768px){

.activities-grid{

grid-template-columns:1fr;

}

.activities-full-section{

padding:70px 0;

}

}

/* =========================================================
WHY BOOK SECTION
========================================================= */

.why-book-section{

padding:100px 0;

background:#f7faf5;
}


.why-intro{

max-width:700px;

margin:20px auto 50px;

text-align:center;

line-height:1.8;
}


/* PART 1 */

.why-us-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:20px;

margin-bottom:100px;
}


.why-card{

background:#fff;

padding:30px 15px;

border-radius:20px;

text-align:center;

box-shadow:
0 10px 30px rgba(0,0,0,.04);

transition:.3s;
}


.why-card:hover{

transform:translateY(-5px);

box-shadow:
0 15px 35px rgba(0,0,0,.08);
}


.why-card h3{

font-family:'Playfair Display',serif;

font-size:28px;

margin-bottom:12px;

color:var(--primary);
}


.why-card p{

font-size:13px;

line-height:1.6;
}



/* PART 2 */

.why-stay-title{

margin-bottom:50px;
}


.weekend-reasons{

display:grid;

grid-template-columns:1fr 1fr;

gap:30px;
}


.reason-item{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,.04);
}


.reason-item h3{

font-family:'Playfair Display',serif;

margin-bottom:15px;

font-size:26px;

color:var(--primary);
}


.reason-item p{

line-height:1.9;
}


/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:992px){

.why-us-grid{

grid-template-columns:repeat(3,1fr);
}

}


@media(max-width:768px){

.why-us-grid{

grid-template-columns:repeat(2,1fr);
}

.weekend-reasons{

grid-template-columns:1fr;
}

.why-book-section{

padding:70px 0;
}

}