/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, rgba(5, 25, 35, 0.88), rgba(2, 35, 45, 0.92)), 
                url('../images/BG/Bg') center/cover no-repeat fixed;
    background-blend-mode: overlay;
    color: #eef4ff;
    line-height: 1.6;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a2e38; }
::-webkit-scrollbar-thumb {
    background: #2c9c7c;
    border-radius: 30px;
}



/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 25, 32, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(44, 156, 124, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    flex-wrap: wrap;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #aef5df;
}

/* NAV LINKS */
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    color: #d9f7ef;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 0%;
    background: #2c9c7c;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px 100px;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.hero-content h3 {
    font-size: 1.5rem;
    color: #9be8d1;
    margin: 10px 0;
}

.hero-content p {
    max-width: 650px;
    margin: 12px auto;
    color: #d4f5ec;
}

/* BUTTONS */
.btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 26px;
    border-radius: 30px;
    background: linear-gradient(90deg, #1f6e5c, #2c9c7c);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg, #289f84, #38cba2);
}

/* SECTIONS */
section {
    padding: 80px 20px;
}

/* SECTION TITLES */
section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #bdf7e6;
    position: relative;
}

section h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #2c9c7c;
    display: block;
    margin: 10px auto 0;
}

/* ABOUT */
.about-text {
    background: rgba(15, 45, 52, 0.6);
    padding: 25px;
    border-radius: 20px;
    border-left: 4px solid #2c9c7c;
}

.about-image img {
    max-width: 400px;
    border-radius: 20px;
    margin: 30px auto;
    display: block;
}

/* ABOUT GRID */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.about-grid div {
    background: rgba(20, 55, 60, 0.7);
    padding: 25px;
    border-radius: 20px;
    transition: 0.3s;
}

.about-grid div:hover {
    transform: translateY(-5px);
    background: rgba(30, 70, 75, 0.9);
}

/* GRID (services/products) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARDS */
.card {
    background: rgba(12, 40, 46, 0.75);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    background: rgba(20, 60, 66, 0.9);
}

/* CARD IMAGE */
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* ORDER SECTION */
#order {
    text-align: center;
}

#order form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto;
}

#order input {
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

#order input::placeholder {
    color: #cdeee6;
}

#order button {
    margin-top: 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px 15px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid #2c9c7c;
}

