/* ================================
   GLOBAL STYLES
================================ */
:root {
    --primary: #ff9800;
    --secondary: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark: #222;
    --gradient: linear-gradient(135deg, #ff9800, #ff5722);
}

html, body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

/* ================================
   TYPOGRAPHY
================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.6rem;
    margin-top: 40px;
}

h3 {
    font-size: 1.25rem;
    margin-top: 30px;
}

p {
    margin-bottom: 15px;
    color: #555;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: #e68900;
    text-decoration: underline;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* ================================
   NAVBAR
================================ */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.bg-transparent {
    background: rgba(0, 0, 0, 0.6) !important;
}

.navbar-brand h5 {
    margin: 0;
    font-weight: 700;
}

.navbar-nav .nav-link,
.navbar-nav a {
    color: #fff !important;
    font-weight: 500;
    margin-left: 15px;
}

.navbar-nav a:hover {
    color: var(--primary) !important;
}

/* ================================
   HERO SECTION
================================ */
.ptb-100 {
    padding: 100px 0;
}

.bg-image {
    position: relative;
    background-size: cover;
    background-position: center;
}

.background-image-wraper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-slider-content {
    position: relative;
    z-index: 3;
}

.hero-slider-content h1 {
    font-size: 2.8rem;
}

.hero-slider-content p {
    font-size: 1.1rem;
    color: #eee;
}

/* ================================
   BUTTONS
================================ */
.btn {
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-brand-02 {
    background: var(--gradient);
    color: #fff;
    border: none;
}

.btn-brand-02:hover {
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: #fff;
    transform: translateY(-2px);
}

/* ================================
   PRIVACY CONTENT SECTION
================================ */
.section-heading {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.section-heading p {
    font-size: 15px;
}

.section-heading ul li strong {
    color: #000;
}

/* ================================
   CONTACT FORM
================================ */
.gray-light-bg {
    background: var(--light);
}

.contact-us-form {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

/* ================================
   FOOTER
================================ */
.footer-1 {
    background: #111;
    color: #ccc;
}

.footer-1 h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-1 ul {
    list-style: none;
    padding: 0;
}

.footer-1 ul li a {
    color: #bbb;
    display: block;
    padding: 5px 0;
}

.footer-1 ul li a:hover {
    color: var(--primary);
}

.footer-with-newsletter .newsletter-wrap {
    background: var(--gradient);
}

.newsletter-form input {
    border-radius: 50px;
    padding: 12px 20px;
    border: none;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 50%;
    background: #fff;
    border: none;
    width: 45px;
}

/* ================================
   FOOTER BOTTOM
================================ */
.footer-bottom {
    background: #f1f1f1;
}

.footer-bottom a {
    color: #555;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* ================================
   SCROLL TO TOP
================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
}

.scroll-top:hover {
    background: #e68900;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero-slider-content h1 {
        font-size: 2rem;
    }

    .section-heading {
        padding: 30px 20px;
    }

    .navbar {
        background: #000 !important;
    }
}
