/* ===================================
   CSS VARIABLES & RESET
   =================================== */
:root {
    --primary-color: #1a365d;
    --secondary-color: #d4af37;
    --accent-color: #2563eb;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --black: #000000;
    
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #c19d2f;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a,
.top-bar-right span {
    margin-right: 25px;
    color: var(--white);
}

.top-bar-left a:hover {
    color: var(--secondary-color);
}

.top-bar-left i,
.top-bar-right i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    width: 90px;
    height: 70px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 26px;
    color: var(--primary-color);
}

.logo-text small {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu > li > a {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: 8px;
    min-width: 220px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 24px;
}

.footer-logo h3 span {
    color: var(--secondary-color);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a i {
    color: var(--secondary-color);
    font-size: 12px;
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 18px;
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--secondary-color);
    font-size: 18px;
    min-width: 20px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a:hover {
    color: var(--white);
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter-content h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-content h3 i {
    color: var(--secondary-color);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50px;
    font-size: 15px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}


/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    margin-top: -1px;
}

.hero-slider {
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 700px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 36px;
    font-size: 16px;
}

/* Swiper Customization */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--secondary-color);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 24px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ===================================
   QUICK SEARCH BAR
   =================================== */
.quick-search-bar {
    position: relative;
    margin-top: -80px;
    z-index: 100;
}

.search-form {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
}

.search-item label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.search-item label i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.search-item select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-color);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.search-item select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-search {
    width: 100%;
    padding: 16px 20px;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    background: var(--primary-color);
    padding: 80px 0;
    margin-top: 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.stat-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.stat-item:hover .stat-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.stat-item:hover .stat-icon i {
    color: var(--white);
}

.stat-content h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    margin-bottom: 5px;
}

.stat-content span {
    font-size: 36px;
    color: var(--secondary-color);
}

.stat-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* ===================================
   SECTIONS PADDING
   =================================== */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: var(--light-color);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-content {
    text-align: center;
    color: var(--white);
    animation: rotate-reverse 20s linear infinite;
}

@keyframes rotate-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.badge-content h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.badge-content p {
    font-size: 14px;
    line-height: 1.4;
}

.section-title.text-left {
    text-align: left;
    margin-bottom: 30px;
}

.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 20px;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-badge.badge-ongoing {
    background: var(--accent-color);
}

.project-badge.badge-completed {
    background: #10b981;
}

.project-content {
    padding: 25px;
}

.project-header {
    margin-bottom: 15px;
}

.project-header h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-color);
}

.project-location i {
    color: var(--secondary-color);
}

.project-desc {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-color);
}

.meta-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.meta-item span {
    font-weight: 500;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-choose-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,122.7C960,139,1056,181,1152,181.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.choose-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.choose-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.choose-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.choose-icon i {
    font-size: 36px;
    color: var(--white);
}

.choose-card:hover .choose-icon {
    transform: rotateY(360deg);
}

.choose-card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
}

.choose-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   SERVICES PREVIEW SECTION
   =================================== */
.services-preview-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 15px;
    background: var(--light-color);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px dashed var(--secondary-color);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

.service-icon i {
    font-size: 42px;
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card a {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.service-card a:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    background: var(--light-color);
    position: relative;
}

.testimonials-slider {
    margin-top: 50px;
    padding: 0 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 60px;
    color: var(--secondary-color);
    opacity: 0.2;
}

.testimonial-content {
    position: relative;
    z-index: 5;
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: #fbbf24;
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-color);
}

.author-info small {
    display: block;
    font-size: 13px;
    color: var(--secondary-color);
    margin-top: 3px;
}

/* Testimonials Navigation */
.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
}

.testimonials-slider .swiper-button-next::after,
.testimonials-slider .swiper-button-prev::after {
    font-size: 20px;
}

.testimonials-slider .swiper-button-next:hover,
.testimonials-slider .swiper-button-prev:hover {
    background: var(--secondary-color);
}

.testimonials-slider .swiper-pagination-bullet {
    background: var(--primary-color);
    width: 10px;
    height: 10px;
}

.testimonials-slider .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 5px;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95), rgba(15, 23, 42, 0.95)),
                url('assets/images/cta-bg.jpg') center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.page-header-content h1 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   ABOUT PAGE SPECIFIC
   =================================== */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.experience-badge h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 14px;
    line-height: 1.4;
}

.signature-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.signature-section img {
    width: 150px;
    margin-bottom: 15px;
}

.ceo-info h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.ceo-info span {
    font-size: 14px;
    color: var(--text-color);
}

/* Mission Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 36px;
    color: var(--white);
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.values-list {
    list-style: none;
    text-align: left;
}

.values-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.values-list li i {
    color: var(--secondary-color);
    font-size: 16px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
    bottom: 30px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.team-social a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.team-info {
    padding: 25px 20px;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-info span {
    display: block;
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.team-info p {
    font-size: 14px;
    color: var(--text-color);
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-10px);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.achievement-icon i {
    font-size: 36px;
    color: var(--white);
}

.achievement-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.achievement-card p {
    font-size: 14px;
    color: var(--text-color);
}

/* Process Timeline */
.process-timeline {
    max-width: 900px;
    margin: 50px auto 0;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -40px;
    width: 2px;
    background: var(--border-color);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 5;
}

.step-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
}

/* ===================================
   PROJECTS PAGE SPECIFIC
   =================================== */
.filter-section {
    background: var(--light-color);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    display: block;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Project Detail Card */
.project-detail-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 40px;
}

.project-detail-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.project-gallery-slider {
    height: 100%;
}

.project-gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    z-index: 10;
}

.project-status-badge.new {
    background: #ef4444;
}

.project-status-badge.ongoing {
    background: var(--accent-color);
}

.project-status-badge.completed {
    background: #10b981;
}

.project-detail-content {
    padding: 40px 40px 40px 0;
}

.project-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.project-detail-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.project-price {
    text-align: right;
}

.price-label {
    font-size: 14px;
    color: var(--text-color);
    display: block;
    margin-bottom: 5px;
}

.project-price h3 {
    font-size: 28px;
    color: var(--secondary-color);
}

.project-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 30px;
}

.project-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.feature-box i {
    font-size: 28px;
    color: var(--primary-color);
}

.feature-box strong {
    display: block;
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.feature-box span {
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.project-amenities,
.investment-highlights,
.project-payment-plan {
    margin-bottom: 30px;
}

.project-amenities h4,
.investment-highlights h4,
.project-payment-plan h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.amenities-list span {
    padding: 10px 18px;
    background: var(--light-color);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.amenities-list span i {
    color: var(--secondary-color);
}

.investment-highlights ul {
    list-style: none;
}

.investment-highlights li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.investment-highlights li i {
    color: var(--secondary-color);
}

.payment-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.payment-item {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.payment-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.payment-item span {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.project-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

/* ===================================
   PROPERTIES PAGE
   =================================== */
.properties-filter-section {
    background: var(--light-color);
    padding: 40px 0;
}

.advanced-search-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.advanced-search-box h3 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.advanced-search-box h3 i {
    color: var(--secondary-color);
}

.search-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.search-row:last-child {
    margin-bottom: 0;
}

.search-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-color);
    transition: var(--transition);
}

.search-field select:focus,
.search-field input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-search-submit {
    width: 100%;
    padding: 14px 20px;
    margin-top: 24px;
}

/* Listing Toolbar */
.listing-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.results-count {
    font-size: 16px;
    color: var(--text-color);
}

.results-count strong {
    color: var(--primary-color);
    font-size: 20px;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-options label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.sort-options select {
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.view-toggle {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.properties-grid.list-view {
    grid-template-columns: 1fr;
}

.properties-grid.list-view .property-card {
    display: grid;
    grid-template-columns: 400px 1fr;
}

.property-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.property-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-image-slider {
    height: 100%;
}

.property-image-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.property-badges span {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}

.badge-featured {
    background: #ef4444;
}

.badge-type {
    background: var(--primary-color);
}

.badge-rent {
    background: #10b981;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-color);
    transition: var(--transition);
    z-index: 10;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: var(--secondary-color);
    color: var(--white);
}

.property-content {
    padding: 25px;
}

.property-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.property-price h3 {
    font-size: 24px;
    color: var(--secondary-color);
}

.price-sqft {
    font-size: 13px;
    color: var(--text-color);
}

.property-title {
    margin-bottom: 10px;
}

.property-title a {
    font-size: 18px;
    color: var(--dark-color);
    transition: var(--transition);
}

.property-title a:hover {
    color: var(--primary-color);
}

.property-location {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-location i {
    color: var(--secondary-color);
}

.property-features {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-bottom: 15px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.property-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-color);
}

.property-features .feature i {
    font-size: 20px;
    color: var(--primary-color);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-info img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-info span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.property-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn {
    width: 36px;
    height: 36px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Pagination */
.pagination-wrapper {
    margin-top: 50px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
}

.page-item .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

.page-item.active .page-link,
.page-item .page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===================================
   SERVICES PAGE
   =================================== */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-overview-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.service-overview-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-overview-icon i {
    font-size: 42px;
    color: var(--white);
}

.service-overview-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-overview-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* Service Detail */
.service-detail-wrapper {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-wrapper.reverse {
    grid-template-columns: 1fr 500px;
}

.service-detail-image img {
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.service-label {
    display: inline-block;
    padding: 6px 20px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 30px;
}

.service-features-list h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.service-features-list ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-features-list li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features-list li i {
    color: var(--secondary-color);
    font-size: 18px;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-stats .stat {
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.service-stats .stat h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.service-stats .stat p {
    font-size: 14px;
    color: var(--text-color);
}

.service-benefits h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
}

.benefit-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.marketing-channels h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.channels-grid span {
    padding: 12px;
    background: var(--light-color);
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.channels-grid span i {
    color: var(--primary-color);
}

.investment-highlights h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.investment-highlights ul {
    list-style: none;
}

.investment-highlights li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.investment-highlights li i {
    color: var(--secondary-color);
}

.services-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    text-align: center;
}

.services-cta-content h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 15px;
}

.services-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   GALLERY PAGE
   =================================== */
.gallery-filter-section {
    background: var(--light-color);
    padding: 30px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.gallery-info h4 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 5px;
}

.gallery-info span {
    font-size: 14px;
    color: var(--secondary-color);
}

.gallery-zoom {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-zoom:hover {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 18px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 50px;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-icon i {
    font-size: 32px;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-info-card p a {
    color: var(--primary-color);
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* Contact Form & Map */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-container,
.contact-map-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form-container > p {
    color: var(--text-color);
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-color);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-message i {
    font-size: 20px;
}

.map-info-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.map-info-box h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-info-box p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-map {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

/* Book Visit Section */
.book-visit-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
}

.book-visit-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.book-visit-content > p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.visit-benefits {
    list-style: none;
}

.visit-benefits li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.visit-benefits li i {
    color: var(--secondary-color);
    font-size: 20px;
}

.book-visit-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.book-visit-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

/* Callback Section */
.callback-box {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    padding: 60px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.callback-content {
    color: var(--white);
    flex: 1;
}

.callback-content i {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.callback-content h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
}

.callback-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.callback-form {
    display: flex;
    gap: 15px;
    flex: 1;
}

.callback-form input,
.callback-form select {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 8px;
    font-size: 15px;
}

.callback-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.callback-form select {
    color: var(--white);
}

.callback-form select option {
    color: var(--dark-color);
}

/* FAQ Section */
.faq-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h4 {
    font-size: 18px;
    color: var(--dark-color);
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}