/* ============================================
   LANDCITY PROPERTIES - COMPLETE STYLESHEET
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #0f3b3b;
    --secondary-color: #b8860b;
    --gold: #b8860b;
    --gold-light: #d4a843;
    --accent-color: #d4a843;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-cream: #f5f0e8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

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

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

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

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

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--secondary-color);
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loader h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.loader h2 span {
    color: var(--secondary-color);
}

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

/* ============================================
   ADVERT OVERLAY
   ============================================ */
.ad-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.4s ease;
}

.ad-card {
    max-width: 520px;
    width: 90%;
    background: #fff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0,0,0,0.4);
    animation: fadeUp 0.4s ease;
    cursor: default;
    position: relative;
}

.ad-card img {
    width: 100%;
    height: auto;
    display: block;
}

.ad-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 40px;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: 0.2s;
    z-index: 1;
}

.ad-close:hover {
    background: var(--gold);
}

@keyframes fadeUp {
    from { opacity: 0; transform: scale(0.95) translateY(20px);}
    to { opacity: 1; transform: scale(1) translateY(0);}
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text span {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

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

.admin-link {
    background: var(--secondary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.admin-link:hover {
    background: #9e7609;
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
    background: #9e7609;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.4);
}

.btn-outline {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 88vh;
    min-height: 550px;
    background: var(--primary-color);
    overflow: hidden;
}

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

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

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

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,59,59,0.85) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.hero-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-address i {
    margin-top: 4px;
    color: var(--gold);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.dot.active, .dot:hover {
    background: var(--gold);
    width: 28px;
}

/* ============================================
   OFFER BANNER
   ============================================ */
.offer-banner {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.offer-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.offer-card {
    background: rgba(255,255,255,0.1);
    padding: 1.2rem 2rem;
    border-radius: 2rem;
    backdrop-filter: blur(4px);
}

.offer-card h3 {
    font-size: 1.9rem;
    color: var(--gold);
}

.offer-card p {
    font-size: 0.9rem;
}

.offer-card small {
    display: block;
    margin-top: 0.5rem;
    opacity: 0.8;
    font-size: 0.85rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 5rem 0;
}

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

.section-subtitle {
    display: inline-block;
    background: rgba(184, 134, 11, 0.1);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 1.5rem;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--primary-color);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   LAYOUT PLAN SECTION
   ============================================ */
.layout-plan-section {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.layout-plan-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.plan-img {
    max-width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    margin-top: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.plan-img:hover {
    transform: scale(1.02);
}

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

.gallery-item {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.15);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s;
}

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

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

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

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-price {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem !important;
    opacity: 1 !important;
    margin-top: 4px;
}

/* ============================================
   TEAM SECTION - ROBUST STYLING
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.team-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.2);
    transition: var(--transition);
    position: relative;
}

.team-avatar::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold-light);
    transition: var(--transition);
    opacity: 0;
}

.team-card:hover .team-avatar::after {
    opacity: 1;
    animation: spin 3s linear infinite;
}

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

.team-card:hover .team-avatar img {
    transform: scale(1.12);
}

.team-card h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.team-role {
    display: inline-block;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(212, 168, 67, 0.1));
    color: var(--secondary-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.team-card:hover .team-role {
    background: var(--secondary-color);
    color: white;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.team-contact {
    width: 100%;
    margin-top: auto;
    padding: 14px 18px;
    background: rgba(184, 134, 11, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(184, 134, 11, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-card:hover .team-contact {
    background: rgba(184, 134, 11, 0.08);
    border-color: var(--secondary-color);
}

.team-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    background: white;
}

.team-contact a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateX(5px);
}

.team-contact i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.team-contact .fa-whatsapp {
    color: #25D366;
}

.team-contact .fa-phone {
    color: var(--secondary-color);
}

.team-contact .fa-envelope {
    color: #3b82f6;
}

.team-contact a:hover i {
    color: white;
    transform: scale(1.2);
}

/* Team Social Links */
.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.team-social a {
    width: 38px;
    height: 38px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 0.95rem;
}

.team-social a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

/* Empty Team State */
.team-card.empty-state {
    opacity: 0.7;
    border: 2px dashed var(--border-color);
    background: var(--bg-light);
}

.team-card.empty-state:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    border-color: var(--border-color);
}

.team-card.empty-state .team-avatar {
    border-color: var(--border-color);
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.mission-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mission-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.mission-card blockquote {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    border-left: 3px solid var(--secondary-color);
    padding-left: 20px;
    text-align: left;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.contact-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 4px;
}

.contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group textarea {
    border-radius: var(--radius-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-color);
    color: #e2e8f0;
    padding: 60px 0 0;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
    color: white;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: white;
}

.footer-logo span span {
    color: var(--secondary-color);
}

.footer-brand p {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-contact {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 8px;
}

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

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

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

.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

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

.footer-links ul li a {
    color: #94a3b8;
    transition: var(--transition);
}

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

.footer-newsletter h4 {
    color: white;
    margin-bottom: 8px;
}

.footer-newsletter p {
    color: #94a3b8;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #9e7609;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    text-decoration: none;
}

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

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* ============================================
   FLOATING SOCIAL ICONS
   ============================================ */
.floating-whatsapp {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 998;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: #20bd5a;
}

.tooltip {
    position: absolute;
    background: #1e293b;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    left: 75px;
    bottom: 50%;
    transform: translateY(50%);
}

.floating-whatsapp:hover .tooltip {
    opacity: 1;
    visibility: visible;
    left: 70px;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.8rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .about-content { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px 24px;
        transition: var(--transition);
        gap: 24px;
        z-index: 999;
    }
    
    .nav-menu.active { left: 0; }
    
    .hero-content h1 { font-size: 2.4rem; }
    
    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }
    
    .section-header h2 { font-size: 2.2rem; }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .offer-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-whatsapp {
        left: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .tooltip { display: none; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .gallery-grid { grid-template-columns: 1fr; }
    
    .floating-whatsapp {
        left: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
}