/* 
 * Halaya Realtors - Professional Real Estate CSS
 * Color Theme based on logo: Deep Blue (#1A4B8C) + Gold (#D4AF37) + White (#FFFFFF)
 */

:root {
    --primary-blue: #1A4B8C;      /* Deep Trust Blue */
    --secondary-gold: #D4AF37;    /* Luxury Gold */
    --accent-teal: #2A9D8F;       /* Professional Teal */
    --light-gray: #F8F9FA;        /* Light Background */
    --dark-gray: #343A40;         /* Text Color */
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Logo Styling */
.logo-container {
    padding: 10px 0;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-primary {
    color: var(--primary-blue);
    font-size: 1.8rem;
    display: block;
    line-height: 1;
}

.logo-secondary {
    color: var(--secondary-gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    margin: 0 5px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue) !important;
    background-color: rgba(26, 75, 140, 0.05);
}

.nav-btn {
    background-color: var(--secondary-gold) !important;
    border: none !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    margin-left: 10px;
}

.nav-btn:hover {
    background-color: #C39B2D !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 75, 140, 0.85), rgba(26, 75, 140, 0.9)), 
                url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 100px;
    margin-top: -20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.search-container {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

/* Property Cards */
.property-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.property-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
}

.property-price {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
	list-style: none;
    padding: 0;
}

.property-features li {
    display: inline-block;
    margin-right: 15px;
    color: var(--dark-gray);
}

.property-features i {
    color: var(--secondary-gold);
    margin-right: 5px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #15396e !important;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-gold) !important;
    border-color: var(--secondary-gold) !important;
    color: var(--white) !important;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

/* Section Titles - Always Full Width Underline */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-gold);
}

/* For center aligned text */
.text-center .section-title {
    text-align: center;
}

/* Different underline colors */
.section-title.underline-blue:after {
    background: var(--primary-blue);
}

.section-title.underline-teal:after {
    background: var(--accent-teal);
}

.section-bg {
    background-color: var(--light-gray);
}

/* Services */
.service-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo .logo-primary {
    color: var(--white);
}

.footer-links h5 {
    color: var(--secondary-gold);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo-primary {
        font-size: 1.5rem;
    }
    
    .logo-secondary {
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-btn {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* -------------------- BEGIN: Indian Styling Additions -------------------- */

/* Indian Rupee Symbol Styling */
.rupee-symbol {
    font-family: Arial, sans-serif;
    font-weight: bold;
}

/* Property price with Indian formatting */
.property-price {
    color: #1A4B8C;
    font-weight: 700;
    font-size: 1.5rem;
}

.property-price .rupee {
    font-family: 'Arial', sans-serif;
    margin-right: 2px;
}

/* Indian city cards */
.city-card {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #1A4B8C;
}

.city-icon {
    color: #1A4B8C;
    opacity: 0.8;
}

.city-name {
    color: #1A4B8C;
    font-weight: 600;
}

/* Indian flag colors for special elements */
.indian-flag-theme {
    background: linear-gradient(to right, #FF9933, #FFFFFF, #138808);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

/* WhatsApp button styling */
.whatsapp-contact {
    border-left: 4px solid #25D366;
}

.btn-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

/* Indian festivals/holidays banner */
.festival-banner {
    background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    color: #1A4B8C;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
}

/* Indian address formatting */
.address-indian {
    line-height: 1.8;
}

.address-indian .pincode {
    font-weight: bold;
    color: #1A4B8C;
}

/* Business hours with IST label */
.business-hours .ist-badge {
    background-color: #1A4B8C;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 5px;
}

/* Property features with Indian context */
.property-features-indian li {
    display: inline-block;
    margin-right: 15px;
    color: var(--dark-gray);
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.property-features-indian i {
    color: var(--secondary-gold);
    margin-right: 5px;
}

/* Price range filter with Indian units */
.price-filter .price-unit {
    font-size: 0.85rem;
    color: #666;
    margin-left: 3px;
}

/* Mobile responsiveness for Indian phone numbers */
@media (max-width: 576px) {
    .phone-number-indian {
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    .whatsapp-contact {
        font-size: 0.85rem;
    }
}

/* Print styles for Indian documents */
@media print {
    .property-price {
        color: #000 !important;
    }
    
    .rupee-symbol {
        font-family: 'Times New Roman', serif;
    }
    
    .address-indian {
        page-break-inside: avoid;
    }
}

/* -------------------- END: Indian Styling Additions -------------------- */

/* -------------------- BEGIN: Bootstrap Dropdown Styling -------------------- */

/* Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
    min-width: 220px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Items */
.dropdown-item {
    padding: 12px 20px;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.dropdown-item:hover {
    background-color: rgba(26, 75, 140, 0.05);
    color: var(--primary-blue);
    padding-left: 25px;
}

.dropdown-item:active {
    background-color: rgba(26, 75, 140, 0.1);
}

/* Active dropdown item */
.dropdown-item.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Dropdown divider */
.dropdown-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 8px 0;
}

/* Dropdown header */
.dropdown-header {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    margin-bottom: 5px;
}

/* Special dropdown for Indian cities */
.indian-cities-dropdown .dropdown-item {
    padding-left: 15px;
    position: relative;
}

.indian-cities-dropdown .dropdown-item::before {
    content: "📍";
    position: absolute;
    left: 20px;
    opacity: 0.6;
}

.indian-cities-dropdown .dropdown-item:hover::before {
    opacity: 1;
}

/* Property type dropdown */
.property-type-dropdown .dropdown-item {
    padding-left: 45px;
}

.property-type-dropdown .dropdown-item i {
    position: absolute;
    left: 20px;
    color: var(--secondary-gold);
    width: 20px;
    text-align: center;
}

/* Navbar dropdown toggle styling */
.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.nav-link.dropdown-toggle {
    position: relative;
}

.nav-link.dropdown-toggle:hover::after {
    border-top-color: var(--primary-blue);
}

/* Mega dropdown for Indian cities */
.mega-dropdown {
    position: static !important;
}

.mega-dropdown-menu {
    width: 100%;
    padding: 20px;
    margin-top: 0;
    border-radius: 0 0 10px 10px;
}

.mega-dropdown-column h6 {
    color: var(--primary-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary-gold);
}

.mega-dropdown-column ul {
    list-style: none;
    padding: 0;
}

.mega-dropdown-column li {
    margin-bottom: 8px;
}

.mega-dropdown-column a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
    padding: 5px 0;
    display: block;
}

.mega-dropdown-column a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

/* Dropdown with Indian theme */
.dropdown-indian .dropdown-header {
    background: linear-gradient(to right, #FF9933, #FFFFFF, #138808);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

/* -------------------- END: Bootstrap Dropdown Styling -------------------- */

/* -------------------- BEGIN: User Menu Dropdown -------------------- */

/* User menu specific styles */
.user-menu .dropdown-toggle {
    padding: 8px 12px !important;
    border-radius: 50px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-menu .dropdown-toggle:hover {
    background-color: rgba(26, 75, 140, 0.08) !important;
}

.user-menu .dropdown-toggle:after {
    display: none; /* Hide default arrow */
}

/* User avatar circle */
.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* User info in dropdown */
.user-dropdown-header {
    padding: 20px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-teal));
    color: white;
    border-radius: 8px 8px 0 0;
}

.user-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.user-email {
    font-size: 0.85rem;
    opacity: 0.9;
    word-break: break-all;
}

/* User dropdown menu */
.user-dropdown-menu {
    min-width: 280px;
    padding: 0;
    margin-top: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

/* Dropdown items for user menu */
.user-dropdown-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-gray);
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.user-dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.user-dropdown-item:hover {
    background-color: rgba(26, 75, 140, 0.05);
    color: var(--primary-blue);
    border-left-color: var(--secondary-gold);
    padding-left: 25px;
}

.user-dropdown-item.active {
    background-color: rgba(26, 75, 140, 0.08);
    color: var(--primary-blue);
    font-weight: 500;
    border-left-color: var(--primary-blue);
}

/* User dropdown divider */
.user-dropdown-divider {
    margin: 8px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Notification badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #dc3545;
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* User role badge */
.user-role {
    background-color: var(--secondary-gold);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: auto;
}

/* Logout button special styling */
.logout-item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

.logout-item .user-dropdown-item {
    color: #dc3545;
}

.logout-item .user-dropdown-item i {
    color: #dc3545;
}

.logout-item .user-dropdown-item:hover {
    background-color: rgba(220, 53, 69, 0.05);
    color: #dc3545;
    border-left-color: #dc3545;
}

/* Agent specific styles */
.agent-badge {
    background-color: var(--accent-teal);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 5px;
}

/* Login/Signup buttons when user is not logged in */
.auth-buttons .btn-login {
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    background: transparent;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.auth-buttons .btn-login:hover {
    background-color: var(--primary-blue);
    color: white;
}

.auth-buttons .btn-signup {
    background: linear-gradient(to right, var(--primary-blue), var(--accent-teal));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.auth-buttons .btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 75, 140, 0.2);
}

/* -------------------- END: User Menu Dropdown -------------------- */

/* -------------------- Mobile Navbar & Dropdown Fixes -------------------- */

@media (max-width: 991px) {
    /* Fix for navbar collapse on mobile */
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        z-index: 1050;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 20px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .navbar-collapse:not(.show) {
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
    }
    
    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Stack navbar items vertically on mobile */
    .navbar-nav {
        width: 100%;
        padding: 0 15px;
    }
    
    .nav-item {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .nav-link {
        text-align: center;
        padding: 15px !important;
        margin: 0;
        border-radius: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* User menu on mobile */
    .user-menu {
        width: 100%;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .user-menu .dropdown-toggle {
        justify-content: center;
        width: 100%;
        padding: 15px !important;
    }
    
    /* Fix dropdown menu on mobile */
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 10px 0 !important;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: none;
        animation: none;
    }
    
    /* User dropdown specific fixes */
    .user-dropdown-menu {
        min-width: 100%;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.08);
        margin: 10px 0 !important;
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* User dropdown items on mobile */
    .user-dropdown-item {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .user-dropdown-item:last-child {
        border-bottom: none;
    }
    
    .user-dropdown-header {
        position: sticky;
        top: 0;
        z-index: 1;
        padding: 15px;
    }
    
    /* Fix for user avatar on mobile */
    .user-avatar {
        width: 40px;
        height: 40px;
    }
    
    .user-name {
        font-size: 1rem;
    }
    
    /* Mobile Schedule Viewing Button in dropdown */
    .d-md-none.mt-3.px-3 {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 15px !important;
        margin-top: 0 !important;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 2;
    }
    
    /* Hide desktop schedule viewing button */
    .nav-item.d-none.d-lg-block {
        display: none !important;
    }
    
    /* Fix for dropdown toggles */
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 10px;
    }
    
    /* Prevent body scrolling when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* Custom scrollbar for dropdowns */
.user-dropdown-menu::-webkit-scrollbar {
    width: 5px;
}

.user-dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.user-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

.user-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #15396e;
}

/* Fix for mobile devices under 576px */
@media (max-width: 576px) {
    .navbar-collapse {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    .user-dropdown-menu {
        max-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .logo-primary {
        font-size: 1.3rem;
    }
    
    .logo-secondary {
        font-size: 0.8rem;
    }
}

/* Fix for dropdown toggle arrow */
.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Ensure proper z-index */
.navbar {
    z-index: 1030;
}

.dropdown-menu {
    z-index: 1050;
}

/* Sticky navbar fix */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* Additional badge styles */
.premium-badge {
    background-color: var(--secondary-gold);
    color: var(--white);
}

.basic-badge {
    background-color: var(--accent-teal);
    color: var(--white);
}

.builder-badge {
    background-color: #6f42c1;
    color: var(--white);
}

.agency-badge {
    background-color: #20c997;
    color: var(--white);
}

/* Notification badge when inside dropdown */
.notification-badge.position-static {
    position: static !important;
    margin-left: auto;
    font-size: 0.7rem;
    width: auto;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
}

/* Contact Page Enhancements */
.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(26, 75, 140, 0.02);
    border-radius: 8px;
    padding: 1rem;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(26, 75, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-teal));
    z-index: 1;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-icons a.facebook { background: #1877F2; color: white; }
.social-icons a.twitter { background: #1DA1F2; color: white; }
.social-icons a.instagram { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
}
.social-icons a.whatsapp { background: #25D366; color: white; }
.social-icons a.youtube { background: #FF0000; color: white; }
.social-icons a.linkedin { background: #0A66C2; color: white; }

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}