@import url('/assets/fonts/inter.css');

:root {
    --primary: #CF6241;
    --primary-dark: #b84e2f;
    --secondary: #ff6600;
    --accent: #FFD700;
    --dark: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #f1f5f9;
    --border: #e2e8f0;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    color: #cbd5e1;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.top-bar i {
    color: var(--accent);
    margin-right: 6px;
}

.top-bar span {
    display: inline-flex;
    align-items: center;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    height: 72px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar-brand {
    font-weight: 800;
    font-size: 24px;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 42px;
    width: auto;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
}

.navbar-nav > li {
    position: relative;
}

.navbar-nav > li > a {
    color: var(--text) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    color: var(--primary) !important;
    background: rgba(207, 98, 65, 0.06);
}

.navbar-nav > li.active > a {
    color: var(--primary) !important;
    background: rgba(207, 98, 65, 0.08);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    border: none;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
    margin-left: 6px;
    transition: all 0.3s ease;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(-135deg);
    border-color: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    margin-top: 0;
    background: #fff;
    min-width: 260px;
    z-index: 1001;
    max-height: 380px;
    overflow-y: scroll;
}

.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(207, 98, 65, 0.06);
    color: var(--primary);
    padding-left: 24px;
}

/* Mobile nav toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    z-index: 1001;
}

.navbar-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO / SLIDER ===== */
.intro {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.intro-content {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.intro-content .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.55) 0%, rgba(15,23,42,0.75) 100%);
    z-index: 1;
}

.intro-content .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-content .btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-content .btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(207, 98, 65, 0.35);
}

/* ===== SECTIONS ===== */
.section {
    padding: 10px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-label {
    display: inline-block;
    background: rgba(207, 98, 65, 0.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-light {
    background: var(--bg-light);
}

.section-dark {
    background: var(--dark);
    color: #fff;
}

.section-dark .section-header h2 {
    color: #fff;
}

.section-dark .section-header p {
    color: #94a3b8;
}

/* ===== ABOUT / INTRO SECTION ===== */
.intro-section {
    padding: 10px 0;
    background: var(--bg);
}

.intro-section .row {
    align-items: center;
}

.intro-section .row .col-sm-8, .intro-section .row .col-sm-4 {
    align-self: flex-start;
}

.intro-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.intro-section h2 span {
    color: var(--primary);
}

.intro-section p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.intro-stat {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.intro-stat .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.intro-stat .stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.home-sidebar {
    background: var(--bg-light);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.home-sidebar h3 {
    color: var(--dark);
    margin-top: 0;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.home-sidebar .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.home-sidebar .contact-item i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.home-sidebar .contact-item span {
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== SERVICES ===== */
.services-preview {
    padding: 10px 0;
    background: var(--bg-light);
}

.services-preview .section-header h2 {
    font-size: 40px;
}

.service-card {
    background: #fff;
    padding: 0;
    margin-bottom: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 28px 0;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

.service-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    margin: 0 0 12px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}

.service-card h3 a {
    color: var(--dark);
    text-decoration: none;
}

.service-card h3 a:hover {
    color: var(--primary);
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
    text-decoration: none;
}

.service-card .card-link:hover {
    gap: 10px;
    color: var(--secondary);
}

/* ===== SERVICES CAROUSEL ===== */
.services-carousel-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 0 20px;
}

.services-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    scroll-snap-align: start;
}

.service-slide .service-card {
    height: 100%;
    margin: 0;
}

.category-card {
    background: #fff;
    padding: 0;
    margin-bottom: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.category-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--dark);
}

.category-card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.category-card-body h3 a:hover {
    color: var(--primary);
}

.category-card-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
}

.category-card .card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.category-card .card-link:hover {
    color: var(--secondary);
    gap: 12px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.carousel-prev,
.carousel-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(207, 98, 65, 0.3);
}

@media (max-width: 991px) {
    .service-slide {
        flex: 0 0 calc(50% - 12px);
        min-width: 280px;
    }
}

@media (max-width: 767px) {
    .service-slide {
        flex: 0 0 calc(100% - 24px);
        min-width: 260px;
    }

    .services-carousel-wrapper {
        padding: 0 10px;
    }
}

/* ===== DISCOVER CAROUSEL ===== */
.discover-carousel-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 0 20px;
}

.discover-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.discover-carousel::-webkit-scrollbar {
    display: none;
}

.discover-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    scroll-snap-align: start;
}

.discover-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.discover-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.discover-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.discover-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}

.discover-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.discover-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--dark);
}

.discover-card-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.discover-card-content .btn {
    margin-top: 16px;
    align-self: flex-start;
}

@media (max-width: 991px) {
    .discover-slide {
        flex: 0 0 calc(50% - 12px);
        min-width: 280px;
    }
}

@media (max-width: 767px) {
    .discover-slide {
        flex: 0 0 calc(100% - 24px);
        min-width: 260px;
    }

    .discover-carousel-wrapper {
        padding: 0 10px;
    }
}

/* ===== NEWS / BLOG ===== */
.news-preview {
    padding: 10px 0;
    background: var(--bg);
}

.news-preview .section-header h2 {
    font-size: 40px;
}

.post-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.post-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-image .post-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.post-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card-body h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.4;
}

.post-card-body h4 a {
    color: var(--dark);
    text-decoration: none;
}

.post-card-body h4 a:hover {
    color: var(--primary);
}

.post-card-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
    text-decoration: none;
}

.read-more:hover {
    gap: 10px;
    color: var(--secondary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: #fff;
    color: var(--primary);
    border: 2px solid #fff;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-section .btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
    padding: 20px 0;
    background: var(--bg-light);
}

.contact-form-section .section-header h2 {
    font-size: 40px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(207, 98, 65, 0.08);
    outline: none;
}

.contact-form button[type="submit"] {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form button[type="submit"]:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(207, 98, 65, 0.3);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.contact-info-item i {
    color: var(--primary);
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.contact-info-item span {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    display: block;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: #94a3b8;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

footer ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

footer ul li a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 3px;
    width: 18px;
    text-align: center;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.copyright strong {
    color: #fff;
}

.copyright a {
    color: var(--primary);
    font-weight: 600;
}

/* ===== FLASH MESSAGES ===== */
.flash-message {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 400px;
    max-width: 90%;
    border-radius: var(--radius-sm);
    border: none;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(207, 98, 65, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border);
        display: none;
    }

    .navbar-toggler {
        display: flex;
    }

    .navbar-collapse.show .navbar-nav {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        padding-left: 16px;
        display: none;
        width: 100%;
    }

    .dropdown-menu.show {
        display: block;
    }

    .navbar-nav > li > a {
        padding: 12px 16px !important;
        width: 100%;
    }

    .intro-content {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .intro-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .flash-message {
        min-width: auto;
        width: 90%;
        left: 5%;
        transform: none;
    }

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

@media (max-width: 767px) {
    .service-slide {
        flex: 0 0 calc(100% - 24px);
        min-width: 260px;
    }

    .services-carousel-wrapper {
        padding: 0 10px;
    }

    .discover-slide {
        flex: 0 0 calc(100% - 24px);
        min-width: 260px;
    }

    .discover-carousel-wrapper {
        padding: 0 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }
}
