:root {
    --primary: #9ba4b5; /* Elegant grayish blue */
    --primary-dark: #394867; /* Navy blue */
    --secondary: #f1f6f9; /* Off white / ice */
    --accent: #212a3e; /* Darkest blue */
    --text-dark: #2c3338;
    --text-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 15px 35px rgba(33, 42, 62, 0.08);
    --shadow-soft: 0 5px 15px rgba(33, 42, 62, 0.05);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent);
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 100px 0; }
.bg-light { background-color: var(--secondary); }

/* Grids & Alignment */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.align-center { align-items: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--accent);
}

.btn-secondary:hover {
    background-color: #e2e8ec;
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 10px 24px;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 80px;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}

.logo i { color: var(--primary-dark); }
.logo span { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 1.2rem; }

.nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-dark);
    transition: width 0.3s ease;
}

.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--primary-dark); }

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--accent); }

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, rgba(241,246,249,1) 0%, rgba(255,255,255,1) 100%);
    overflow: hidden;
}

.hero-content {
    align-self: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(57, 72, 103, 0.1);
    color: var(--primary-dark);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-dark);
    font-style: italic;
}

.hero p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    border-top: 1px solid #e1e7ec;
    padding-top: 20px;
}

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

.stat-item i {
    color: #fbbf24;
}

.hero-img {
    position: relative;
}

.hero-img .main-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.hero-img .sub-img {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 45%;
    border-radius: var(--radius);
    border: 8px solid var(--white);
    box-shadow: var(--shadow);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header h2 span { color: var(--primary-dark); }
.section-header p { color: #666; font-size: 1.05rem; }

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(57, 72, 103, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(57, 72, 103, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background: var(--primary-dark);
    color: var(--white);
}

.service-card h3 { margin-bottom: 15px; font-size: 1.4rem; }
.service-card p { font-size: 0.95rem; color: #666; }

/* Showcase (Before/After) */
.showcase-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.img-wrapper {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect ratio */
}

.img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover .img-wrapper img {
    transform: scale(1.05);
}

.label-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(33, 42, 62, 0.85);
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* Gallery / Facilities */
.gallery-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.gallery-text p { margin-bottom: 30px; font-size: 1.05rem; }

.feature-list { list-style: none; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary-dark);
    background: rgba(57, 72, 103, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.rounded-img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.mt-2 { margin-top: 40px; }

/* Contact CTA */
.contact-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow);
}

.contact-box h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

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

/* Footer */
.footer {
    background-color: var(--white);
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .logo { font-size: 1.3rem; }
.footer p { color: #888; font-size: 0.9rem; }

.socials { display: flex; gap: 15px; }
.socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--accent);
    border-radius: 50%;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* WA Float */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-float:hover { transform: scale(1.15); }

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    h1 { font-size: 2.8rem !important; }
    .hero-img .sub-img { display: none; }
    .mt-2 { margin-top: 0; }
    .gallery-images { gap: 20px; }
    .contact-details { flex-direction: column; gap: 20px; align-items: center; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .menu-toggle { display: block; }
    .header-cta { display: none; }
    .hero { text-align: center; }
    .hero-btns, .hero-stats { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .contact-box { padding: 40px 20px; }
    .contact-box h2 { font-size: 2rem; }
}
