:root {
    --primary-color: #e84e0f; /* Hogsback Orange */
    --text-light: #f4f4f4;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ---------------------------------- */
/* Global Resets & Body Styles        */
/* ---------------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    /* Use variables for modern consistency */
    font-family: var(--font-body); 
    background-color: #000;
    color: var(--text-light);
    overflow: hidden; /* Required for the full-screen Swiper */
}

/* Hiding redundant elements */
.dfBDQI {
    opacity: 0;
    display: none;
}

/* ---------------------------------- */
/* Header & Navigation                */
/* ---------------------------------- */

.header-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    /* Removed justify-content: space-between (as requested, logo is centered, social is bottom) */
    justify-content: center; 
    align-items: center;
    padding: 15px 5%;
    z-index: 20;
    /* Use a linear gradient to match modern overlay style */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)); 
}

/* The .png-logo (The image within the header-navigation) */
.png-logo {
    height: 180px; /* Modern, sensible height */
    width: auto;
    /* Removed conflicting/redundant logo styles from the second block */
}

/* The old .logo selector is removed as it was for a large, centered div and clashed with the modern design. */

/* ---------------------------------- */
/* Social Icons (New Bottom Center Position) */
/* ---------------------------------- */

.icons {
    display: flex;
    position: fixed;
    bottom: 80px; /* Positioned just above the footer bar (15px padding + 15px bottom bar) */
    left: 50%;
    transform: translateX(-50%); /* Center the block horizontally */
    z-index: 15;
    width: 250px; /* Fixed width for consistent spacing */
    justify-content: space-around;
    /* The duplicate and conflicting position rules are removed */
}

a {
    text-decoration: none;
}
.icons a {
    color: var(--text-light);
    font-size: 2.2rem; /* Larger size as requested */
    transition: color 0.3s, transform 0.3s;
    /* Removed conflicting/redundant margin-left */
}

.icons a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ---------------------------------- */
/* Footer (Bottom Bar)                */
/* ---------------------------------- */

.footer-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10;
    font-family: var(--font-body);
    /* Removed the conflicting z-index: 999 and left: 15px/bottom: 15px rules */
}

.footer-container a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
    font-size: 0.9em;
}

.footer-container a:hover {
    color: var(--primary-color);
}

/* ---------------------------------- */
/* Swiper/Slide Styling               */
/* ---------------------------------- */

.swiper {
    width: 100vw;
    height: 100vh;
    /* Combined conflicting rules: width: 100%, height: 100vh, position: absolute !important, top: 0px */
}

.swiper-slide {
    /* Combined conflicting rules for layout, padding, background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-size: cover;
    background-position: center;
    padding: 40px 5%; 
    box-sizing: border-box;
    /* Removed conflicting background colors and font-size: 18px */
}

/* Overlay for text readability */
.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Content positioning */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Typography */
h2 {
    font-family: var(--font-heading);
    /* Combined conflicting font-size, line-height, margin */
    font-size: 4.2em;
    line-height: 0.9;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-light); /* Ensure h2 is white */
}
.lighter {
    font-weight: 400;
    display: block;
    /* Combined conflicting rules */
    color: rgba(255, 255, 255, 0.7); 
}

h3 {
    /* Combined conflicting rules */
    font-size: 1.8em;
    font-weight: 600;
    max-width: 500px;
    margin-bottom: 25px;
    color: var(--text-light); /* Ensure h4 is white */
    text-shadow: 1px 1px rgb(0 0 0 / 80%);
    line-height: 1.2;
}

h4 {
    /* Combined conflicting rules */
    font-size: 1.2em;
    font-weight: 400;
    max-width: 500px;
    margin-bottom: 25px;
    color: var(--text-light); /* Ensure h4 is white */
    text-shadow: 1px 1px rgb(0 0 0 / 80%);
    line-height: 1.2;
}

/* Book Now Button (CTA) */
.buy-now-btn {
    /* Combined/simplified all conflicting buy-now-btn rules */
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1em;
    text-transform: uppercase;
    border-radius: 8px; /* Used the sharper 8px from the old block */
    transition: background-color 0.3s;
    width: auto; /* Remove fixed 250px width */
    cursor: pointer;
    margin-top: 15px;
}
.buy-now-btn:hover {
    background-color: #c94008;
}

/* Swiper Pagination */
.swiper-pagination {
    right: 30px !important;
    display: flex;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
    width: auto !important;
    left: auto !important;
}
.swiper-pagination-bullet {
    /* Combined conflicting bullet rules */
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    margin: 4px 0 !important;
    transition: all 0.3s;
    border-radius: 50%; /* Ensure standard round bullet */
}
.swiper-pagination-bullet-active {
    /* Combined conflicting active bullet rules */
    background: var(--primary-color);
    width: 10px;
    height: 25px;
    border-radius: 5px;
}

/* ---------------------------------- */
/* Indemnity Form Styles (Retained for other pages) */
/* ---------------------------------- */

/* Retained indemnity form styling classes (assuming they are used on other pages like terms.html) */
#container { background-color: #999999; }
#indemnity {
    float: left;
    font-family: sans-serif;
    font-weight: lighter;
    font-size: 14px;
    line-height: 18px;
    width: 70%;
    padding: 2%;
    height: 100%;
    text-align: justify;
    background-color: #FFFFFF;
}
li { margin-bottom: 15px; }
#indemnity h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    text-align: center;
}
/* Removed tag selectors (firstname, lastname, etc.) as they are non-standard/invalid HTML */
.tab {
    width: 140px;
    display: inline-block;
}
#form {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #CCCCCC;
    width: 30%;
    padding: 2%;
    float: right;
    text-align: left;
}
#form input, select {
    width: 100%;
    padding: 12px;
    border-style: solid;
    border-color: #333333;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 18px;
}
input[type=checkbox] {
    -ms-transform: scale(3);
    -moz-transform: scale(3);
    -webkit-transform: scale(3);
    -o-transform: scale(3);
    transform: scale(3);
    padding: 10px;
    margin-left: 10px;
    margin-right: 20px;
}
.checkboxtext {
    font-size: 110%;
    display: inline;
}
button {
    background-color: #e84e0e;
    padding: 12px;
    border-style: none;
    border-width: 1px;
    border-color: #eeeeee;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 15px;
    width: 250px;
    cursor: pointer;
}
button:disabled { background-color: #dddddd; cursor: default; }
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
ol {
    list-style-position: inside;
    padding-left: 2%;
    padding-right: 2%;
}
a .link { color: #FFFFFF; }
.error, .warn { color: #bf1313; }
.valid { color: #15730e; }
.input_error, .input_warn {
    background-color: #FFFFFF;
    color: #bf1313;
}
.input_valid {
    background-color: #FFFFFF;
    color: #15730e;
}

/* ---------------------------------- */
/* Responsive Overrides               */
/* ---------------------------------- */

@media print {
    .no-print, .no-print * { display: none !important; }
    #indemnity {
        font-size: 13px;
        line-height: 15px;
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    
    /* Header & Icons */
    .header-navigation {
        padding: 10px 5%;
        /* justify-content: space-between is removed from base, so the logo will stay centered on mobile */
    }
    .icons {
        bottom: 70px;
        width: 150px;
    }
    .icons a {
        font-size: 1.8rem;
    }
    
    /* Swiper */
    .swiper-slide {
        /* Combined conflicting mobile padding rules */
        padding: 10vh 50px 50px 50px;
    }
    .swiper-pagination {
        /* Pagination to bottom */
        flex-direction: row;
        bottom: 65px !important;
        top: auto !important;
        left: 50% !important;
        transform: translateX(-50%);
        right: auto !important;
    }
    .swiper-pagination-bullet-active {
        /* Horizontal stretch on active for bottom placement */
        height: 10px;
        width: 25px; 
    }
    
    /* Indemnity Form Mobile Overrides */
    #container { background-color: #FFFFFF; padding: 2%; }
    #indemnity {
        float: none;
        font-family: sans-serif;
        font-weight: normal;
        font-size: 14px;
        line-height: 18px;
        width: 100%;
        text-align: justify;
        background-color: #FFFFFF;
    }
    #form {
        position: relative;
        background-color: #FFFFFF;
        width: 100%;
        float: none;
    }
    /* Removed conflicting mobile logo sizing */
}

.floating-whatsapp-btn {
    position: fixed;
    bottom: 65px; /* Above the footer bar */
    right: 25px;
    z-index: 100; /* Must be high */
    
    /* Styling */
    background-color: #25d366; /* Standard WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    
    /* Centering the icon */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    
    /* Shadow and Hover effects */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out, background-color 0.3s;
}

.floating-whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
}