/**
 * Interio-Inspired Interior Design Website
 * Accurate recreation of the Interio design
 */

/* Google Fonts - Using similar fonts to Interio */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Interio Color Palette */
    --primary-red: #D54B3D;
    --primary-red-dark: #B83E32;
    --primary-red-light: #E85D4F;
    --teal-dark: #2E4A4F;
    --teal-hero: #3D5A5E;
    --yellow-accent: #F5C518;
    --yellow-dark: #E5B608;
    --purple-gradient-start: #8B2E5C;
    --purple-gradient-end: #5C1E3E;
    --text-dark: #1A1A1A;
    --text-medium: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-white: #FFFFFF;
    --bg-light: #F7F7F7;
    --bg-gray: #F5F5F5;
    --border-color: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--bg-light);
    padding: 8px 0;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: transform 0.3s ease;
}

.top-bar a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* ==================== NAVBAR ==================== */
.navbar {
    padding: 12px 0;
    transition: var(--transition);
    background: var(--bg-white) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    top: 32px;
}

@media (max-width: 991px) {
    .navbar {
        top: 0;
    }
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    top: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark) !important;
    text-decoration: none;
}

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

.navbar-nav {
    gap: 5px;
}

.nav-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-medium) !important;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-dark) !important;
}

.nav-link.active {
    color: var(--text-dark) !important;
}

/* Non-dropdown nav links underline */
.nav-item:not(.dropdown) .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    width: auto;
    height: 3px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-item:not(.dropdown) .nav-link:hover::after,
.nav-item:not(.dropdown) .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown nav links underline using ::before */
.nav-item.dropdown .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    width: auto;
    height: 3px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-item.dropdown .nav-link:hover::before,
.nav-item.dropdown .nav-link.active::before {
    transform: scaleX(1);
}

/* Dropdown hover instead of click */
.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeIn 0.2s ease;
}

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

/* Dropdown styling */
.nav-item.dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item.dropdown .dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--text-medium);
    margin-left: 5px;
    vertical-align: middle;
    border-bottom: none;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown > .dropdown-menu {
    top: 100%;
    left: 0;
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    color: var(--text-medium);
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-red);
}

/* Navbar Icons */
.navbar-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-icons a {
    color: var(--text-medium);
    font-size: 1.2rem;
    transition: var(--transition);
}

.navbar-icons a:hover {
    color: var(--primary-red);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-hero) 100%);
    margin-top: 100px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero {
        margin-top: 70px;
    }
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 74, 79, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 80px 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -1px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-consultation {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    background: var(--primary-red);
    color: white;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.hero .btn-consultation:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(213, 75, 61, 0.4);
}

.hero-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.hero-badge img {
    height: 30px;
}

.hero-badge i {
    font-size: 1.5rem;
}

/* ==================== SECTION STYLING ==================== */
section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

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

/* ==================== ONE-STOP SHOP SECTION ==================== */
.one-stop-section {
    background: var(--bg-white);
    padding: 70px 0;
}

.one-stop-section .section-title h2 {
    font-size: 1.75rem;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.category-card {
    background: var(--bg-light);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-card-content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-card-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.category-card-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 5px 0 0;
}

.category-card .plus-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.category-card:hover .plus-icon {
    background: var(--primary-red);
    color: white;
}

/* ==================== INSPIRATION SECTION ==================== */
.inspiration-section {
    background: var(--bg-white);
    padding: 70px 0;
}

.inspiration-section .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.inspiration-section .section-title h2 {
    font-size: 1.5rem;
}

.inspiration-section .section-title p {
    margin: 0;
    max-width: none;
}

.inspiration-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.inspiration-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.inspiration-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.inspiration-item:hover img {
    transform: scale(1.05);
}

.inspiration-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-choose-section {
    background: var(--bg-light);
    padding: 70px 0;
}

.why-choose-section .section-title h2 {
    font-size: 1.75rem;
}

/* ==================== ESTIMATE SECTION ==================== */
.estimate-section {
    background: var(--bg-white);
    padding: 70px 0;
}

.estimate-section .section-title h2 {
    font-size: 1.5rem;
    font-weight: 500;
}

.estimate-section .section-title h2 span {
    color: var(--primary-red);
    font-weight: 700;
}

.estimate-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.estimate-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.estimate-card:hover {
    box-shadow: var(--shadow-md);
}

.estimate-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.estimate-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.estimate-card-icon i {
    font-size: 2.5rem;
    color: var(--teal-dark);
}

.estimate-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.estimate-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.estimate-card .btn-estimate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    background: var(--primary-red);
    color: white;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.estimate-card .btn-estimate:hover {
    background: var(--primary-red-dark);
}

/* ==================== EXPERIENCE CENTRE SECTION ==================== */
.experience-section {
    background: linear-gradient(135deg, var(--purple-gradient-start) 0%, var(--purple-gradient-end) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=800&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.experience-content {
    position: relative;
    z-index: 2;
    color: white;
}

.experience-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.experience-content h2 span {
    color: var(--yellow-accent);
}

.experience-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.experience-content .btn-experience {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    background: var(--yellow-accent);
    color: var(--text-dark);
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.experience-content .btn-experience:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
    background: var(--bg-white);
    padding: 70px 0;
}

.reviews-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.reviews-section .section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.reviews-section .view-more {
    font-size: 14px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.reviews-section .view-more:hover {
    text-decoration: underline;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background: var(--bg-light);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.review-card:hover {
    transform: translateY(-8px);
}

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

.review-card-image {
    height: 180px;
    overflow: hidden;
}

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

.review-card-content {
    padding: 20px;
}

.review-card-content .rating {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.review-card-content .rating i {
    color: var(--yellow-accent);
    font-size: 14px;
}

.review-card-content p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-card-content .author {
    font-size: 12px;
    color: var(--text-light);
}

/* ==================== Interio HOMES GALLERY SECTION ==================== */
.homes-gallery-section {
    background: var(--bg-light);
    padding: 70px 0;
}

.homes-gallery-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.homes-gallery-section .section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.homes-gallery-section .section-header p {
    font-size: 14px;
    color: var(--text-light);
    margin: 5px 0 0;
}

.homes-gallery-section .btn-view-all {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    background: var(--primary-red);
    color: white;
    border: none;
    text-decoration: none;
    transition: var(--transition);
}

.homes-gallery-section .btn-view-all:hover {
    background: var(--primary-red-dark);
}

.homes-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.homes-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.homes-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.homes-gallery-item:hover img {
    transform: scale(1.08);
}

.homes-gallery-item.large {
    grid-column: span 1;
    grid-row: span 2;
}

.homes-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.homes-gallery-item:hover .homes-gallery-overlay {
    opacity: 1;
}

.homes-gallery-overlay .badge {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 8px;
}

.homes-gallery-overlay h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
    color: white;
}

.homes-gallery-overlay .view-link {
    font-size: 12px;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.homes-gallery-overlay .view-link i {
    transition: transform 0.3s ease;
}

.homes-gallery-item:hover .homes-gallery-overlay .view-link i {
    transform: translateX(5px);
}

/* ==================== PROJECTS SECTION ==================== */
.projects-section {
    background: var(--bg-white);
    padding: 70px 0;
}

.projects-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.projects-section .section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.projects-section .section-header p {
    font-size: 14px;
    color: var(--text-light);
    margin: 5px 0 0;
}

.projects-section .btn-view-all {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    background: var(--primary-red);
    color: white;
    border: none;
    text-decoration: none;
    transition: var(--transition);
}

.projects-section .btn-view-all:hover {
    background: var(--primary-red-dark);
}

.project-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: var(--bg-light);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-8px);
}

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

.project-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.project-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.project-card-content {
    padding: 20px;
}

.project-card-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.project-card-content .location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.project-card-content .btn-view-project {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-red);
    text-decoration: none;
}

.project-card-content .btn-view-project:hover {
    text-decoration: underline;
}

/* ==================== MAGAZINE SECTION ==================== */
.magazine-section {
    background: var(--bg-white);
    padding: 70px 0;
}

.magazine-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.magazine-section .section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.magazine-section .view-all {
    font-size: 14px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.magazine-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.magazine-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

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

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

.magazine-card-image {
    height: 160px;
    overflow: hidden;
}

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

.magazine-card-content {
    padding: 20px;
}

.magazine-card-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.magazine-card-content .date {
    font-size: 12px;
    color: var(--text-light);
}

/* ==================== TROPHY SECTION ==================== */
.trophy-section {
    background: var(--bg-light);
    padding: 70px 0;
}

.trophy-section .section-title h2 {
    font-size: 1.5rem;
}

.trophy-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

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

.trophy-item img {
    height: 60px;
    margin-bottom: 15px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.trophy-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.trophy-item p {
    font-size: 12px;
    color: var(--text-light);
}

/* ==================== NEWS SECTION ==================== */
.news-section {
    background: var(--bg-white);
    padding: 70px 0;
}

.news-section .section-title h2 {
    font-size: 1.5rem;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: var(--bg-light);
    padding: 70px 0;
}

.faq-section .section-title h2 {
    font-size: 1.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.faq-question .icon {
    color: var(--text-light);
    transition: var(--transition);
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.faq-answer {
    padding: 0 20px 18px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: var(--primary-red);
    padding: 50px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.cta-section .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    background: white;
    color: var(--primary-red);
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.cta-section .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ==================== FOOTER ==================== */
.footer {
    background: #1A1A1A;
    color: white;
    padding-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    color: var(--primary-red);
    font-size: 1.8rem;
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}

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

.footer h6 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer ul li a {
    font-size: 13px;
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* ==================== SERVICE CARDS (Generic) ==================== */
.service-card {
    background: var(--bg-light);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-hero) 100%);
    color: white;
}

.service-card h4, .service-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

/* ==================== GALLERY ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: white;
    margin: 0 0 5px;
    font-weight: 600;
    font-size: 15px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 13px;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-hero) 100%);
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ==================== CONTACT PAGE ==================== */

/* Contact Hero */
.contact-hero {
    min-height: 35vh;
    padding-top: 120px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-hero) 100%);
    position: relative;
    margin-top: 100px;
}

.contact-hero .breadcrumb {
    justify-content: center;
    margin-bottom: 20px;
}

.contact-hero .breadcrumb-item,
.contact-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
}

.contact-hero .breadcrumb-item.active {
    color: #fff;
}

.contact-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-hero) 100%);
    padding: 40px 30px;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -60px;
    right: -60px;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    top: -30px;
    left: -30px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-card > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.contact-info-item .info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-info-item h6 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.contact-info-item a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--yellow-accent);
}

.contact-social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.contact-social-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Contact Form Card */
.contact-form {
    background: white;
    padding: 40px;
    border-top: 4px solid var(--primary-red);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 28px;
}

/* Contact Map */
.contact-map {
    overflow: hidden;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: 0;
}

/* Homepage Contact Section */
.contact-section-home {
    background: var(--bg-light);
    padding: 70px 0;
}

.contact-section-home .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.contact-section-home .section-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-section-home .section-title p {
    color: var(--text-light);
    font-size: 16px;
}

.home-contact-info {
    background: #fff;
    padding: 30px;
    height: 100%;
}

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

.home-contact-item:last-child {
    margin-bottom: 0;
}

.home-contact-item .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-hero) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.home-contact-item h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.home-contact-item p {
    margin: 0;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.home-contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.home-contact-item a:hover {
    color: var(--primary-red);
}

.home-map {
    overflow: hidden;
}

.home-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
}

.contact-quick-form {
    background: #fff;
    padding: 30px;
    border-top: 4px solid var(--primary-red);
    height: 100%;
}

.contact-quick-form h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-quick-form > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-hero {
        margin-top: 70px;
        min-height: 25vh;
        padding-top: 90px;
    }

    .contact-info-card {
        margin-bottom: 30px;
    }

    .contact-map {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 24px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }
}

.form-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control, .form-select {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(213, 75, 61, 0.1);
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
}

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

.btn-link {
    color: var(--primary-red);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

.btn-link:hover {
    color: var(--primary-red-dark);
    text-decoration: underline;
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-red);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: var(--transition);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    background: var(--primary-red-dark);
}

.scroll-to-top.show {
    display: flex;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .category-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .project-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .homes-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }

    .homes-gallery-item.large {
        grid-row: span 1;
    }

    .homes-gallery-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }

    .category-cards,
    .estimate-cards,
    .review-cards,
    .home-cards,
    .magazine-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .inspiration-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .inspiration-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .hero {
        min-height: 400px;
        margin-top: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 50px 0;
    }

    .category-cards,
    .estimate-cards,
    .review-cards,
    .home-cards,
    .project-cards,
    .magazine-cards,
    .inspiration-gallery {
        grid-template-columns: 1fr;
    }

    .trophy-items {
        gap: 30px;
    }

    .footer-top .row > div {
        margin-bottom: 30px;
    }

    .reviews-section .section-header,
    .homes-gallery-section .section-header,
    .projects-section .section-header,
    .magazine-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .homes-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .homes-gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .homes-gallery-item {
        height: 220px;
    }

    .homes-gallery-overlay {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

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

/* ==================== FLOATING MOBILE BUTTONS ==================== */
.mobile-floating-btns {
    position: fixed;
    bottom: 20px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1040;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn:hover,
.floating-btn:active {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.floating-call {
    background: var(--primary-red);
}

.floating-call i {
    font-size: 1.3rem;
}

.floating-whatsapp {
    background: #25D366;
    border-radius: 26px;
    width: auto;
    padding: 0 18px;
    gap: 8px;
}

.floating-whatsapp i {
    font-size: 1.3rem;
}

.floating-whatsapp span {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Push scroll-to-top above floating buttons on mobile */
@media (max-width: 991.98px) {
    .scroll-to-top {
        bottom: 145px;
        right: 20px;
        background: #6c757d;
        z-index: 1050;
    }

    .scroll-to-top:hover {
        background: #5a6268;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Image Protection
   ============================================ */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Re-enable pointer events on links that contain images (so clicks still work) */
a img, .glightbox img, a > img {
    pointer-events: none;
}
a.glightbox, .gallery-item {
    pointer-events: auto;
}
