
:root {
    --primary: #1e2b3a;
    --secondary: #f8f6f3;
    --accent: #C49A4A;
    --accent-dark: #b0883e;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
}

/* HERO BANNER */
.location-banner {
    background: linear-gradient(135deg, rgba(30, 43, 58, 0.92) 0%, rgba(30, 43, 58, 0.85) 100%),
                url('assets/images/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0 70px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.location-banner::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(196, 154, 74, 0.05);
    border-radius: 50%;
}

.location-banner::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(196, 154, 74, 0.03);
    border-radius: 50%;
}

.location-banner .container {
    position: relative;
    z-index: 1;
}

.location-banner h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.location-banner h1 span {
    color: var(--accent);
}

.location-banner .banner-badge {
    display: inline-block;
    background: rgba(196, 154, 74, 0.15);
    color: var(--accent);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(196, 154, 74, 0.2);
}

.location-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    opacity: 0.85;
    line-height: 1.8;
}

/* PRESENCE SECTION */
.presence-section {
    padding: 80px 0;
    background: #f8f6f3;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.5rem;
}

.section-title .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.section-title .divider span {
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.section-title .divider i {
    color: var(--accent);
    font-size: 1.2rem;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: auto;
    font-size: 1.05rem;
}

/* MAP SWITCH BUTTONS */
.map-switch {
    text-align: center;
    margin-bottom: 40px;
}

.map-btn {
    border: 2px solid #e0d6c8;
    padding: 12px 35px;
    margin: 0 10px;
    border-radius: 50px;
    background: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--primary);
    cursor: pointer;
}

.map-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.map-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(196, 154, 74, 0.25);
}

.map-btn.active:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

.map-btn i {
    margin-right: 8px;
}

/* MAP CONTAINER - FIXED */
.map-wrapper {
    display: block;
    width: 100%;
}

.map-wrapper.d-none {
    display: none !important;
}

.map-container {
    width: 100%;
    height: 550px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    background: #f0f2f5;
    position: relative;
    border: 3px solid var(--accent);
}

/* Leaflet zoom controls */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.leaflet-control-zoom a {
    background: #fff !important;
    color: var(--primary) !important;
    border: none !important;
    transition: all 0.3s ease;
}

.leaflet-control-zoom a:hover {
    background: var(--accent) !important;
    color: #fff !important;
}

/* CUSTOM POPUP STYLING */
.custom-popup .leaflet-popup-content-wrapper {
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.custom-popup .leaflet-popup-content {
    margin: 0;
    padding: 18px 22px;
    min-width: 200px;
    font-family: 'Poppins', sans-serif;
}

.custom-popup h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 15px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 8px;
}

.custom-popup h5 i {
    color: var(--accent);
    margin-right: 8px;
}

.custom-popup p {
    margin: 5px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.custom-popup p i {
    color: var(--accent);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.custom-popup .leaflet-popup-tip {
    background: #fff;
}

/* CUSTOM MARKER */
.custom-marker {
    background: var(--accent);
    width: 44px;
    height: 44px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid #fff;
    box-shadow: 0 4px 20px rgba(196, 154, 74, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-marker:hover {
    transform: rotate(-45deg) scale(1.15);
    box-shadow: 0 6px 30px rgba(196, 154, 74, 0.5);
}

.custom-marker i {
    transform: rotate(45deg);
    color: #fff;
    font-size: 18px;
}

/* Tooltip on hover - shows phone & email */
.custom-tooltip {
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2) !important;
    border-left: 3px solid var(--accent) !important;
    min-width: 180px;
}

.custom-tooltip::before {
    border-top-color: var(--primary) !important;
}

.custom-tooltip strong {
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.custom-tooltip i {
    color: var(--accent);
    margin-right: 6px;
    width: 16px;
}

/* LOCATION LIST */
.location-list {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.location-list h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.location-list h4 i {
    color: var(--accent);
    margin-right: 10px;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.location-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #f8f6f3;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary);
    border: 1px solid #e8e4de;
    transition: all 0.3s ease;
    text-decoration: none;
}

.location-tag:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 154, 74, 0.2);
}

.location-tag .tag-state {
    color: #999;
    font-size: 0.75rem;
    margin-left: 5px;
}

.location-tag:hover .tag-state {
    color: rgba(255,255,255,0.8);
}

/* CONTACT BOX */
.presence-contact {
    background: var(--primary);
    margin-top: 60px;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.presence-contact::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(196, 154, 74, 0.08);
    border-radius: 50%;
}

.presence-contact::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(196, 154, 74, 0.06);
    border-radius: 50%;
}

.presence-contact .container {
    position: relative;
    z-index: 1;
}

.presence-contact h3 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.presence-contact h3 i {
    color: var(--accent);
    margin-right: 10px;
}

.presence-contact p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.presence-contact .btn-contact {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

.presence-contact .btn-contact:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 154, 74, 0.25);
}

.presence-contact .btn-contact i {
    margin-right: 8px;
}

/* Location Stats */
.location-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.location-stats .stat-item {
    text-align: center;
}

.location-stats .stat-item .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.location-stats .stat-item .label {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .location-banner {
        padding: 50px 0 40px;
    }
    
    .location-banner h1 {
        font-size: 32px;
    }
    
    .location-banner p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .map-container {
        height: 380px;
    }
    
    .map-btn {
        margin: 5px 5px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .presence-contact {
        padding: 30px 20px;
    }
    
    .presence-contact h3 {
        font-size: 1.5rem;
    }
    
    .custom-popup .leaflet-popup-content {
        padding: 15px 18px;
        min-width: 160px;
    }
    
    .custom-popup h5 {
        font-size: 14px;
    }
    
    .custom-popup p {
        font-size: 12px;
    }
    
    .location-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .location-stats .stat-item .number {
        font-size: 1.5rem;
    }
    
    .location-list {
        padding: 20px 15px;
    }
    
    .location-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .custom-tooltip {
        font-size: 12px !important;
        min-width: 150px !important;
        padding: 8px 12px !important;
    }
}

@media(max-width: 576px) {
    .location-banner h1 {
        font-size: 26px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-btn {
        font-size: 12px;
        padding: 8px 16px;
        margin: 3px;
    }
    
    .map-btn i {
        margin-right: 4px;
    }
}


:root {
    --primary: #1e2b3a;
    --secondary: #f8f6f3;
    --accent: #C49A4A;
    --accent-dark: #b0883e;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
}

/* HERO BANNER - Shrinkable */
.notary-hero {
    background: linear-gradient(135deg, rgba(30, 43, 58, 0.92) 0%, rgba(30, 43, 58, 0.85) 100%),
                url('assets/images/notary-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.notary-hero.shrink {
    padding: 40px 0 30px;
}

.notary-hero.shrink h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.notary-hero.shrink p {
    font-size: 15px;
    margin-bottom: 0;
    max-width: 600px;
}

.notary-hero.shrink .hero-badge {
    padding: 4px 16px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.notary-hero.shrink .hero-buttons {
    margin-top: 15px;
}

.notary-hero.shrink .hero-buttons .btn-primary-custom,
.notary-hero.shrink .hero-buttons .btn-outline-custom {
    padding: 10px 25px;
    font-size: 0.85rem;
}

.notary-hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(196, 154, 74, 0.05);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.notary-hero.shrink::before {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: -30px;
}

.notary-hero::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(196, 154, 74, 0.03);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.notary-hero.shrink::after {
    width: 150px;
    height: 150px;
    top: -40px;
    left: -40px;
}

.notary-hero .container {
    position: relative;
    z-index: 1;
}

.notary-hero h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.notary-hero h1 span {
    color: var(--accent);
}

.notary-hero .hero-badge {
    display: inline-block;
    background: rgba(196, 154, 74, 0.15);
    color: var(--accent);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(196, 154, 74, 0.2);
    transition: all 0.4s ease;
}

.notary-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    opacity: 0.85;
    line-height: 1.8;
    transition: all 0.4s ease;
}

.notary-hero .hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    transition: all 0.4s ease;
}

.notary-hero .btn-primary-custom {
    background: var(--accent);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    display: inline-block;
}

.notary-hero .btn-primary-custom:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 154, 74, 0.25);
}

.notary-hero .btn-outline-custom {
    background: transparent;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    display: inline-block;
}

.notary-hero .btn-outline-custom:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.5rem;
}

.section-title .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.section-title .divider span {
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.section-title .divider i {
    color: var(--accent);
    font-size: 1.2rem;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: auto;
    font-size: 1.05rem;
}

/* SERVICES SECTION */
.notary-services {
    padding: 80px 0;
    background: #ffffff;
}

/* SERVICE CARDS */
.service-card {
    padding: 30px 25px;
    border-radius: 16px;
    background: #f8f6f3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid #e8e4de;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(196, 154, 74, 0.12);
    border-color: var(--accent);
}

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(196, 154, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.service-card h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* PROCESS SECTION */
.notary-process {
    padding: 80px 0;
    background: #f8f6f3;
}

.process-step {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(196, 154, 74, 0.08);
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.process-step h4 {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* BENEFITS SECTION */
.notary-benefits {
    padding: 80px 0;
    background: #ffffff;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f6f3;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    border-left: 3px solid var(--accent);
}

.benefit-item:hover {
    background: #f0ece6;
    transform: translateX(5px);
}

.benefit-item .benefit-icon {
    min-width: 44px;
    height: 44px;
    background: rgba(196, 154, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item h5 {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* DOCUMENTS SECTION */
.notary-documents {
    padding: 80px 0;
    background: #f8f6f3;
}

.doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-list li {
    padding: 14px 20px;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.doc-list li:hover {
    transform: translateX(5px);
    border-left-color: var(--accent);
    box-shadow: 0 4px 16px rgba(196, 154, 74, 0.08);
}

.doc-list li i {
    color: var(--accent);
    font-size: 1.1rem;
    min-width: 24px;
}

.doc-list li span {
    color: #1e2b3a;
    font-weight: 500;
}

/* FAQ SECTION */
.notary-faq {
    padding: 80px 0;
    background: #ffffff;
}

.notary-faq .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    background: #f8f6f3;
}

.notary-faq .accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    background: #f8f6f3;
    padding: 18px 24px;
    border: none;
}

.notary-faq .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
    box-shadow: none;
}

.notary-faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.notary-faq .accordion-body {
    padding: 20px 24px 24px;
    color: #555;
    line-height: 1.9;
    background: #fff;
}

/* CTA SECTION */
.notary-cta {
    padding: 80px 0;
    background: var(--primary);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.notary-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(196, 154, 74, 0.05);
    border-radius: 50%;
}

.notary-cta::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: rgba(196, 154, 74, 0.03);
    border-radius: 50%;
}

.notary-cta .container {
    position: relative;
    z-index: 1;
}

.notary-cta h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.notary-cta h2 span {
    color: var(--accent);
}

.notary-cta p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.notary-cta .btn-cta {
    background: var(--accent);
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    display: inline-block;
    font-size: 1.05rem;
}

.notary-cta .btn-cta:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 154, 74, 0.25);
}

.notary-cta .btn-cta i {
    margin-right: 8px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .notary-hero {
        padding: 60px 0 50px;
    }
    
    .notary-hero.shrink {
        padding: 30px 0 20px;
    }
    
    .notary-hero h1 {
        font-size: 32px;
    }
    
    .notary-hero.shrink h1 {
        font-size: 24px;
    }
    
    .notary-hero p {
        font-size: 16px;
    }
    
    .notary-hero.shrink p {
        font-size: 13px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .notary-cta h2 {
        font-size: 28px;
    }
    
    .notary-cta p {
        font-size: 16px;
    }
    
    .notary-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .notary-hero.shrink .hero-buttons .btn-primary-custom,
    .notary-hero.shrink .hero-buttons .btn-outline-custom {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

@media(max-width: 576px) {
    .notary-hero h1 {
        font-size: 26px;
    }
    
    .notary-hero.shrink h1 {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .process-step .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .notary-cta h2 {
        font-size: 22px;
    }
}

:root {
    --primary: #1e2b3a;
    --secondary: #f8f6f3;
    --accent: #C49A4A;
    --accent-dark: #b0883e;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(30, 43, 58, 0.92) 0%, rgba(30, 43, 58, 0.85) 100%),
                url('images/privacy-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(196, 154, 74, 0.05);
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(196, 154, 74, 0.03);
    border-radius: 50%;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner .banner-badge {
    display: inline-block;
    background: rgba(196, 154, 74, 0.15);
    color: var(--accent);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(196, 154, 74, 0.2);
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.page-banner h1 span {
    color: var(--accent);
}

.page-banner p {
    font-size: 17px;
    max-width: 600px;
    margin: auto;
    opacity: 0.85;
    line-height: 1.8;
}

/* Content Box */
.content-box {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin-top: -30px;
    margin-bottom: 50px;
    border: 1px solid #e8e4de;
}

.content-box h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.content-box h2:first-of-type {
    margin-top: 0;
}

.content-box h3 {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content-box h3 i {
    color: var(--accent);
    margin-right: 8px;
}

.content-box p {
    color: #555;
    font-size: 1.02rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.content-box ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-box ul li {
    color: #555;
    font-size: 1.02rem;
    line-height: 1.9;
    margin-bottom: 8px;
}

.content-box ul li::marker {
    color: var(--accent);
}

.content-box .highlight-box {
    background: #f8f6f3;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin: 20px 0;
}

.content-box .highlight-box p {
    margin-bottom: 0;
}

.last-updated {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e8e4de;
}

/* Responsive */
@media(max-width: 768px) {
    .page-banner {
        padding: 50px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
    
    .content-box {
        padding: 25px 20px;
    }
    
    .content-box h2 {
        font-size: 1.4rem;
    }
}

@media(max-width: 576px) {
    .page-banner h1 {
        font-size: 26px;
    }
    
    .content-box h2 {
        font-size: 1.2rem;
    }
}




:root {
    --primary: #1e2b3a;
    --secondary: #f8f6f3;
    --accent: #C49A4A;
    --accent-dark: #b0883e;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
}

/* PAGE BANNER - Shrinkable */
.page-banner {
    background: linear-gradient(135deg, rgba(30, 43, 58, 0.92) 0%, rgba(30, 43, 58, 0.85) 100%),
                url('images/property-documentation.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-banner.shrink {
    padding: 40px 0 30px;
}

.page-banner.shrink h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.page-banner.shrink p {
    font-size: 15px;
    margin-bottom: 0;
    max-width: 600px;
}

.page-banner.shrink .banner-badge {
    padding: 4px 16px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.page-banner::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(196, 154, 74, 0.05);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.page-banner.shrink::before {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: -30px;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(196, 154, 74, 0.03);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.page-banner.shrink::after {
    width: 150px;
    height: 150px;
    top: -40px;
    left: -40px;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner .banner-badge {
    display: inline-block;
    background: rgba(196, 154, 74, 0.15);
    color: var(--accent);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(196, 154, 74, 0.2);
    transition: all 0.4s ease;
}

.page-banner h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.page-banner h1 span {
    color: var(--accent);
}

.page-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    opacity: 0.85;
    line-height: 1.8;
    transition: all 0.4s ease;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.5rem;
}

.section-title .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.section-title .divider span {
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.section-title .divider i {
    color: var(--accent);
    font-size: 1.2rem;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: auto;
    font-size: 1.05rem;
}

/* ABOUT SECTION */
.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-section .content h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-section .content h2 i {
    color: var(--accent);
    margin-right: 10px;
}

.about-section .content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-section .content .highlight-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-section .content .highlight-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--primary);
}

.about-section .content .highlight-list li i {
    color: var(--accent);
    font-size: 1.1rem;
}

.about-section .image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.about-section .image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-section .image-wrapper .image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(30, 43, 58, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    border-left: 4px solid var(--accent);
}

.about-section .image-wrapper .image-badge i {
    color: var(--accent);
    margin-right: 8px;
}

/* SERVICE CARDS */
.services-section {
    padding: 80px 0;
    background: #f8f6f3;
}

.service-card {
    padding: 30px 25px;
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid #e8e4de;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(196, 154, 74, 0.12);
    border-color: var(--accent);
}

.service-card .icon-wrapper {
    width: 65px;
    height: 65px;
    margin: 0 auto 16px;
    background: rgba(196, 154, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.service-card h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* WHY CHOOSE US */
.why-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-section .why-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.why-section .why-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.why-section .content h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.why-section .content h2 i {
    color: var(--accent);
    margin-right: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 16px;
    margin-bottom: 10px;
    background: #f8f6f3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.feature-list li:hover {
    background: #f0ece6;
    border-left-color: var(--accent);
    transform: translateX(5px);
}

.feature-list li i {
    color: var(--accent);
    font-size: 1.1rem;
    min-width: 24px;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    background: var(--primary);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(196, 154, 74, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: rgba(196, 154, 74, 0.03);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section h2 span {
    color: var(--accent);
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.cta-section .btn-cta {
    background: var(--accent);
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    display: inline-block;
    font-size: 1.05rem;
}

.cta-section .btn-cta:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 154, 74, 0.25);
}

.cta-section .btn-cta i {
    margin-right: 8px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .page-banner {
        padding: 60px 0 50px;
    }
    
    .page-banner.shrink {
        padding: 30px 0 20px;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
    
    .page-banner.shrink h1 {
        font-size: 24px;
    }
    
    .page-banner p {
        font-size: 16px;
    }
    
    .page-banner.shrink p {
        font-size: 13px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .about-section .content h2 {
        font-size: 1.8rem;
    }
    
    .about-section .image-wrapper img {
        height: 280px;
    }
    
    .why-section .why-image img {
        height: 280px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
}

@media(max-width: 576px) {
    .page-banner h1 {
        font-size: 26px;
    }
    
    .page-banner.shrink h1 {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .about-section .content h2 {
        font-size: 1.5rem;
    }
    
    .about-section .image-wrapper img {
        height: 220px;
    }
    
    .why-section .why-image img {
        height: 220px;
    }
    
    .cta-section h2 {
        font-size: 22px;
    }
}



:root {
    --primary: #1e2b3a;
    --secondary: #f8f6f3;
    --accent: #C49A4A;
    --accent-dark: #b0883e;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
}

/* PAGE BANNER - Shrinkable */
.page-banner {
    background: linear-gradient(135deg, rgba(30, 43, 58, 0.92) 0%, rgba(30, 43, 58, 0.85) 100%),
                url('images/rental-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-banner.shrink {
    padding: 40px 0 30px;
}

.page-banner.shrink h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.page-banner.shrink p {
    font-size: 15px;
    margin-bottom: 0;
    max-width: 600px;
}

.page-banner.shrink .banner-badge {
    padding: 4px 16px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.page-banner::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(196, 154, 74, 0.05);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.page-banner.shrink::before {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: -30px;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(196, 154, 74, 0.03);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.page-banner.shrink::after {
    width: 150px;
    height: 150px;
    top: -40px;
    left: -40px;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner .banner-badge {
    display: inline-block;
    background: rgba(196, 154, 74, 0.15);
    color: var(--accent);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(196, 154, 74, 0.2);
    transition: all 0.4s ease;
}

.page-banner h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.page-banner h1 span {
    color: var(--accent);
}

.page-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    opacity: 0.85;
    line-height: 1.8;
    transition: all 0.4s ease;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.5rem;
}

.section-title .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.section-title .divider span {
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.section-title .divider i {
    color: var(--accent);
    font-size: 1.2rem;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: auto;
    font-size: 1.05rem;
}

/* SECTION PADDING */
.section-padding {
    padding: 80px 0;
}

/* SERVICE CARDS */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 28px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8e4de;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(196, 154, 74, 0.12);
    border-color: var(--accent);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 16px;
    background: rgba(196, 154, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.service-card h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-card ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.service-card ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #555;
}

.service-card ul li i {
    color: var(--accent);
    font-size: 0.9rem;
    min-width: 20px;
}

/* FEATURE BOXES */
.feature-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e8e4de;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(196, 154, 74, 0.1);
    border-color: var(--accent);
}

.feature-box .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(196, 154, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}

.feature-box h5 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.feature-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* DOWNLOAD BOX */
.download-box {
    background: #f8f6f3;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e8e4de;
}

.download-box h3 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
}

.download-box h3 i {
    color: var(--accent);
    margin-right: 10px;
}

.download-box p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.download-btn {
    background: var(--accent);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

.download-btn:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 154, 74, 0.25);
}

.download-btn i {
    margin-right: 8px;
}

/* CTA SECTION */
.cta-section {
    background: var(--primary);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(196, 154, 74, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: rgba(196, 154, 74, 0.03);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section h2 span {
    color: var(--accent);
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.cta-btn {
    background: var(--accent);
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    font-size: 1.05rem;
}

.cta-btn:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 154, 74, 0.25);
}

.cta-btn i {
    margin-right: 8px;
}

/* DRAFT DOWNLOAD SECTION - New */
.draft-download-section {
    padding: 60px 0;
    background: #ffffff;
}

.draft-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e4de;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.draft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(196, 154, 74, 0.1);
    border-color: var(--accent);
}

.draft-card .draft-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(196, 154, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}

.draft-card h5 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.draft-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.draft-card .btn-download {
    background: var(--accent);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

.draft-card .btn-download:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(196, 154, 74, 0.2);
}

.draft-card .btn-download i {
    margin-right: 6px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .page-banner {
        padding: 60px 0 50px;
    }
    
    .page-banner.shrink {
        padding: 30px 0 20px;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
    
    .page-banner.shrink h1 {
        font-size: 24px;
    }
    
    .page-banner p {
        font-size: 16px;
    }
    
    .page-banner.shrink p {
        font-size: 13px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .download-box {
        padding: 25px 20px;
        text-align: center;
    }
    
    .download-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .draft-download-section {
        padding: 40px 0;
    }
}

@media(max-width: 576px) {
    .page-banner h1 {
        font-size: 26px;
    }
    
    .page-banner.shrink h1 {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .cta-section h2 {
        font-size: 22px;
    }
    
    .cta-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .download-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}



:root {
    --primary: #1e2b3a;
    --secondary: #f8f6f3;
    --accent: #C49A4A;
    --accent-dark: #b0883e;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(30, 43, 58, 0.92) 0%, rgba(30, 43, 58, 0.85) 100%),
                url('images/services-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(196, 154, 74, 0.05);
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(196, 154, 74, 0.03);
    border-radius: 50%;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner .banner-badge {
    display: inline-block;
    background: rgba(196, 154, 74, 0.15);
    color: var(--accent);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(196, 154, 74, 0.2);
}

.page-banner .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(196, 154, 74, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent);
    border: 2px solid rgba(196, 154, 74, 0.2);
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.page-banner h1 span {
    color: var(--accent);
}

.page-banner p {
    font-size: 17px;
    max-width: 600px;
    margin: auto;
    opacity: 0.85;
    line-height: 1.8;
}

/* Content Box */
.content-box {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin-top: -30px;
    margin-bottom: 50px;
    border: 1px solid #e8e4de;
}

.content-box h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent);
}

.content-box h2 i {
    color: var(--accent);
    margin-right: 12px;
}

.content-box h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.15rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-box h4 i {
    color: var(--accent);
    margin-right: 8px;
}

.content-box p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.content-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.content-box ul li {
    padding: 8px 0;
    color: #555;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-box ul li i {
    color: var(--accent);
    font-size: 1rem;
    min-width: 22px;
}

/* Dropdown Navigation */
.service-nav {
    background: #fff;
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    border: 1px solid #e8e4de;
}

.service-nav .dropdown-toggle {
    background: var(--accent);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    width: 100%;
    text-align: center;
}

.service-nav .dropdown-toggle:hover {
    background: var(--accent-dark);
}

.service-nav .dropdown-menu {
    width: 100%;
    border: 1px solid #e8e4de;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

.service-nav .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-nav .dropdown-item:hover {
    background: var(--accent);
    color: #fff;
}

.service-nav .dropdown-item.active {
    background: var(--accent);
    color: #fff;
}

.service-nav .dropdown-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Responsive */
@media(max-width: 768px) {
    .page-banner {
        padding: 50px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
    
    .content-box {
        padding: 25px 20px;
    }
    
    .content-box h2 {
        font-size: 1.6rem;
    }
    
    .service-nav {
        padding: 15px 20px;
    }
}

@media(max-width: 576px) {
    .page-banner h1 {
        font-size: 26px;
    }
    
    .content-box h2 {
        font-size: 1.3rem;
    }
    
    .content-box ul li {
        font-size: 0.9rem;
    }
}