/* ========================================
   FRIENDLY PROPERTIES - PREMIUM REAL ESTATE CSS
   ======================================== */

/* ---- CSS Variables ---- */
:root {
    --primary: #1a5276;
    --primary-light: #2980b9;
    --primary-dark: #0e2f44;
    --accent: #e8a838;
    --accent-light: #f0c36d;
    --accent-dark: #c78c1e;
    --gradient-1: linear-gradient(135deg, #1a5276 0%, #2980b9 50%, #1abc9c 100%);
    --gradient-2: linear-gradient(135deg, #e8a838 0%, #f0c36d 100%);
    --gradient-text: linear-gradient(135deg, #2980b9, #1abc9c, #e8a838);
    --bg-primary: #f8fafb;
    --bg-dark: #0d1b2a;
    --bg-dark-card: #1b2d42;
    --bg-dark-card-hover: #213a54;
    --text-primary: #1a1a2e;
    --text-secondary: #5a6a7e;
    --text-light: #c8d6e5;
    --white: #ffffff;
    --border-light: rgba(26, 82, 118, 0.1);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(41, 128, 185, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary-light);
    color: var(--white);
}

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

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

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1050;
}

.navbar.scrolled {
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    font-size: 1.8rem;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(232, 168, 56, 0.4));
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.brand-highlight {
    color: var(--accent);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

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

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

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

.dropdown-toggle::after {
    border: none;
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 0.7rem;
    vertical-align: middle;
    margin-left: 4px;
}

.dropdown-menu {
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 8px;
    margin-top: 10px !important;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(41, 128, 185, 0.2);
    color: var(--accent);
}

.btn-cta-nav {
    background: var(--gradient-2);
    color: var(--primary-dark) !important;
    font-weight: 600;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(232, 168, 56, 0.3);
    border: none;
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 168, 56, 0.5);
    color: var(--primary-dark) !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../img/hero-banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.92) 0%, rgba(26, 82, 118, 0.8) 50%, rgba(13, 27, 42, 0.9) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(232, 168, 56, 0.4);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(232, 168, 56, 0.15);
    border: 1px solid rgba(232, 168, 56, 0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero-primary {
    background: var(--gradient-2);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(232, 168, 56, 0.35);
    border: none;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 168, 56, 0.5);
    color: var(--primary-dark);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

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

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(232, 168, 56, 0.3);
}

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

/* ========================================
   SECTION COMMONS
   ======================================== */
.section-padding {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--white);
}

.section-header {
    margin-bottom: 20px;
}

.section-badge {
    display: inline-block;
    background: rgba(41, 128, 185, 0.1);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(41, 128, 185, 0.2);
    margin-bottom: 14px;
}

.section-dark .section-badge {
    background: rgba(232, 168, 56, 0.1);
    color: var(--accent);
    border-color: rgba(232, 168, 56, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-desc {
    color: var(--text-light);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 480px;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-heading {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.about-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-telugu-card {
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.08), rgba(41, 128, 185, 0.08));
    border: 1px solid rgba(232, 168, 56, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.telugu-header {
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.about-text-telugu {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 2;
    margin: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

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

.about-feature-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.service-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    background: var(--bg-dark-card-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(41, 128, 185, 0.3);
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.3);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.service-desc {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-text);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.1), rgba(26, 188, 156, 0.1));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-light);
    margin-bottom: 18px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient-1);
    color: var(--white);
    transform: scale(1.1);
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.why-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   MISSION & VISION
   ======================================== */
.mv-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(41, 128, 185, 0.3);
    box-shadow: var(--shadow-glow);
}

.mv-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.3);
}

.vision-card .mv-icon-wrap {
    background: var(--gradient-2);
    box-shadow: 0 8px 25px rgba(232, 168, 56, 0.3);
}

.mv-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.mv-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.mv-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(41, 128, 185, 0.06);
}

.vision-card .mv-decoration {
    background: rgba(232, 168, 56, 0.06);
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--border-light);
}

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

.gallery-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.gallery-tag {
    background: var(--gradient-2);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-info {
    padding: 20px 24px;
}

.gallery-info h5 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.gallery-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.gallery-info p i {
    color: var(--accent);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(41, 128, 185, 0.3);
    transform: translateX(6px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.contact-info-card h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-card a,
.contact-info-card p {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

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

.contact-form-wrap {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-floating > .form-control {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 168, 56, 0.15);
    color: var(--white);
}

.form-floating > label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--accent);
}

.consent-check {
    padding-left: 28px;
}

.consent-check .form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    cursor: pointer;
    margin-left: -28px;
}

.consent-check .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.consent-check .form-check-label {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    cursor: pointer;
}

.btn-submit {
    background: var(--gradient-2);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1rem;
    border: none;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(232, 168, 56, 0.35);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 168, 56, 0.5);
    color: var(--primary-dark);
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    position: relative;
    line-height: 0;
}

.map-section iframe {
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.3s ease;
}

.map-section:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

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

.footer-social a:hover {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-light);
}

.footer-bottom a {
    color: var(--accent);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.floating-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1040;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.12);
    color: var(--white);
}

.whatsapp-btn {
    background: #25D366;
    animation: pulseGlow 2s infinite;
}

.call-btn {
    background: var(--gradient-1);
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.float-tooltip {
    position: absolute;
    right: 68px;
    background: rgba(13, 27, 42, 0.95);
    color: var(--white);
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 46px;
    height: 46px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1040;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--white);
    transform: translateY(-4px);
}

/* ========================================
   FORM ALERTS
   ======================================== */
.form-alert-success {
    background: rgba(26, 188, 156, 0.15);
    border: 1px solid rgba(26, 188, 156, 0.3);
    color: #1abc9c;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alert-error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ========================================
   LEGAL PAGES (Terms & Privacy)
   ======================================== */
.legal-hero {
    background: var(--bg-dark);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(41, 128, 185, 0.05);
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.legal-hero p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 36px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p, .legal-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.9;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--text-primary);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(13, 27, 42, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .btn-cta-nav {
        display: inline-block;
        margin-top: 10px;
    }

    .hero-section {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-image {
        height: 350px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrap {
        padding: 24px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-stats {
        gap: 24px;
    }

    .about-experience-badge {
        right: 10px;
        bottom: -15px;
    }

    .exp-number {
        font-size: 1.8rem;
    }

    .why-card {
        padding: 28px 20px;
    }

    .mv-card {
        padding: 32px 24px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.7rem;
    }
}

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--border-light);
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary-light) !important;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: var(--white);
    color: var(--primary-dark);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 24px;
    border: none;
    box-shadow: none !important;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.06), rgba(26, 188, 156, 0.06));
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a5276'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e8a838'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 18px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.accordion-body a {
    color: var(--primary-light);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(41, 128, 185, 0.3);
    text-underline-offset: 3px;
}

.accordion-body a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

/* Smooth scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
