/* 
 * Suyansh Properties - Main Stylesheet
 * A Modern Real Estate Website
 */

/* =============================================
   CSS Variables - Professional Real Estate Theme
============================================= */
:root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --primary-light: #3d8bfd;
    --secondary: #6c757d;
    --accent: #d4af37;
    --accent-dark: #b8972e;
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #0dcaf0;
    --dark: #212529;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   Typography
============================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* =============================================
   Navbar
============================================= */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary) !important;
}

.navbar-brand img {
    max-height: 45px;
}

.navbar .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary);
}

.navbar .btn-primary {
    padding: 0.5rem 1.5rem;
}

/* Mobile menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }
}

/* =============================================
   Hero Section
============================================= */
.hero-section {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 32, 96, 0.6) 0%, rgba(0, 48, 135, 0.4) 100%);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.35rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.min-vh-75 {
    min-height: 75vh;
}

/* Hero Search */
.hero-search {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    margin-top: 2rem;
}

.hero-search .form-control,
.hero-search .form-select {
    border: 1px solid var(--gray-200);
    padding: 0.875rem 1rem;
    font-size: 1rem;
}

.hero-search .btn {
    padding: 0.875rem 2rem;
}

/* =============================================
   Stats Section
============================================= */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 32, 96, 0.85) 0%, rgba(0, 48, 135, 0.75) 100%);
    z-index: 1;
}

.stats-section .container {
    z-index: 2;
    position: relative;
}

.stat-item h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.85);
}

/* =============================================
   CTA Section
============================================= */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 32, 96, 0.85) 0%, rgba(0, 48, 135, 0.75) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* =============================================
   Property Cards
============================================= */
.property-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.property-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.property-card:hover .card-img-top {
    transform: scale(1.05);
}

.property-card .badge-status {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.property-card .badge-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 0.75rem;
}

.property-card .property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.property-card .property-location {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.property-card .property-features {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 1rem;
}

.property-card .property-features span {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.property-card .property-features i {
    color: var(--primary);
}

/* =============================================
   Blog Cards
============================================= */
.blog-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.blog-card:hover .card-img-top {
    transform: scale(1.05);
}

.blog-card .badge-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.blog-card .card-title {
    font-size: 1.125rem;
    line-height: 1.4;
}

.blog-card .card-title a {
    color: var(--gray-900);
}

.blog-card .card-title a:hover {
    color: var(--primary);
}

/* =============================================
   Sections
============================================= */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-lg {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.bg-light-subtle {
    background-color: var(--gray-100);
}

/* =============================================
   Stats Section
============================================= */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: var(--gray-600);
    font-size: 1rem;
}

/* =============================================
   Feature Section
============================================= */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card .feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* =============================================
   Team Section
============================================= */
.team-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-card .team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--gray-200);
}

.team-card h5 {
    margin-bottom: 0.25rem;
}

.team-card .team-designation {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card .team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.team-card .team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.team-card .team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* =============================================
   Property Detail Page
============================================= */
.property-detail-gallery {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.property-detail-gallery .main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.property-detail-gallery .gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.property-detail-gallery .gallery-thumb {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.property-detail-gallery .gallery-thumb:hover,
.property-detail-gallery .gallery-thumb.active {
    opacity: 1;
}

.property-detail-info .property-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.property-detail-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.property-detail-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-detail-features .feature i {
    color: var(--primary);
    font-size: 1.25rem;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.amenities-list .amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.amenities-list .amenity-item i {
    color: var(--success);
}

/* =============================================
   Contact Form
============================================= */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info-card {
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    height: 100%;
}

.contact-info-card h4 {
    color: var(--white);
}

.contact-info-card .contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-card .contact-item i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.contact-info-card .contact-item a {
    color: var(--white);
}

/* =============================================
   Page Header with Background
============================================= */
.page-header {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 32, 96, 0.65) 0%, rgba(0, 48, 135, 0.5) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255,255,255,0.5);
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: var(--white);
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 80px 0 40px;
        min-height: 200px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* =============================================
   Footer
============================================= */
.footer {
    background: linear-gradient(180deg, #1a202c 0%, #0f172a 100%);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer h5,
.footer h6 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.75rem;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--white);
    padding-left: 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 60px;
}

/* =============================================
   Buttons
============================================= */
.btn {
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.875rem;
}

/* =============================================
   Forms
============================================= */
.form-control,
.form-select {
    border-radius: var(--radius);
    border: 1px solid var(--gray-300);
    padding: 0.625rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* =============================================
   Pagination
============================================= */
.pagination {
    gap: 0.25rem;
}

.pagination .page-link {
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    padding: 0.5rem 0.875rem;
}

.pagination .page-link:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
    color: var(--gray-900);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

/* =============================================
   Cards
============================================= */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.card-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
}

.card-body {
    padding: 1.5rem;
}

/* =============================================
   Badges
============================================= */
.badge {
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
}

/* =============================================
   WhatsApp Button
============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128c7e;
    color: white;
    transform: scale(1.1);
}

/* =============================================
   Back to Top
============================================= */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: white;
}

/* =============================================
   Property Filters
============================================= */
.property-filters {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

/* =============================================
   Blog Sidebar
============================================= */
.sidebar-widget {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.sidebar-widget h5 {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

.sidebar-widget .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget .category-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-widget .category-list li:last-child {
    border-bottom: none;
}

.sidebar-widget .category-list a {
    color: var(--gray-700);
    display: flex;
    justify-content: space-between;
}

.sidebar-widget .category-list a:hover {
    color: var(--primary);
}

/* =============================================
   Responsive Adjustments
============================================= */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .hero-search {
        padding: 1.25rem;
    }
    
    .min-vh-75 {
        min-height: 85vh;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .property-detail-gallery .main-image {
        height: 300px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .footer {
        padding-top: 60px;
    }
    
    .whatsapp-float,
    .back-to-top {
        right: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 80px;
        width: 40px;
        height: 40px;
    }
}

/* =============================================
   Utilities
============================================= */
.text-primary { color: var(--primary) !important; }
.bg-primary-subtle { background-color: rgba(37, 99, 235, 0.1) !important; }

.fw-semibold { font-weight: 600; }

.object-cover { object-fit: cover; }

.hover-shadow:hover {
    box-shadow: var(--shadow-lg);
}

.transition { transition: var(--transition); }

/* Line Clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }
}
 
