:root {
    --primary-navy: #002147;
    --accent-gold: #FFD700;
    --whatsapp-green: #25D366;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

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

/* Navbar Style */
.navbar {
    background-color: var(--primary-navy);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.brand-ssk {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.8rem;
}

.brand-realty {
    color: var(--white);
    font-weight: 300;
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s;
}

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

.btn-primary-ssk {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-weight: 600;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-primary-ssk:hover {
    background-color: var(--white);
    color: var(--primary-navy);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 33, 71, 0.6);
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

/* Project Cards */
.project-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-current {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

.badge-completed {
    background-color: var(--primary-navy);
    color: var(--white);
}

/* Footer */
.footer {
    background-color: #00152e;
    color: var(--white);
}

.footer h5 {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    background-color: #000c1a;
    font-size: 0.9rem;
}

/* Amenities */
.amenity-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* Navigation & Buttons */
.btn-tour-ssk {
    background-color: transparent;
    color: white;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-tour-ssk:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

/* Project Detail Specific */
.detail-hero {
    height: 100vh;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.hero-label-main {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    display: block;
}

.btn-navy-ssk {
    background-color: var(--primary-navy) !important;
    color: white !important;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.btn-navy-ssk:hover {
    background-color: var(--accent-gold) !important;
    color: var(--primary-navy) !important;
}

.btn-whatsapp-large {
    background-color: #25D366;
    color: white;
    padding: 15px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.btn-call-large {
    background-color: #f0f0f0;
    color: #333;
    padding: 15px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.section-heading {
    font-weight: 800;
    font-size: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.check-icon {
    color: #007bff;
    font-size: 1.5rem;
    margin-top: 5px;
}

.floor-plan-box img {
    border: 1px solid #ddd;
    padding: 10px;
    background: white;
    transition: transform 0.3s;
    max-width: 80%;
}

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

.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-label-main {
        font-size: 3rem;
    }
}