/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: #f8f9fa;
    font-size: 16px;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Allow selection for input fields */
input, textarea {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

/* Disable image dragging */
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* ========== HEADER / NAVIGATION ========== */
.navbar {
    background: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2d3436;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    color: #2d3436;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: #ff6b6b;
}

.nav-menu .active a {
    color: #ff6b6b;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    min-width: 220px;
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border: 1px solid #eee;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #2d3436;
}

.dropdown-menu a:hover {
    background: #ff6b6b;
    color: white;
}

.dropdown > a::after {
    content: " ▼";
    font-size: 10px;
}

.cta-btn a {
    background: #ff6b6b;
    color: white !important;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
}

.cta-btn a:hover {
    background: #ff4757;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #2d3436;
    cursor: pointer;
}

/* ========== HERO SECTION (Common) ========== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: #ff6b6b;
    color: white;
    padding: 12px 35px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #ff4757;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: #ff6b6b;
    padding: 12px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ========== SECTIONS ========== */
.section {
    padding: 60px 0;
}

.bg-light {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2d3436;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ========== CTA BOX ========== */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 50px;
    text-align: center;
    border-radius: 20px;
}

.cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.95;
    font-size: 1rem;
}

/* ========== FOOTER ========== */
.footer {
    background: #2d3436;
    color: #fff;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer a:hover {
    color: #ff6b6b;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ========== RESPONSIVE (Common) ========== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 20px;
        position: absolute;
        top: 75px;
        left: 0;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        display: flex;
    }
    .navbar .container {
        flex-wrap: wrap;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .cta-box {
        padding: 30px 20px;
    }
    .cta-box h2 {
        font-size: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}