/**
Theme Name: Home Indeed
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: home-indeed
Template: astra
*/

/* Reset and Base Styles */

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(190, 148, 90, 0.4);
	color:#fff;
}

.btn-secondary {
    background: transparent;
    color: #be945a;
    border: 2px solid #be945a;
}

.btn-secondary:hover {
    background: #be945a;
    color: #000000;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
}

/* Book Service Button */
.nav-cta {
    padding: 10px 20px !important;
    margin-left: 20px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(190, 148, 90, 0.5);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 1.5rem;
}

.close-modal {
    font-size: 1.8rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #ef4444;
}

.booking-form {
    padding: 30px;
}

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #be945a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(190, 148, 90, 0.2);
}

/* Modern Multiselect Styles */
.modern-multiselect-container {
    position: relative;
    width: 100%;
    z-index: 9998;
}

.multiselect-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 56px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.multiselect-trigger:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.multiselect-trigger:focus {
    outline: none;
    border-color: #be945a;
    box-shadow: 0 0 0 3px rgba(190, 148, 90, 0.2);
}

.multiselect-trigger.active {
    border-color: #be945a;
    box-shadow: 0 0 0 3px rgba(190, 148, 90, 0.2);
}

.selected-items-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.placeholder-text {
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 400;
}

.selected-count {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: #6b7280;
}

.count-number {
    background: #be945a;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
}

.count-text {
    font-weight: 500;
}

.trigger-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.clear-selection {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.clear-selection:hover {
    background: #f3f4f6;
    color: #6b7280;
}

.dropdown-arrow {
    color: #9ca3af;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.multiselect-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #be945a;
}

.multiselect-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9999;
    display: none;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.multiselect-dropdown.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Fallback for dropdown visibility */
.modern-multiselect-container .multiselect-dropdown.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Debug: Force visibility for testing */
.multiselect-dropdown.active {
    background: white !important;
    border: 2px solid #be945a !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    background: #fafbfc;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: #9ca3af;
    font-size: 0.875rem;
    z-index: 1;
}

.service-search {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    background: white;
    transition: border-color 0.2s ease;
}

.service-search:focus {
    outline: none;
    border-color: #be945a;
    box-shadow: 0 0 0 2px rgba(190, 148, 90, 0.2);
}

.services-list {
    max-height: 280px;
    overflow-y: auto;
    padding: 8px 0;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f8fafc;
    position: relative;
}

.service-option:last-child {
    border-bottom: none;
}

.service-option:hover {
    background-color: #f8fafc;
}

.service-option.selected {
    background-color: #f0f9ff;
    border-left: 3px solid #be945a;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #be945a, #d4a574);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    margin-right: 16px;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.service-description {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.4;
}

.service-checkbox {
    margin-left: 12px;
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-checkbox:hover {
    border-color: #be945a;
}

.service-checkbox input[type="checkbox"]:checked + .custom-checkbox {
    background: #be945a;
    border-color: #be945a;
}

.service-checkbox input[type="checkbox"]:checked + .custom-checkbox .checkmark {
    opacity: 1;
    transform: scale(1);
}

.checkmark {
    color: white;
    font-size: 0.75rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.checkmark::before {
    content: "✓";
}

.dropdown-footer {
    padding: 12px 20px;
    border-top: 1px solid #f1f5f9;
    background: #fafbfc;
}

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

.summary-text {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Service Tags for Selected Items */
.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f9ff;
    color: #1e40af;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #dbeafe;
}

.service-tag .tag-icon {
    font-size: 0.75rem;
}

.service-tag .tag-remove {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.service-tag .tag-remove:hover {
    color: #dc2626;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #4a5568;
}
.form-group .whatsapp-label input {width: 10px;}
.whatsapp-label i {
    color: #25D366;
    font-size: 1.2rem;
}

.btn-block {
    width: 100%;
    padding: 15px !important;
    font-size: 1rem !important;
    margin-top: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-image {
    max-height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo h2 {
    color: #be945a;
    margin: 0;
    font-size: 1.8rem;
}

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

.nav-item {
    position: relative;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.nav-link.active {
    color: #be945a;
}

.nav-link.active::after {
    width: 100%;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #be945a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section - Clean Minimalist Design */
.hero {
    padding: 0;
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    color: #be945a;
    margin-bottom: 4rem;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    max-width: 1200px;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-house-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-house-image {
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

.floating-tag {
    position: absolute;
    background: #be945a;
    color: #000000;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.3;
    white-space: nowrap;
    z-index: 10;
}

.tag-1 {
    top: 20%;
    left: 0;
    transform: translateX(-20%);
}

.tag-2 {
    bottom: 30%;
    left: 0;
    transform: translateX(-30%);
}

.tag-3 {
    top: 15%;
    right: 0;
    transform: translateX(20%);
    text-align: center;
}

.tag-4 {
    bottom: 25%;
    right: 0;
    transform: translateX(30%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 4rem;
        margin-bottom: 3rem;
    }

    .hero-visual {
        height: 500px;
    }

    .floating-tag {
        font-size: 1rem;
        padding: 10px 20px;
    }

    /* Large Screen Navigation */
    .nav-container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 1.75rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
    }

    .hero-visual {
        height: 400px;
    }

    .floating-tag {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Large Tablet Navigation */
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .nav-cta {
        padding: 8px 16px !important;
        font-size: 0.85rem;
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }

    .hero-visual {
        height: 350px;
    }

    .floating-tag {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .tag-1, .tag-2 {
        transform: translateX(-10%);
    }

    .tag-3, .tag-4 {
        transform: translateX(10%);
    }

    /* Tablet Navigation */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2.5rem 0;
        gap: 1.5rem;
        border-top: 1px solid #e2e8f0;
    }

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

    .nav-item {
        margin: 0;
        padding: 0.75rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
        display: block;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: #f7fafc;
        color: #be945a;
    }

    .nav-cta {
        margin: 1.5rem auto 0;
        width: 80%;
        max-width: 300px;
        padding: 15px 25px !important;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .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);
    }

    /* Tablet Modal */
    .modal-content {
        width: 90%;
        margin: 30px;
        max-height: 85vh;
    }

    .modal-header {
        padding: 20px 25px;
    }

    .modal-header h3 {
        font-size: 1.4rem;
    }

    .booking-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-visual {
        height: 300px;
    }

    .floating-tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .tag-1, .tag-2 {
        transform: translateX(0);
        left: 5px;
    }

    .tag-3, .tag-4 {
        transform: translateX(0);
        right: 5px;
    }

    /* Mobile Navigation */
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo .logo-image {
        max-height: 35px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
        border-top: 1px solid #e2e8f0;
    }

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

    .nav-item {
        margin: 0;
        padding: 0.5rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        display: block;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: #f7fafc;
        color: #be945a;
    }

    .nav-cta {
        margin: 1rem auto 0;
        width: 90%;
        max-width: 250px;
        padding: 12px 20px !important;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .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);
    }

    /* Mobile Modal */
    .modal-content {
        width: 95%;
        margin: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-header h3 {
        font-size: 1.3rem;
    }

    .booking-form {
        padding: 20px;
    }

    .form-group input {
        padding: 10px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .multiselect-trigger {
        padding: 12px 16px;
        min-height: 48px;
    }
    
    .service-option {
        padding: 10px 16px;
    }
    
    .service-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-right: 12px;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
    
    .service-description {
        font-size: 0.75rem;
    }
    
    .multiselect-dropdown {
        max-height: 300px;
    }
    
    .services-list {
        max-height: 220px;
    }

    /* Extra Small Screens */
    .nav-container {
        padding: 0 10px;
    }

    .nav-logo .logo-image {
        max-height: 30px;
    }

    .hamburger {
        padding: 0.25rem;
    }

    .bar {
        width: 22px;
        height: 2px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .nav-cta {
        margin: 0.5rem auto 0;
        padding: 10px 20px !important;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar {
        backdrop-filter: blur(15px);
    }

    .nav-menu.active {
        backdrop-filter: blur(25px);
    }
}

/* Print Styles */
@media print {
    .navbar {
        position: static;
        background: white;
        box-shadow: none;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: none;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
    transform: translateX(100%);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.hero-slide.next {
    transform: translateX(100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    height: 100vh;
    min-height: 700px;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 100%;
    text-align: left !important;
    padding-right: 2rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
    box-shadow: 0 8px 25px rgba(190, 148, 90, 0.4);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(45deg, #be945a, #a67c3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: slideInLeft 1s ease-out 0.5s both;
    max-width: 100%;
    text-align: left !important;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #be945a;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.7s both;
    justify-content: flex-start !important;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    color: #be945a;
    border: 2px solid #be945a;
}

.btn-outline:hover {
    background: #be945a;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(190, 148, 90, 0.4);
}

/* Hero Visual Section */
.hero-visual-section {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    position: relative;
    width: 90%;
    height: 80%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.model-house-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image:hover .model-house-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image:hover .image-overlay {
    opacity: 1;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    animation: float 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 140px;
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card .card-icon i {
    color: white;
    font-size: 1.2rem;
}

.floating-card .card-content {
    display: flex;
    flex-direction: column;
}

.floating-card .card-title {
    font-weight: 700;
    color: #2d3748;
    font-size: 0.9rem;
    line-height: 1.2;
}

.floating-card .card-subtitle {
    font-weight: 500;
    color: #be945a;
    font-size: 0.8rem;
    line-height: 1.2;
}

.card-1 {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: 5%;
    animation-delay: 2s;
}

.card-3 {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Quick Links Section */
.quick-links {
    padding: 80px 0;
    background: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-link-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quick-link-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quick-link-icon i {
    font-size: 2rem;
    color: white;
}

.quick-link-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.quick-link-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.quick-link-btn {
    color: #be945a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-link-btn:hover {
    color: #a67c3a;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Section Headers for Detailed Services */
.detailed-services .section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.detailed-services .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detailed-services .section-header p {
    font-size: 1.2rem;
    color: #be945a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background: #f8fafc;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.brand-card {
    background: white;
    padding: 1.3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.home .brand-card img {height: 70px; padding-bottom: 10px;}

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

.brand-icon i {
    font-size: 2rem;
    color: white;
}

.brand-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.brand-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 12px;
}

.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: start;
}

.brand-features span {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.6rem 0.6rem;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 500;
}

/* Mobile responsive for brands section */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brand-card {
        padding: 1.5rem;
    }
    
    .elementor .brand-card img {
        height: 60px;
        padding-bottom: 8px;
    }
    
    .brand-features {
        gap: 0.4rem;
    }
    
    .brand-features span {
        padding: 0.5rem 0.5rem;
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        gap: 1rem;
    }
    
    .brand-card {
        padding: 1.25rem;
    }
    
    .brand-card img {
        height: 55px;
        padding-bottom: 6px;
    }
    
    .brand-features span {
        padding: 0.4rem 0.4rem;
        font-size: 0.5rem;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
}

/* Portfolio Hero Section */
.portfolio-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    overflow: hidden;
}

.portfolio-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.portfolio-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #be945a, #a67c3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #e2e8f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #cbd5e0;
    font-weight: 500;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: #f8fafc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: white;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
    width: 100%;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.project-category {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.category-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
}

.category-tag i {
    color: #be945a;
}

.category-tag.residential i {
    color: #10b981;
}

.category-tag.interior i {
    color: #be945a;
}

.category-tag.commercial i {
    color: #3b82f6;
}

.overlay-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.overlay-content p {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
}

.meta-item i {
    color: #be945a;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: white;
    color: #1a202c;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-item h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    overflow: visible;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #be945a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #be945a;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #be945a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-right: 0.2rem;
}

.testimonial-content p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #2d3748;
    margin: 0 0 0.2rem 0;
    font-size: 1.1rem;
}

.author-info span {
    color: #718096;
    font-size: 0.9rem;
}

/* Brands Page Styles */
.brands-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brands-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.brands-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.brands-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.brands-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.95;
    color: #fff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #be945a;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brand Overview Section */
.brand-overview {
    padding: 100px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.overview-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(190, 148, 90, 0.3);
}

.overview-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.overview-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.4s ease;
}

.overview-card:hover .overview-icon {
    transform: scale(1.1) rotate(5deg);
}

.overview-card:hover .overview-icon::after {
    transform: scale(1.2);
    opacity: 0.5;
}

.overview-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s ease;
}

.overview-card:hover .overview-icon i {
    transform: scale(1.1);
}

.overview-card h3 {
    color: #2d3748;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.overview-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Why Choose Home Indeed Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card:hover .benefit-icon::after {
    transform: scale(1.2);
    opacity: 0.5;
}

.benefit-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1);
}

.benefit-card h3 {
    color: #2d3748;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.blog-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.95;
    color: #fff;
}

.blog-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    background: #be945a;
    color: #000000;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #a67c3a;
}

/* Featured Article Section */
.featured-article {
    padding: 80px 0;
    background: #f8fafc;
}

.featured-article-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #be945a;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.featured-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    line-height: 1.2;
}

.featured-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-date,
.article-category,
.article-read-time {
    font-size: 0.9rem;
    color: #666;
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

.article-category {
    background: #e0e7ff;
    color: #3730a3;
}

.article-read-time {
    background: #fef3c7;
    color: #92400e;
}

/* Blog Categories */
.blog-categories {
    padding: 80px 0;
    background: white;
}

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

.category-card {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    border-color: #be945a;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-card i {
    font-size: 2.5rem;
    color: #be945a;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.article-count {
    color: #666;
    font-size: 0.9rem;
}

/* Latest Articles Section */
.latest-articles {
    padding: 80px 0;
    background: #f8fafc;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.article-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.read-time {
    color: #666;
    font-size: 0.9rem;
}

.read-more {
    color: #be945a;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #a67c3a;
    transform: translateX(5px);
}

.read-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Brands Showcase Section */
.brands-showcase {
    padding: 80px 0;
    background: white;
}

.brands-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.brand-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

.brand-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.brand-showcase-card.reverse {
    direction: rtl;
}

.brand-showcase-card.reverse .brand-content {
    direction: ltr;
}

.brand-visual {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.brand-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

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

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brand-showcase-card:hover .brand-overlay {
    opacity: 1;
}

.brand-logo {
    text-align: center;
    color: white;
}

.brand-logo i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.brand-logo h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.brand-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.brand-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 1.2rem;
    color: #be945a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.brand-badges {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: #f0f2ff;
    color: #be945a;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e0e4ff;
}

.brand-description {
    margin-bottom: 2rem;
}

.brand-description p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.brand-features {
    
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    color: #be945a;
    font-size: 1.3rem;
    margin-top: 0.2rem;
    min-width: 24px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.feature-item p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.brand-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.brand-cta .btn {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.brand-cta .btn-primary {
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: white;
    border: none;
}

.brand-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.brand-cta .btn-secondary {
    background: transparent;
    color: #be945a;
    border: 2px solid #be945a;
}

.brand-cta .btn-secondary:hover {
    background: #be945a;
    color: white;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 0;
    line-height: 1.6;
    opacity: 0.95;
    color: white;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    color: #be945a;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #a67c3a;
    transform: translateX(5px);
}

.contact-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(3px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
    overflow: visible;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form h2 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.contact-form p {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #be945a;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400;
    color: #4a5568;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid #be945a;
}

.sidebar-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.benefits-list i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.emergency-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc3545;
    text-decoration: none;
    margin: 1rem 0;
}

.emergency-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: #be945a;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #a67c3a;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.map-content h2 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.map-content p {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: #be945a;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    background: #f8fafc;
}

.faq-question:hover {
    background-color: #e2e8f0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2d3748;
}

.faq-question i {
    color: #be945a;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(45deg, #be945a, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #be945a;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(190, 148, 90, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(190, 148, 90, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    color: #be945a;
    animation: float 8s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: #000000;
    transform: scale(1.05);
}

.service-card.featured .service-icon {
    background: rgba(0, 0, 0, 0.2);
}

.service-card.featured h3,
.service-card.featured p {
    color: #000000;
}

.service-card.featured .service-features li {
    color: rgba(0, 0, 0, 0.9);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.service-features i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.service-cta {
    margin-top: auto;
}

.service-link {
    color: #be945a;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #a67c3a;
    transform: translateX(5px);
}

/* How We Work Section */
.how-we-work {
    padding: 100px 0;
    background: white;
}

/* Comprehensive Solutions Cards */
.detailed-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.detailed-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23cbd5e0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.comprehensive-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.solution-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    position: relative;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(190, 148, 90, 0.3);
}

.card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.solution-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.card-badge {
    background: linear-gradient(135deg, #be945a, #a67c3a);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    color: #2d3748;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.features-section h4 {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.features-list {
    display: grid;
    gap: 1rem;
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-list .feature-item i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.features-list .feature-item span {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-footer {
    padding: 2rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.card-footer .btn {
    flex: 1;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-footer .btn-primary {
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: #000000;
    border: none;
}

.card-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(190, 148, 90, 0.4);
}

.card-footer .btn-outline {
    background: transparent;
    color: #be945a;
    border: 2px solid #be945a;
}

.card-footer .btn-outline:hover {
    background: #be945a;
    color: #000000;
    transform: translateY(-2px);
}

.work-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.work-step {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.work-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.work-step:hover::before {
    transform: scaleX(1);
}

.work-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(190, 148, 90, 0.3);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.4s ease;
}

.work-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.work-step:hover .step-icon::after {
    transform: scale(1.2);
    opacity: 0.5;
}

.step-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.4s ease;
}

.work-step:hover .step-icon i {
    transform: scale(1.1);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #be945a, #a67c3a);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.work-step h3 {
    color: #2d3748;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.work-step p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Enhanced Brands CTA Section */
.brands-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.brands-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-text {
    max-width: 100%;
    margin-bottom: 2rem;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.cta-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-feature i {
    color: #be945a;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-feature span {
    font-size: 1rem;
    opacity: 0.9;
}



.cta-actions {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1a202c;
    transform: translateY(-3px);
}

.cta-contact-info {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    opacity: 1;
}

.contact-item i {
    color: #be945a;
    font-size: 1.1rem;
}

.contact-item span {
    font-size: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: #f8fafc;
}

.brands-slider {
    position: relative;
    margin-top: 3rem;
}

.brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-item {
    flex: 0 0 200px;
    margin: 0 2rem;
    text-align: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #be945a;
}

.brand-logo {
    width: auto;
    margin: 0 auto 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    transform: scale(1.1);
}

.brand-logo img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo img {
     
}

.brand-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    margin: 0;
    transition: color 0.3s ease;
}

.brand-item:hover h4 {
    color: #be945a;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsive Styles for Brands Section */
@media (max-width: 1200px) {
    .brands-section {
        padding: 60px 0;
    }
    
    .brands-section .container {
        padding: 0 30px;
    }
    
    .brand-item {
        flex: 0 0 180px;
        margin: 0 1.5rem;
        padding: 0.8rem 1.2rem;
    }
    
    .brand-logo img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 50px 0;
    }
    
    .brands-section .container {
        padding: 0 20px;
    }
    
    .brands-section .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .brands-section .section-header p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .brands-track {
        animation: scroll 20s linear infinite;
    }
    
    .brand-item {
        flex: 0 0 150px;
        margin: 0 1rem;
        padding: 0.7rem 1rem;
        border-radius: 12px;
    }
    
    .brand-logo img {
        height: 50px;
    }
    
    .brand-item h4 {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .brands-section {
        padding: 40px 0;
    }
    
    .brands-section .container {
        padding: 0 15px;
    }
    
    .brands-section .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .brands-section .section-header p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .brands-track {
        animation: scroll 15s linear infinite;
    }
    
    .brand-item {
        flex: 0 0 120px;
        margin: 0 0.8rem;
        padding: 0.6rem 0.8rem;
        border-radius: 10px;
    }
    
    .brand-logo img {
        height: 40px;
    }
    
    .brand-item h4 {
        font-size: 0.8rem;
        margin-top: 0.4rem;
    }
}

@media (max-width: 360px) {
    .brands-section {
        padding: 30px 0;
    }
    
    .brands-section .container {
        padding: 0 10px;
    }
    
    .brands-section .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .brands-section .section-header p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .brands-track {
        animation: scroll 12s linear infinite;
    }
    
    .brand-item {
        flex: 0 0 100px;
        margin: 0 0.6rem;
        padding: 0.5rem 0.6rem;
        border-radius: 8px;
    }
    
    .brand-logo img {
        height: 35px;
    }
    
    .brand-item h4 {
        font-size: 0.75rem;
        margin-top: 0.3rem;
    }
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-date,
.blog-category {
    font-size: 0.9rem;
    color: #666;
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

.blog-category {
    background: #e0e7ff;
    color: #3730a3;
}

.blog-content h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.blog-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.read-more {
    color: #be945a;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    color: #5a67d8;
    transform: translateX(5px);
}

.read-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #000000;
    transform: translateY(-2px);
}


/* Responsive Design for Blog, Testimonials and CTA */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .brand-showcase-card {
        gap: 2rem;
    }
    
    .brand-content {
        padding: 2.5rem;
    }
    
    .work-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero-content h1 {
        font-size: 3rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .map-placeholder {
        padding: 3rem 2rem;
    }
    
    .brands-showcase {
        padding: 60px 0;
    }
    
    .brands-showcase-grid {
        gap: 3rem;
    }
    
    .brand-showcase-card {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        border-radius: 20px;
        overflow: hidden;
    }
    
    .brand-showcase-card.reverse {
        direction: ltr;
    }
    
    .brand-visual {
        height: 300px;
        order: 1;
    }
    
    .brand-content {
        padding: 2rem;
        order: 2;
    }
    
    .brand-badges {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .brand-features {
        text-align: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .brand-header h2 {
        font-size: 2rem;
    }
    
    .brand-tagline {
        font-size: 1.1rem;
    }
    
    .brand-features {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        text-align: center;
        justify-content: center;
    }
    
    .brand-cta {
        justify-content: center;
    }
    
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero-content h1 {
        font-size: 3rem;
    }
    
    .blog-hero-content p {
        font-size: 1.1rem;
        color: #fff;
    }
    
    .blog-search {
        flex-direction: column;
        border-radius: 25px;
    }
    
    .search-input,
    .search-btn {
        border-radius: 25px;
    }
    
    .featured-article-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .featured-text h2 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        width: 100%;
        max-width: 400px;
    }
    
    .brands-hero {
        padding: 100px 0 60px;
    }
    
    .brands-hero-content h1 {
        font-size: 3rem;
    }
    
    .brands-hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .brand-overview {
        padding: 80px 0;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .overview-card {
        padding: 2.5rem 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .why-choose-us {
        padding: 80px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .benefit-card {
        padding: 2.5rem 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-text h2 {
        font-size: 2.5rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brands-hero {
        padding: 80px 0 50px;
    }
    
    .brands-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .brands-hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .brands-showcase {
        padding: 40px 0;
    }
    
    .brands-showcase-grid {
        gap: 2rem;
    }
    
    .brand-showcase-card {
        border-radius: 20px;
        grid-template-columns: 1fr;
    }
    
    .brand-visual {
        height: 250px;
        order: 1;
    }
    
    .brand-content {
        padding: 1.5rem;
        order: 2;
    }
    
    .brand-header h2 {
        font-size: 1.8rem;
    }
    
    .brand-tagline {
        font-size: 1rem;
    }
    
    .brand-badges {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .brand-features {
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        gap: 1rem;
        margin-bottom: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item h4 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .brand-cta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .brand-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero-content p {
        font-size: 1rem;
        color: #fff;
    }
    
    .featured-text h2 {
        font-size: 1.8rem;
    }
    
    .featured-text p {
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-card i {
        font-size: 2rem;
    }
    
    .category-card h3 {
        font-size: 1rem;
    }
    
    .articles-grid {
        gap: 1.5rem;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
    }
    
    .article-content p {
        font-size: 0.95rem;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .why-choose-us {
        padding: 60px 0;
    }
    
    .benefits-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .benefit-icon i {
        font-size: 1.8rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    .blog {
        padding: 60px 0;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    .blog-content p {
        font-size: 0.95rem;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

/* Services Page Responsive Styles */
@media (max-width: 1200px) {
    .work-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .comprehensive-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .work-steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .work-step {
        padding: 2.5rem 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .comprehensive-solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-card {
        margin: 0 1rem;
    }
    
    .card-header {
        padding: 1.5rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-footer {
        padding: 1.5rem;
        flex-direction: column;
    }
    
    .card-footer .btn {
        width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .work-step {
        padding: 2rem 1.5rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .work-step h3 {
        font-size: 1.2rem;
    }
    
    .work-step p {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }

    /* Portfolio Responsive */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-item {
        max-width: 400px;
        margin: 0 auto;
    }

    .portfolio-image {
        height: 250px;
    }

    .filter-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .filter-buttons {
        justify-content: center;
    }

    .filter-sort {
        width: 100%;
    }

    .sort-select {
        width: 100%;
    }

    .project-meta {
        flex-direction: column;
        gap: 1rem;
    }

    /* Portfolio Hero Responsive */
    .portfolio-hero h1 {
        font-size: 2.5rem;
    }

    .portfolio-hero p {
        font-size: 1.1rem;
    }

    .portfolio-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Featured Project Responsive */
    .featured-project-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .featured-project-image {
        order: -1;
    }

    .featured-project-image img {
        height: 300px;
    }

    .project-highlights {
        justify-content: center;
    }

    /* Portfolio Categories Responsive */
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .category-card {
        padding: 2rem 1.5rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 1.5rem;
    }

    /* Portfolio CTA Responsive */
    .portfolio-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Brands Section Responsive */
    .brands-track {
        animation: scroll 20s linear infinite;
    }

    .brand-item {
        flex: 0 0 150px;
        margin: 0 1rem;
        padding: 1.5rem 1rem;
    }

    .brand-logo {
        width: 60px;
        height: 60px;
    }

    .brand-item h4 {
        font-size: 0.9rem;
    }
}

/* Portfolio Filter Styles */
.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    background: #f1f5f9;
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #e2e8f0;
    color: #2d3748;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #be945a;
    color: #000000;
    border-color: #be945a;
}

.filter-sort {
    position: relative;
}

.sort-select {
    padding: 0.75rem 2.5rem 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: white;
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.sort-select:focus {
    outline: none;
    border-color: #be945a;
    box-shadow: 0 0 0 3px rgba(190, 148, 90, 0.2);
}

.filter-sort::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #be945a;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.filter-sort:hover::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Portfolio Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.4s; }
.portfolio-item:nth-child(4) { animation-delay: 0.6s; }
.portfolio-item:nth-child(5) { animation-delay: 0.8s; }
.portfolio-item:nth-child(6) { animation-delay: 1s; }

/* Featured Project Section */
.featured-project {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.featured-project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-project-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-project-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #be945a, #a67c3a);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(190, 148, 90, 0.4);
}

.featured-project-details h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

.project-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568;
}

.highlight-item i {
    color: #be945a;
    font-size: 1.2rem;
}

.project-services {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-tag {
    background: #f7fafc;
    color: #4a5568;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: #be945a;
    color: white;
    border-color: #be945a;
    transform: translateY(-2px);
}

/* Portfolio Categories Section */
.portfolio-categories {
    padding: 80px 0;
    background: #f8fafc;
}

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

.category-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #be945a;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #be945a, #a67c3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.project-count {
    color: #be945a;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Portfolio Showcase Section */
.portfolio-showcase {
    padding: 80px 0;
    background: white;
}

/* Portfolio CTA Section */
.portfolio-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a202c;
}

/* Hero Slider Complete Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.hero-slide.active .slide-background {
    transform: scale(1);
}

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

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.slide-content {
    max-width: 600px;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: #000000;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-slide .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white !important;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.slide-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: white;
    opacity: 0.8;
}

.feature-item i {
    color: #be945a;
    font-size: 16px;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
    background: white;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #be945a 0%, #a67c3a 100%);
    width: 0%;
    transition: width 0.1s linear;
}

/* Responsive styles for hero slider */
@media (max-width: 1200px) {
    .hero-slide .hero-title {
        font-size: 3rem;
    }
    
    .hero-slide .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 80vh;
    }
    
    .hero-slide .hero-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .hero-slide .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-slide .hero-actions {
        justify-content: center;
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .hero-slide .hero-actions .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .hero-slide .slide-features {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-slide .slide-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-nav {
        bottom: 20px;
        gap: 10px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        min-height: 70vh;
    }
    
    .hero-slide .hero-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .hero-slide .hero-subtitle {
        font-size: 0.85rem;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-slide .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .hero-slide .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .hero-slide .slide-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-slide .slide-features .feature-item {
        font-size: 12px;
        gap: 8px;
    }
    
    .hero-slide .slide-badge {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 12px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-nav {
        bottom: 15px;
        gap: 8px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 360px) {
    .hero-slide {
        min-height: 65vh;
    }
    
    .hero-slide .hero-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .hero-slide .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 18px;
    }
    
    .hero-slide .hero-actions .btn {
        max-width: 250px;
        padding: 12px 18px;
        font-size: 0.85rem;
    }
    
    .hero-slide .slide-features .feature-item {
        font-size: 11px;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
    }
    
    .slider-prev {
        left: 8px;
    }
    
    .slider-next {
        right: 8px;
    }
}

/* Interior Design Page Styles */
.interior-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.highlight {
    background: linear-gradient(135deg, #be945a 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #be945a;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 20px;
    color: white;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #be945a;
}

.floating-card span {
    font-size: 14px;
    font-weight: 500;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Interior Services Section */
.interior-services {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 2px solid #be945a;
    position: relative;
}

.service-card.featured::before {
    content: 'Featured';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #be945a;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    color: #64748b;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

.service-link {
    color: #be945a;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #5a67d8;
    gap: 12px;
}

/* Detailed Services Section */
.detailed-services {
    padding: 100px 0;
    background: white;
}

.solution-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 60px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.card-header {
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.5rem;
}

.card-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a202c;
}

.card-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 30px;
}

.features-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a202c;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.card-footer {
    padding: 30px 40px;
    background: #f8fafc;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Interior Process Section */
.interior-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: white;
}

.work-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.work-step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.step-icon i {
    font-size: 2rem;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #be945a;
    color: #1a202c;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.work-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.work-step p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-interior {
    padding: 100px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Interior CTA Section */
.interior-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.cta-feature i {
    color: #10b981;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.contact-item i {
    color: #be945a;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #1a202c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f7fafc;
    color: #be945a;
}

/* Painting Services Page Styles */
.painting-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.painting-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
}

.painting-hero .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.painting-hero .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.painting-hero .shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.painting-hero .shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.painting-hero .shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.painting-hero .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.painting-hero .hero-text {
    color: white;
}

.painting-hero .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.painting-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.painting-hero .title-line {
    display: block;
}

.painting-hero .title-line.highlight {
    background: linear-gradient(135deg, #be945a 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.painting-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.painting-hero .hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.painting-hero .hero-visual {
    position: relative;
    height: 500px;
}

.painting-hero .floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.painting-hero .floating-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.painting-hero .floating-card span {
    font-size: 14px;
    font-weight: 500;
}

.painting-hero .card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.painting-hero .card-2 {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.painting-hero .card-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

/* Additional Painting Services Page Styles */
.painting-services {
    padding: 100px 0;
    background: #f8fafc;
}

.painting-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: white;
}

.painting-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
}

.painting-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.painting-cta .cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.painting-cta .cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.painting-cta .cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.painting-cta .cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.painting-cta .cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.painting-cta .cta-feature i {
    color: #be945a;
}

.painting-cta .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.painting-cta .cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.painting-cta .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.painting-cta .contact-item i {
    color: #be945a;
}

/* Paint Partners Section */
.paint-partners {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.paint-partners .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.paint-partners .section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.paint-partners .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.paint-partners .partner-logo {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paint-partners .partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.paint-partners .partner-logo img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.paint-partners .partner-logo h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 5px;
}

.paint-partners .partner-logo p {
    font-size: 0.9rem;
    color: #64748b;
}

/* Why Choose Painting Section */
.why-choose-painting {
    padding: 100px 0;
    background: #f8fafc;
}

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

.why-choose-painting .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.why-choose-painting .section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-painting .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-choose-painting .benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-painting .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.why-choose-painting .benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.why-choose-painting .benefit-icon i {
    font-size: 2rem;
    color: white;
}

.why-choose-painting .benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.why-choose-painting .benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Flooring Solutions Page Styles */
.flooring-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.flooring-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
}

.flooring-hero .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flooring-hero .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.flooring-hero .shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.flooring-hero .shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.flooring-hero .shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.flooring-services {
    padding: 100px 0;
    background: #f8fafc;
}

.flooring-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.why-choose-flooring {
    padding: 100px 0;
    background: #f8fafc;
}

.flooring-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.flooring-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.flooring-cta .cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.flooring-cta .cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.flooring-cta .cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.flooring-cta .cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.flooring-cta .cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.flooring-cta .cta-feature i {
    color: #be945a;
}

.flooring-cta .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.flooring-cta .cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.flooring-cta .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.flooring-cta .contact-item i {
    color: #be945a;
}

/* Mosquito Screens Page Styles */
.screens-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.screens-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
}

.screens-hero .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.screens-hero .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.screens-hero .shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.screens-hero .shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.screens-hero .shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

/* Phifer Partnership Section */
.phifer-partnership {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partnership-badge {
    display: inline-block;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.partnership-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.partnership-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4a5568;
}

.partnership-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.benefit-item i {
    color: #be945a;
    font-size: 18px;
}

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

.phifer-logo {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.phifer-logo img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid #f1f5f9;
}

.phifer-logo h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a202c;
}

.phifer-logo p {
    color: #64748b;
    font-size: 14px;
}

.screens-services {
    padding: 100px 0;
    background: #f8fafc;
}

.screens-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.why-choose-screens {
    padding: 100px 0;
    background: #f8fafc;
}

.screens-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.screens-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.screens-cta .cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.screens-cta .cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.screens-cta .cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.screens-cta .cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.screens-cta .cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.screens-cta .cta-feature i {
    color: #be945a;
}

.screens-cta .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.screens-cta .cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.screens-cta .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.screens-cta .contact-item i {
    color: #be945a;
}

/* Smart Home Automation Page Styles */
.automation-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.automation-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
}

.automation-hero .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.automation-hero .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.automation-hero .shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.automation-hero .shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.automation-hero .shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

/* Wozart Partnership Section */
.wozart-partnership {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.wozart-partnership .partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wozart-partnership .partnership-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.wozart-partnership .partnership-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.wozart-partnership .partnership-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4a5568;
}

.wozart-partnership .partnership-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wozart-partnership .benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.wozart-partnership .benefit-item i {
    color: #ff6b6b;
    font-size: 18px;
}

.wozart-partnership .partnership-visual {
    text-align: center;
}

.wozart-logo {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.wozart-logo img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid #f1f5f9;
}

.wozart-logo h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a202c;
}

.wozart-logo p {
    color: #64748b;
    font-size: 14px;
}

.automation-services {
    padding: 100px 0;
    background: #f8fafc;
}

.automation-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.why-choose-automation {
    padding: 100px 0;
    background: #f8fafc;
}

.automation-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
}

.automation-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.automation-cta .cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.automation-cta .cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.automation-cta .cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.automation-cta .cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.automation-cta .cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.automation-cta .cta-feature i {
    color: #ff6b6b;
}

.automation-cta .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.automation-cta .cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.automation-cta .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.automation-cta .contact-item i {
    color: #ff6b6b;
}

/* Construction Chemical Solutions Page Styles */
.chemicals-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.chemicals-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
}

.chemicals-hero .hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.chemicals-hero .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.chemicals-hero .shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.chemicals-hero .shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.chemicals-hero .shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

/* JSW Partnership Section */
.jsw-partnership {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.jsw-partnership .partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.jsw-partnership .partnership-badge {
    display: inline-block;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.jsw-partnership .partnership-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.jsw-partnership .partnership-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4a5568;
}

.jsw-partnership .partnership-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jsw-partnership .benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.jsw-partnership .benefit-item i {
    color: #be945a;
    font-size: 18px;
}

.jsw-partnership .partnership-visual {
    text-align: center;
}

.jsw-logo {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.jsw-logo img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid #f1f5f9;
}

.jsw-logo h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a202c;
}

.jsw-logo p {
    color: #64748b;
    font-size: 14px;
}

.chemicals-services {
    padding: 100px 0;
    background: #f8fafc;
}

.chemicals-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
    color: white;
}

.why-choose-chemicals {
    padding: 100px 0;
    background: #f8fafc;
}

.chemicals-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
}

.chemicals-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.chemicals-cta .cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.chemicals-cta .cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.chemicals-cta .cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.chemicals-cta .cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.chemicals-cta .cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.chemicals-cta .cta-feature i {
    color: #be945a;
}

.chemicals-cta .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.chemicals-cta .cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.chemicals-cta .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.chemicals-cta .contact-item i {
    color: #be945a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .work-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-card {
        position: relative;
        margin-bottom: 20px;
    }
    
    .hero-visual {
        height: auto;
    }
    
    /* JSW Partnership Mobile Styles */
    .jsw-partnership {
        padding: 60px 0;
    }
    
    .jsw-partnership .partnership-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .jsw-partnership .partnership-content h2 {
        font-size: 2rem;
    }
    
    .jsw-partnership .partnership-content p {
        font-size: 1rem;
    }
    
    .jsw-partnership .partnership-benefits {
        align-items: center;
    }
    
    .jsw-partnership .benefit-item {
        justify-content: center;
        text-align: center;
    }
    
    .jsw-logo {
        padding: 30px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .jsw-logo img {
        width: 100px;
        height: 100px;
    }
    
    .jsw-logo h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .solution-card .card-header,
    .solution-card .card-content,
    .solution-card .card-footer {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* JSW Partnership Small Mobile Styles */
    .jsw-partnership {
        padding: 40px 0;
    }
    
    .jsw-partnership .partnership-content {
        gap: 30px;
    }
    
    .jsw-partnership .partnership-content h2 {
        font-size: 1.8rem;
    }
    
    .jsw-partnership .partnership-content p {
        font-size: 0.95rem;
    }
    
    .jsw-partnership .partnership-benefits {
        gap: 12px;
    }
    
    .jsw-partnership .benefit-item {
        font-size: 14px;
        gap: 12px;
    }
    
    .jsw-partnership .benefit-item i {
        font-size: 16px;
    }
    
    .jsw-logo {
        padding: 25px;
    }
    
    .jsw-logo img {
        width: 80px;
        height: 80px;
    }
    
    .jsw-logo h3 {
        font-size: 1.2rem;
    }
    
    .jsw-logo p {
        font-size: 13px;
    }
}
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .mosquito-hero .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .mosquito-hero .hero-title {
                font-size: 2.5rem;
            }
            
            .mosquito-hero .hero-subtitle {
                font-size: 1rem;
            }
            
            .mosquito-hero .hero-cta {
                justify-content: center;
            }
            
            .screen-types-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .material-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-cta, .btn-outline-cta {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .mosquito-hero .hero-title {
                font-size: 2rem;
            }
            
            .mosquito-hero .hero-subtitle {
                font-size: 0.9rem;
            }
            
            .screen-type-card {
                padding: 1.5rem;
            }
            
            .material-card {
                padding: 1rem;
            }
            
            .benefit-item {
                padding: 1rem;
            }
        }
/* WhatsApp Floating Chat Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-icon i {
    font-size: 30px;
    color: white;
}

.whatsapp-float:hover .whatsapp-icon {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #333;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Mobile responsive for WhatsApp float */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon i {
        font-size: 25px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

.mosquito-hero {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .mosquito-hero .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
            opacity: 0.1;
        }
        
        .mosquito-hero .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .mosquito-hero .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        .mosquito-hero .shape-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }
        
        .mosquito-hero .shape-2 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 5%;
            animation-delay: 2s;
        }
        
        .mosquito-hero .shape-3 {
            width: 100px;
            height: 100px;
            top: 60%;
            right: 20%;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .mosquito-hero .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .mosquito-hero .hero-text {
            color: white;
        }
        
        .mosquito-hero .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }
        
        .mosquito-hero .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .mosquito-hero .title-line {
            display: block;
        }
        
        .mosquito-hero .title-line.highlight {
            color: #fbbf24;
        }
        
        .mosquito-hero .hero-subtitle {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .mosquito-hero .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .mosquito-hero .hero-visual {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
        
        .mosquito-hero .floating-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            color: white;
            transition: all 0.3s ease;
            animation: float 6s ease-in-out infinite;
        }
        
        .mosquito-hero .floating-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        
        .mosquito-hero .floating-card i {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }
        
        .mosquito-hero .floating-card span {
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .mosquito-hero .card-1 {
            animation-delay: 0s;
        }
        
        .mosquito-hero .card-2 {
            animation-delay: 2s;
        }
        
        .mosquito-hero .card-3 {
            animation-delay: 4s;
        }
        
        .screen-types {
            padding: 4rem 0;
        }
        
        .screen-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .screen-type-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .screen-type-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #be945a;
        }
        
        .screen-type-card i {
            font-size: 3rem;
            color: #be945a;
            margin-bottom: 1rem;
        }
        
        .screen-type-card h3 {
            font-size: 1.5rem;
            color: #2d3748;
            margin-bottom: 1rem;
        }
        
        .screen-type-card p {
            color: #718096;
            line-height: 1.6;
        }
        
        .material-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .material-card {
            background: #f8fafc;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        
        .material-card:hover {
            background: white;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .material-card i {
            font-size: 2.5rem;
            color: #be945a;
            margin-bottom: 1rem;
        }
        
        .material-card h4 {
            font-size: 1.2rem;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }
        
        .material-card p {
            color: #718096;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .benefits-section {
            background: #f8fafc;
            padding: 4rem 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .benefit-item i {
            font-size: 1.5rem;
            color: #be945a;
            margin-top: 0.2rem;
        }
        
        .benefit-item div h4 {
            color: #2d3748;
            margin-bottom: 0.5rem;
        }
        
        .benefit-item div p {
            color: #718096;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            color: white;
            text-align: center;
            padding: 4rem 0;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-cta {
            display: inline-block;
            padding: 15px 30px;
            background: white;
            color: #be945a;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid white;
        }
        
        .btn-cta:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
        }
        
        .btn-outline-cta {
            display: inline-block;
            padding: 15px 30px;
            background: transparent;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid white;
        }
        
        .btn-outline-cta:hover {
            background: white;
            color: #be945a;
            transform: translateY(-3px);
        }

.smart-hero {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .smart-hero .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .smart-hero .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        .smart-hero .shape-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }
        
        .smart-hero .shape-2 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 5%;
            animation-delay: 2s;
        }
        
        .smart-hero .shape-3 {
            width: 100px;
            height: 100px;
            top: 60%;
            right: 20%;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .smart-hero .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .smart-hero .hero-text {
            color: white;
        }
        
        .smart-hero .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }
        
        .smart-hero .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .smart-hero .title-line {
            display: block;
        }
        
        .smart-hero .title-line.highlight {
            color: #fbbf24;
        }
        
        .smart-hero .hero-subtitle {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .smart-hero .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .smart-hero .hero-visual {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
        
        .smart-hero .floating-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            color: white;
            transition: all 0.3s ease;
            animation: float 6s ease-in-out infinite;
        }
        
        .smart-hero .floating-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        
        .smart-hero .floating-card i {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }
        
        .smart-hero .floating-card span {
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .smart-hero .card-1 {
            animation-delay: 0s;
        }
        
        .smart-hero .card-2 {
            animation-delay: 2s;
        }
        
        .smart-hero .card-3 {
            animation-delay: 4s;
        }
        
        .smart-products {
            padding: 4rem 0;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .product-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #be945a, #a67c3a);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover::before {
            transform: scaleX(1);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #be945a;
        }
        
        .product-card i {
            font-size: 3.5rem;
            color: #be945a;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .product-card:hover i {
            transform: scale(1.1);
            color: #a67c3a;
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            color: #2d3748;
            margin-bottom: 1rem;
        }
        
        .product-card p {
            color: #718096;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .product-features {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }
        
        .product-features li {
            color: #4a5568;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .product-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #be945a;
            font-weight: bold;
        }
 .features-section {
            background: #f8fafc;
            padding: 4rem 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-item i {
            font-size: 3rem;
            color: #be945a;
            margin-bottom: 1rem;
        }
        
        .feature-item h4 {
            color: #2d3748;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .feature-item p {
            color: #718096;
            line-height: 1.6;
        }
        
        .benefits-section {
            background: white;
            padding: 4rem 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: 15px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            background: white;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        
        .benefit-item i {
            font-size: 1.5rem;
            color: #be945a;
            margin-top: 0.2rem;
        }
        
        .benefit-item div h4 {
            color: #2d3748;
            margin-bottom: 0.5rem;
        }
        
        .benefit-item div p {
            color: #718096;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #be945a 0%, #a67c3a 100%);
            color: white;
            text-align: center;
            padding: 4rem 0;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-cta {
            display: inline-block;
            padding: 15px 30px;
            background: white;
            color: #be945a;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid white;
        }
        
        .btn-cta:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
        }
        
        .btn-outline-cta {
            display: inline-block;
            padding: 15px 30px;
            background: transparent;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid white;
        }
        
        .btn-outline-cta:hover {
            background: white;
            color: #be945a;
            transform: translateY(-3px);
        }