/* 
   =============================================================================
   BARIKA REAL ESTATE - MAIN STYLESHEET
   ============================================================================= 
*/

:root {
    /* Color Palette */
    --primary-blue: #0A1128;
    --primary-orange: #FF5A00;
    --bg-light: #F8F9FA;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Shadows */
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.text-orange {
    color: var(--primary-orange);
}

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

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.text-center {
    text-center: center;
}
.section-title {
    margin-bottom: 3rem;
    text-align: center;
}
.section-title h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: #e04e00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 90, 0, 0.3);
}

.w-100 {
    width: 100%;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-blue);
    color: #a0aabf;
    font-size: 0.85rem;
    padding: 10px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left span {
    margin-right: 20px;
}
.top-bar-left i {
    color: var(--primary-orange);
    margin-right: 5px;
}
.top-bar-right a {
    color: #a0aabf;
    margin-left: 15px;
}
.top-bar-right a:hover {
    color: var(--primary-orange);
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}
.logo-icon {
    background: var(--primary-orange);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1.2rem;
}
.logo small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    display: block;
    line-height: 1;
}

.main-nav .nav-links {
    display: flex;
    gap: 30px;
}
.main-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-blue);
    text-transform: uppercase;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--primary-orange);
}

/* Dropdown Menu */
.main-nav .dropdown {
    position: relative;
}
.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 100;
    padding: 10px 0;
    border-top: 3px solid var(--primary-orange);
    display: flex;
    flex-direction: column;
}
.main-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .dropdown-menu li {
    margin: 0;
}
.main-nav .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    font-size: 0.95rem;
    text-transform: none;
    font-weight: 500;
}
.main-nav .dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-orange);
    padding-left: 25px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Slider */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
}
.swiper {
    width: 100%;
    height: 100%;
}
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,17,40,0.8) 0%, rgba(10,17,40,0.4) 50%, rgba(0,0,0,0) 100%);
}
.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
    padding-left: 5%;
}
.slide-content h5 {
    color: var(--primary-orange);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.slide-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.slide-content p {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.9;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition-fast);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-orange);
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem;
}
.swiper-pagination-bullet-active {
    background: var(--primary-orange);
}

.experience-badge {
    position: absolute;
    bottom: -75px;
    left: 10%;
    background: var(--white);
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 20;
    border: 5px solid var(--bg-light);
}
.experience-badge .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}
.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    text-transform: uppercase;
}

/* About Section */
.about-section {
    position: relative;
    background-size: cover;
    background-position: center;
}
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.9);
    z-index: 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-content h4 {
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.about-content h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}
.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.feature-list li {
    font-weight: 600;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--primary-orange);
    transition: var(--transition-smooth);
}
.stat-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}
.stat-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}
.stat-card h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}
.stat-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-blue);
    transition: var(--transition-smooth);
    z-index: -1;
}
.service-card:hover::before {
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover h3, .service-card:hover p, .service-card:hover .read-more {
    color: var(--white);
}
.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}
.service-card:hover .service-img {
    transform: scale(1.05);
}
.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    transition: var(--transition-fast);
}
.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}
.read-more {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.read-more i {
    transition: transform 0.3s;
}
.service-card:hover .read-more i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.85);
}
.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}
.cta-text h4 {
    color: var(--primary-orange);
    letter-spacing: 2px;
}
.cta-text h2 {
    font-size: 2.5rem;
    max-width: 600px;
    margin-top: 10px;
}
.play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
}
.play-btn::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 90, 0, 0.5);
    border-radius: 50%;
    animation: ripple 1.5s infinite linear;
}
@keyframes ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}
.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top center;
}
.team-info {
    padding: 20px;
    background: var(--bg-light);
}
.team-info h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.team-info p {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ & Contact Section */
.faq-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.faq-area h4, .contact-area h4 {
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.faq-area h2, .contact-area h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
}
.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.accordion-header {
    padding: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}
.accordion-item.active .accordion-header {
    background: var(--primary-blue);
    color: var(--white);
}
.accordion-header i {
    transition: transform 0.3s;
}
.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}
.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
}
.accordion-item.active .accordion-body {
    padding: 20px;
    max-height: 500px; /* arbitrary large value */
}

.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-fast);
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.1);
}

/* Footer */
.main-footer {
    background: var(--primary-blue);
    color: #a0aabf;
    padding-top: 80px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-col h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
}
.footer-col p {
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 300px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
}
.social-links a:hover {
    background: var(--primary-orange);
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul a {
    color: #a0aabf;
}
.footer-col ul a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .slide-content h1 { font-size: 3.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .cta-content { flex-direction: column; text-align: center; gap: 30px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .main-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .slide-content h1 { font-size: 2.5rem; }
    .experience-badge { display: none; }
    .team-grid { grid-template-columns: 1fr; }
    .faq-contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .ceo-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr !important; }
}

/* Inner Pages Banner */
.inner-banner {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: left;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.7);
}
.banner-content {
    position: relative;
    z-index: 10;
}
.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.breadcrumb {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.breadcrumb a {
    color: var(--white);
}
.breadcrumb a:hover {
    color: var(--primary-orange);
}
.breadcrumb span {
    color: var(--primary-orange);
}

/* CEO Section */
.line-left, .line-right {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
    vertical-align: middle;
    margin: 0 10px;
}
.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}
.ceo-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}
.ceo-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.ceo-name strong {
    font-size: 1.2rem;
    color: var(--primary-blue);
}
.ceo-name span {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Mission & Vision Section */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: center;
}
.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.mv-card h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}
.mv-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.mv-card strong {
    color: var(--primary-blue);
}

/* Contact Info Section */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #eee;
    transition: var(--transition-fast);
}
.info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 90, 0, 0.3);
}
.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 90, 0, 0.1);
    color: var(--primary-orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.info-details h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.info-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Main Contact Form */
.main-contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.main-contact-form .form-group {
    margin-bottom: 20px;
    position: relative;
}
.main-contact-form input, .main-contact-form select, .main-contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition-fast);
    appearance: none; /* For select */
}
.main-contact-form input:focus, .main-contact-form select:focus, .main-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
}
.icon-right i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    pointer-events: none;
}

/* Service Details Page */
.service-details {
    line-height: 1.8;
}
.service-details h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}
.service-details h3 {
    color: var(--primary-orange);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}
.service-details p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.service-details ul {
    margin-bottom: 30px;
}
.service-details ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 1.05rem;
}
.service-details ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-orange);
}
.service-details ul li strong {
    color: var(--primary-blue);
}
