:root {

    --menu-glass-bg: rgba(3, 20, 35, 0.55);
    --menu-glass-blur: blur(14px);

    --error: #dc3545;
    --success: #198754;

    --primary: #1e88e5;
    --primary-light: #64b5f6;
    --secondary: #00c2ec;

    --border-color: #009ccf;
    --button-text: #fff;
    --button-focus: 0 0 0 3px rgba(121,82,179,.25);
    --link-color: #0167ff;

    --text-main: #363636;
    --text-bright: #fff;

    --brand: #d3e6ef;
    --brand-dark: #b0daff;

    --background-body: #ffffff;
    --frame: #eee;

    --input-text-color: #000;
    --input-placeholder-color: #c2c2c2;
    --input-border-color: #ccc;
    --input-background-color: #f2f9ff;
    --input-disabled: #fafafa;

    --hero-overlay: rgba(0, 40, 80, 0.45);
}

/* ================================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    background-color: var(--background-body);
    text-rendering: optimizeLegibility;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    min-height: 100vh;
    color: var(--text-main);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--link-color);
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    padding: 10px 0;
}

a, 
button, 
label {
    -webkit-tap-highlight-color: transparent;
}

.menu a:focus,
.menu a:active {
    outline: none;
    background: transparent;
}

/* ================================
   TYPOGRAFIA
================================ */

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    color: #000;
}

h1 {
    font-size: 36px;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

h3 {
    font-size: 22px;
    font-weight: 500;
    padding: 10px 0;
}

/* ================================
   HEADER – GLASS + SCROLL
================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1200;
    background: transparent;
    transition: background .35s ease;
}

.header.scrolled {
    background: rgba(0, 20, 40, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* LOGO i NAWIGACJA */

.logo,
.hamb {
    position: relative;
    z-index: 1100;
}


/* logo */
.logo img {
    height: 60px;
    padding-left: 20px;
}

/* Navigacja */

.nav {
    width: 100%;
    position: fixed;
    top: 80px;
    left: 0;

    display: flex;        
    flex-direction: column;

    visibility: hidden;
    pointer-events: none;

    z-index: 1300;
}

.side-menu:checked ~ header .nav {
    visibility: visible;
    pointer-events: auto;
}


.menu {
    display: flex;
}

.menu li a {
    color: #fff;
    font-weight: 500;
    padding: 10px 14px;
    transition: opacity .2s ease;
}

.menu li a:hover {
    opacity: 0.75;
    text-decoration: none;
}

/* ================================
   BUTTON – REZERWACJA
================================ */

.menu li.rezerwacja a {
    background: linear-gradient(
        to top,
        #0a3d91,
        #3fa9f5
    );
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
}

.menu li.rezerwacja a:hover {
    opacity: 0.9;
}

.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;

    background: rgba(3, 20, 35, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    z-index: 1150;
}

.side-menu:checked ~ .menu-overlay {
    display: block;
}

/* hamburger */

.hamb {
    cursor: pointer;
    padding: 10px 20px;
    margin-right: 30px;  
    position: relative;
    z-index: 1100;
}

.hamb-line {
    width: 28px;
    height: 2px;
    background: #fff;
    position: relative;
    display: block;
}

.hamb-line::before,
.hamb-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background: #fff;
}

.hamb-line::before {
    top: -8px;   
}

.hamb-line::after {
    top: 8px;    
}

.hamb:hover .hamb-line,
.hamb:hover .hamb-line::before,
.hamb:hover .hamb-line::after {
    background-color: var(--primary-light);
}

.side-menu { display: none; }

.hamb {
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.hamb * {
    outline: none !important;
    box-shadow: none !important;
}


.hamb:focus,
.hamb:active {
    outline: none;
    background: transparent;
}

.hamb::-moz-focus-inner {
    border: 0;
}

/* Desktop */

@media (min-width: 600px) {
  .nav {
        position: static;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        width: auto;
        flex-direction: row;
    }

    .menu {
        display: flex;
        align-items: center;
        gap: 0px;
    }

    .menu li a {
        padding: 8px 12px;
        background: transparent;
    }

    .menu li a:hover {
        text-decoration: none;
    }

   .menu li {
        background: transparent;
    }

    .menu li.rezerwacja {
        background: transparent;
    }

    .menu li.rezerwacja a {
        background-clip: padding-box;
    }

    .hamb {
        display: none;
    }
.hamb {
    -webkit-tap-highlight-color: transparent;
}

 .header-blur {
        display: none;
    }

}

/* ================================
   HERO SECTION
================================ */


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.15) 0%,
            rgba(0,0,0,0.25) 100%        );
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    font-size: 14px;
    margin-bottom: 28px;
}

.hero-badge .waves {
    color: #6fe7ff;
    font-weight: 700;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.hero-title span {
    background: linear-gradient(
        90deg,
        #6fe7ff,
        #5fffd2,
        #ffd3b6
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    max-width: 760px;
    margin: 0 auto 36px;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.hero-actions {
    margin-bottom: 50px;
}

.hero-btn-primary,
.hero-btn-primary:hover,
.hero-btn-primary:focus,
.hero-btn-primary:active {
    text-decoration: none;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    font-size: 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff6a3d, #ff865b);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.hero-btn-primary:hover {
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 26px 20px;
}

.stat-value {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

.stat-value.cyan { color: #6fe7ff; }
.stat-value.mint { color: #5fffd2; }
.stat-value.coral { color: #ffd3b6; }

@media (max-width: 768px) {
    .hero-inner {
        padding-top: 110px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/* ================================
   IMAGE BANER 
================================ */

.image-banner {
    position: relative;
    width: 100%;
    height: 50vh; 
    background: url('media/background.jpg') top right / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* ================================
   OFERTA – VIDEO BACKGROUND
================================ */

.offer-video {
    position: relative;
    min-height: 100vh;
    padding: 100px 20px;
    overflow: hidden;
    color: #fff;
}

.offer-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.offer-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 40, 80, 0.45) 0%,
            rgba(0, 20, 40, 0.55) 60%,
            rgba(0, 10, 18, 0.65) 100%
        );
    z-index: 1;
}

.offer-video-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-video h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #fff;
}

/* GRID */

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* CARD */

.offer-card {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 28px 26px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 50px rgba(0,0,0,0.25);
    transition: transform .25s ease, box-shadow .25s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 70px rgba(0,0,0,0.35);
}

.offer-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.offer-card p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.9);
}

/* PRICE */

.offer-price {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 700;
    color: #6fe7ff;
}

.offer-price.accent {
    color: #ffd3b6;
}

/* WYRÓŻNIONA KARTA */

.offer-card.highlight {
    background: rgba(255,255,255,0.18);
    border-color: rgba(111,231,255,0.45);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-video {
        padding: 80px 16px;
    }

    .offer-video h2 {
        font-size: 34px;
    }
}


/* ================================
   WHY HURGHADA
================================ */

.whyhurghada {
    position: relative;
    padding: 90px 20px;
    overflow: hidden;
    background: #061b2b;
}

.whyhurghada::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("media/whyhurghada.jpg") center / cover no-repeat;
    z-index: 0;
    transform: scale(1.03);
}

.whyhurghada::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
 radial-gradient(
        1200px 700px at 50% 10%,
        rgba(140, 235, 255, 0.35),
        rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(
        180deg,
        rgba(0, 60, 110, 0.35) 0%,
        rgba(0, 40, 80, 0.45) 55%,
        rgba(0, 25, 55, 0.55) 100%
    );
    z-index: 1;
}

.whyhurghada-inner {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.whyhurghada-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 14px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 18px;
}

.whyhurghada-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: #6fe7ff;
    box-shadow: 0 0 18px rgba(111,231,255,0.55);
}

.whyhurghada h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.whyhurghada-lead {
    max-width: 860px;
    margin: 0 auto 34px;
    color: rgba(255,255,255,0.90);
    font-size: 18px;
    line-height: 1.7;
}

.whyhurghada-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    text-align: left;
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 55px rgba(0,0,0,0.22);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    min-height: 240px;
}

.why-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 22px 70px rgba(0,0,0,0.28);
}

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(111,231,255,0.18);
    border: 1px solid rgba(111,231,255,0.30);
    margin-bottom: 12px;
}

.why-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: rgba(255,255,255,0.95);
    stroke-width: 2;
}

.why-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 6px 0 10px;
    padding: 0;
}

.why-card p {
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    line-height: 1.65;
    padding: 0;
}

@media (max-width: 1100px) {
    .whyhurghada-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================
   FEATURES
================================ */

.features {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.features > p {
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    margin-top: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
}

.feature-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 22px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    text-align: left;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
    stroke: #ffffff;
    stroke-width: 1;
}

/* ================================
   OFERTA
================================ */

.oferta {
    padding: 60px 20px;
    background: #f5faff;
}

.oferta-grid {
    margin-top: 30px;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
}

.oferta-box {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    border-radius: 14px;
}

.price {
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
    margin-top: 8px;
}


/* ================================
   CO DOSTAJESZ W CENIE – VIDEO
================================ */

.included-video {
    position: relative;
    min-height: 100vh;
    padding: 100px 20px;
    overflow: hidden;
    color: #fff;
}

/* video bg */

.included-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* overlay – jaśniejszy, spokojniejszy */

.included-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 60, 110, 0.35) 0%,
            rgba(0, 40, 80, 0.45) 55%,
            rgba(0, 25, 55, 0.55) 100%
        );
    z-index: 1;
}

/* content */

.included-video-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.included-video h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.included-lead {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* GRID */

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

/* ITEM */

.included-item {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 20px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.22);
    transition: transform .2s ease, box-shadow .2s ease;
}

.included-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 55px rgba(0,0,0,0.35);
}

/* wyróżnienie */

.included-item.highlight {
    border-color: rgba(111,231,255,0.6);
    background: rgba(255,255,255,0.22);
}

/* MOBILE */

@media (max-width: 768px) {
    .included-video {
        padding: 80px 16px;
    }

    .included-video h2 {
        font-size: 32px;
    }

    .included-lead {
        font-size: 16px;
        margin-bottom: 36px;
    }
}



/* ================================
   OPINIE
================================ */

.opinie {
    padding: 90px 20px;
    background: #f2fbff;
    text-align: center;
}

.opinie h2 span {
    color: var(--primary);
}

.opinie-desc {
    max-width: 620px;
    margin: 0 auto 60px;
    color: #5a6b75;
}

/* GRID */

.opinie-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* KARTA */

.opinia-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px 32px;
    text-align: left;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    position: relative;
}

/* CYTAT */

.opinia-card .quote {
    font-size: 48px;
    color: #8fe8ff;
    line-height: 1;
    margin-bottom: 10px;
}

/* GWIAZDKI */

.stars {
    color: #ff5a3c;
    font-size: 18px;
    margin-bottom: 14px;
}

/* TEKST */

.opinia-text {
    font-size: 17px;
    line-height: 1.65;
    color: #4b5b66;
    margin-bottom: 26px;
}

/* STOPKA */

.opinia-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.opinia-footer strong {
    display: block;
    font-size: 15px;
}

.opinia-footer span {
    font-size: 13px;
    color: #7a8a94;
}

/* DATA */

.opinia-date {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f1f5f8;
    color: #5d6c76;
}

@media (max-width: 768px) {
    .opinie-grid {
        grid-template-columns: 1fr;
    }

    .opinia-card {
        padding: 28px 24px;
    }
}



/* ================================
   GALERIA – GRID PREMIUM
================================ */

.galeria {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.galeria h2 span {
    color: var(--primary);
}

.galeria p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.galeria-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
}

/* zdjęcia */

.galeria-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: pointer;
}

/* hover */

.galeria-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* duże kafle – rytm jak w mockupie */

.galeria-grid img:nth-child(1),
.galeria-grid img:nth-child(7),
.galeria-grid img:nth-child(13),
.galeria-grid img:nth-child(19),
.galeria-grid img:nth-child(25) {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 14px;
    }

    .galeria-grid img {
        border-radius: 14px;
    }

    /* na mobile nie robimy wielkich kafli */
    .galeria-grid img {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}


/* ================================
   INCLUDED – CO DOSTAJESZ
================================ */

.included {
    padding: 60px 20px;
    background: #fff;
}

.included-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    margin-top: 25px;
}

.inc {
    background: var(--primary-light);
    color: #fff;
    padding: 18px;
    border-radius: 6px;
    font-size: 18px;
}

/* ================================
   CENNIK – PODWODNY GRADIENT
================================ */

.cennik {
    position: relative;
    padding: 90px 20px;
    text-align: center;

    background:
        radial-gradient(
            800px 500px at 20% 10%,
            rgba(120, 230, 255, 0.35),
            rgba(255, 255, 255, 0) 60%
        ),
        radial-gradient(
            700px 500px at 80% 20%,
            rgba(140, 255, 220, 0.35),
            rgba(255, 255, 255, 0) 60%
        ),
        linear-gradient(
            180deg,
            #f6fdff 0%,
            #eef9ff 45%,
            #f8fcff 100%
        );
}

.cennik-table {
    margin: 0 auto;
    margin-top: 40px;
    width: 100%;
    max-width: 640px;

    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(0, 60, 120, 0.12),
        0 6px 18px rgba(0, 0, 0, 0.06);
}

.cennik-table tr:nth-child(even) {
    background: #f9f9f9;
}

.cennik-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e2e2e2;
    font-size: 18px;
}

.cennik-table td:first-child {
    text-align: left;   /* opis do lewej */
}

.cennik-table td:last-child {
    text-align: right;  /* ceny do prawej */
}

/* ================================
   WIDEO – FULL WIDTH + AUTOPLAY
================================ */

.video-section {
    padding: 60px 0;  /* bez bocznych marginesów */
    background: #fff;
    text-align: center;
}

.video-section h2 {
    margin: 0 20px 20px 20px;
}

.video-wrapper {
    width: 100%;
}

.video {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    display: block;
    margin: 0;
}

/* ================================
   FAQ
================================ */

.faq {
    padding: 60px 20px;
    background: #f5faff;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 18px;
    cursor: pointer;
    border: 1px solid #e2e2e2;
}

.faq-item.open {
    border-left: 4px solid var(--primary);
}

.faq-item h3 {
    margin-bottom: 4px;
    font-size: 22px;
}

/* domyślnie chowamy odpowiedzi, pokazana tylko w .open */

.faq-item p {
    display: none;
    margin-top: 8px;
}

.faq-item.open p {
    display: block;
}

.faq-item {
    transition: box-shadow .25s ease;
}

.faq-item.open {
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}


/* ================================
   FORMULARZ REZERWACJI
================================ */

.rezerwacja {
    padding: 60px 20px;
    background: #fff;
}

.rezerwacja h2 {
    text-align: left;
    max-width: 720px;
    margin: 0 auto 10px auto;
}

.rezerwacja form {
    max-width: 720px;
    margin: 20px auto 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.form-row > div {
    flex: 1 1 0;
}

label {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

/* inputy, textarea */

input,
textarea,
select {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    margin: 4px 0 10px 0;
    border: 1px solid var(--input-border-color);
    background: var(--input-background-color);
    border-radius: 4px;
    color: var(--input-text-color);
}

textarea {
    min-height: 100px;
}

/* checkbox */

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 10px 0 20px 0;  /* odstęp przed przyciskiem */
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-container label {
    margin: 0;
    font-size: 14px;
}


form {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
}

.btn-primary {
    background: linear-gradient(to right, #ff6a3d, #ff865b);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(to right, #ff865b, #ff6a3d);
}

button {
    border: none;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background: var(--secondary);
}

/* ================================
   KONTAKT
================================ */

.kontakt {
    text-align: center;
    padding: 90px 20px 100px;
    background:
        radial-gradient(
            700px 400px at 15% 10%,
            rgba(120, 230, 255, 0.25),
            rgba(255,255,255,0) 60%
        ),
        radial-gradient(
            600px 400px at 85% 20%,
            rgba(140, 255, 220, 0.25),
            rgba(255,255,255,0) 60%
        ),
        linear-gradient(
            180deg,
            #f8fdff 0%,
            #eef8ff 50%,
            #ffffff 100%
        );
}

.kontakt .section-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(100, 210, 255, 0.2);
    color: #0077aa;
    font-size: 13px;
    font-weight: 600;
}

.kontakt h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.kontakt h2 span {
    color: var(--primary);
}

.kontakt > p {
    max-width: 680px;
    margin: 0 auto 50px;
   margin-bottom: 60px;
    font-size: 18px;
    color: #555;
}

.kontakt h2,
.kontakt > p,
.kontakt .section-label {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ===== GRID ===== */

.kontakt-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* ===== INFO ===== */

.kontakt-info {
    display: grid;
    gap: 22px;
}

.kontakt-box {
    background: rgba(255,255,255,0.9);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow:
        0 10px 30px rgba(0, 60, 120, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04);
}

.kontakt-box strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #111;
}

.kontakt-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* ===== FORMULARZ ===== */

.kontakt-form form {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px;
    box-shadow:
        0 20px 50px rgba(0, 60, 120, 0.12),
        0 6px 18px rgba(0, 0, 0, 0.06);
}

.kontakt-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.kontakt-form input,
.kontakt-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #dbe8f2;
    background: #f5fbff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}

.kontakt-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== BUTTON ===== */

.kontakt-form .btn-primary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6a3d, #ff865b);
    color: #fff;
    border: none;
    cursor: pointer;
}

.kontakt-form .btn-primary:hover {
    opacity: 0.9;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {
    .kontakt-grid {
        grid-template-columns: 1fr;
    }

    .kontakt h2 {
        font-size: 30px;
    }

    .kontakt-form form {
        padding: 26px;
    }
}



/* ================================
   DOJAZD
================================ */

.dojazd {
    padding: 60px 20px;
    background: #f5faff;
    text-align: center;
}

.dojazd > p {
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.map-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* ================================
   FOOTER
================================ */

.footer {
    background: #f9f9f9;
    padding: 40px 20px 20px 20px;
    text-align: center;
}

.footer .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo2 img {
    width: 120px;
}

.copyright {
    font-size: 12px;
    margin-top: 10px;
    color: #444;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .logo {
        margin-right: auto;
    }

    .hero-content h1 { 
        font-size: 34px; 
    }

    .hero-content p { 
        font-size: 18px; 
    }

    .btn-hero { 
        font-size: 18px; 
    }

    .feature-box {
        text-align: left;
    }

    /* ===== HEADER ===== */

    .header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        z-index: 1200;
    }

    /* ===== MENU MOBILE (GLASS) ===== */

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 80px);

        display: flex;             
        flex-direction: column;

        visibility: hidden;         
        pointer-events: none;

        z-index: 1300;
    }

    .side-menu:checked ~ .nav {
        visibility: visible;
        pointer-events: auto;
    }

    /* ===== LISTA MENU ===== */

    .menu {
        height: 100%;
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 22px;
    }

    .menu li {
        background: transparent;
    }

    .menu li a {
        font-size: 20px;
        color: #fff;
        padding: 12px 0;
        background: transparent;
    }

    /* ===== BUTTON REZERWACJA ===== */

    .menu li.rezerwacja {
        background: transparent;
    }

    .menu li.rezerwacja a {
        background: linear-gradient(to top, #0a3d91, #3fa9f5);
        color: #fff;
        border-radius: 999px;
        padding: 14px 30px;
    }

    /* ===== WHY  ===== */

    .whyhurghada {
        padding: 80px 16px;
    }

    .whyhurghada h2 {
        font-size: 34px;
    }

    .whyhurghada-lead {
        font-size: 16px;
        margin-bottom: 26px;
    }

    .whyhurghada-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-card {
        min-height: auto;
    }

}


/* ===== POLICY ===== */

.policy {
    padding: 40px 0;
}

.policy .container {
    width: 100%;
    max-width: 1100px; /* tak jak środkowe sekcje */
    margin: 0 auto;
    padding: 0 20px; /* boczne marginesy na mobile */
}

.policy h1, 
.policy h2, 
.policy p {
    max-width: 900px;
}

/* ================================
   BLOKADA ZAZNACZANIA MENU (MOBILE)
================================ */

.menu,
.menu * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

.menu li.rezerwacja a,
.menu li.rezerwacja a:focus,
.menu li.rezerwacja a:active {
    outline: none !important;
    box-shadow: none !important;
}

.menu a {
    -webkit-touch-callout: none;
}
