/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff8c42;
    --secondary: #ffa500;
    --accent: #ffb366;
    --cyan: #ff9955;
    --dark: #2d2d2d;
    --light: #ffffff;
    --text: #2d2d2d;
    --text-dim: rgba(45, 45, 45, 0.7);
    --bg-light: #fafafa;
    --orange-light: #fff5ed;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #fff5ed 50%, #fafafa 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 18px;
}

/* ===== Icons ===== */
i, .icon, [class*="fa-"] {
    font-size: 1.5rem;
}

.icon-lg {
    font-size: 2rem;
}

.icon-xl {
    font-size: 2.5rem;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 {
    font-size: 3rem;
    color: var(--text);
}

h2 {
    font-size: 2.5rem;
    color: var(--text);
}

h3 {
    font-size: 2rem;
    color: var(--text);
}

p, span, div {
    color: var(--text);
}
/* ===== Navigation ===== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 8px;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: 0.03em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: #111827;
}

.nav-cta {
    background: #f97316;
    padding: 0.5rem 1.1rem !important;
    border-radius: 8px;
    color: #fff !important;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: #ea6c0a;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 140, 66, 0.1);
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(255, 140, 66, 0.2);
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ===== Form Elements ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: white;
    border: 2px solid rgba(255, 140, 66, 0.3);
    border-radius: 12px;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.form-control::placeholder {
    color: rgba(45, 45, 45, 0.4);
}

.form-control.error {
    border-color: #ef4444;
}

.field-error {
    display: block;
    color: #dc2626;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-dim);
}

.link-text {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.link-text:hover {
    text-decoration: underline;
}

/* ===== Messages/Alerts ===== */
.messages-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.alert {
    background: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 140, 66, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.alert-success {
    border-left: 4px solid #10b981;
}

.alert-error {
    border-left: 4px solid #ef4444;
}

.alert-warning {
    border-left: 4px solid #f59e0b;
}

.alert-info {
    border-left: 4px solid #3b82f6;
}

.alert-close {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* ===== Cards ===== */
.card {
    background: white;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 140, 66, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.2);
    border-color: rgba(255, 140, 66, 0.4);
}

/* ===== Footer ===== */
.footer {
    background: rgba(255, 245, 237, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 140, 66, 0.2);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.footer-text {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid rgba(255, 140, 66, 0.3);
    border-radius: 50%;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    transform: translateY(-3px);
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: var(--text);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 140, 66, 0.2);
    color: var(--text-dim);
}

.footer-legal {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: -100px;
    left: -100px;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    bottom: -80px;
    right: -80px;
    animation: float 20s infinite ease-in-out;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--cyan), var(--primary));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 18s infinite ease-in-out;
    animation-delay: -10s;
}

/* ===== Animations ===== */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(40px, 10px) scale(1.05);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 140, 66, 0.2);
        padding: 2rem;
        gap: 1rem;
        border-top: 2px solid rgba(255, 140, 66, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-text {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .card {
        padding: 1.5rem;
    }
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===== New Footer (ht-footer) ===== */
.ht-footer {
    background: #111827;
    padding: 4rem 1.5rem 0;
}
.ht-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.ht-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.ht-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    margin-bottom: 1rem;
}
.ht-footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}
.ht-footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.ht-footer-tagline {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}
.ht-footer-socials {
    display: flex;
    gap: 0.6rem;
}
.ht-footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s, color 0.2s;
}
.ht-footer-socials a i {
    font-size: 0.85rem;
}
.ht-footer-socials a:hover {
    background: #e8713a;
    color: #fff;
}
.ht-footer-col {}
.ht-footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}
.ht-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ht-footer-links li {
    margin-bottom: 0.65rem;
}
.ht-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.ht-footer-links a:hover {
    color: #fff;
}
.ht-footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.ht-footer-bottom p {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
}
.ht-footer-legal {
    display: flex;
    gap: 1.5rem;
}
.ht-footer-legal a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.ht-footer-legal a:hover {
    color: #fff;
}
@media (max-width: 768px) {
    .ht-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ht-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .ht-footer-legal { justify-content: center; }
}
.mb-3 { margin-bottom: 3rem; }
