@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --primary-color: #0f2b46;
    /* Deep Royal Blue */
    --primary-light: #1a3c5e;
    --secondary-color: #d4af37;
    /* Metallic Gold */
    --secondary-hover: #b5952f;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold {
    color: var(--secondary-color);
}

.text-primary {
    color: var(--primary-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 43, 70, 0.3);
}

.btn-accent {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-accent:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-call {
    background-color: #25d366;
    /* WhatsApp Green */
    color: white;
}

.btn-call:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.section-padding {
    padding: 100px 0;
}

/* Header */
header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--text-light);
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}

.logo-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.logo-service {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 43, 70, 0.7), rgba(15, 43, 70, 0.5)), url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Featured Services Box */
.features-overlap {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-light), #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-sm);
}

.feature-icon-box i {
    font-size: 32px;
    color: var(--secondary-color);
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Services */
.services-section {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.service-card-premium {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;

}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-premium:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(4px);
}

/* Quality Badge Section */
.quality-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    background-image:
        linear-gradient(rgba(15, 43, 70, 0.9), rgba(15, 43, 70, 0.9)),
        url('https://www.transparenttextures.com/patterns/dark-matter.png');
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.quality-item i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.quality-item h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.quality-item p {
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: #0b1e33;
    color: #e0e6ed;
    padding-top: 80px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #a0aec0;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #051321;
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background: radial-gradient(circle at center, var(--secondary-color) 0%, transparent 70%);
}

.page-header h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 1.2rem;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* Service Detail Item (Redesigned) */
.service-detail-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
    min-width: 400px;
    min-height: 400px;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.service-text {
    flex: 1;
    min-width: 400px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-text ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: var(--text-muted);
}

.service-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero {
        height: auto;
        padding: 100px 0 160px;
    }

    .features-overlap {
        margin-top: -100px;
    }

    .logo-img {
        height: 45px;
    }

    .logo-brand {
        font-size: 18px;
    }

    .logo-service {
        font-size: 11px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: var(--bg-white);
        padding: 80px 30px;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-menu-btn {
        display: block;
    }

    .service-detail-item {
        flex-direction: column !important;
    }

    .service-img {
        min-height: 300px;
        min-width: 100%;
    }

    .service-text {
        min-width: 100%;
        padding: 30px;
    }
}