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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.95) 0%, rgba(93, 127, 168, 0.95) 100%);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

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

.logo {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.25);
}

/* Hero Section */
.hero {
    background: url('imges/bannar.png');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    min-height: 450px;
    position: relative;
}

.hero-content {
    justify-content: center;
    margin-left: 35px;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 32px;
    color: #1e3a5f;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
}

.celebration-icon {
    font-size: 36px;
    margin-right: 5px;
}

.hero-subtitle {
    margin-left: 70px;
    font-size: 17px;
    color: #333;
    margin-bottom: 12px;
}

.hero-description {
    margin-left: 70px;
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}

.hero-time {
    margin-left: 70px;
    font-size: 14px;
    color: #666;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-btn {
    background: linear-gradient(135deg, #1a5f3f 0%, #2d7a52 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    margin-left: 70px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 63, 0.4);
}

.whatsapp-icon {
    font-size: 18px;
}

.hero-image {
    flex: 0 0 250px;
}


.advisor-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Two Column Section */
.two-column-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f0f2f5, #e8eaed);
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.whatsapp-card {
    background: url('imges/card1.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    padding: 30px 30px 30px 170px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 15px;
}

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

.phone-mockup-bg {
    display: none;
}

.phone-bg-img {
    display: none;
}

.whatsapp-text {
    margin-left: 20px;
}

.whatsapp-text h3 {
    font-size: 25px;
    margin-bottom: 5px;
    font-weight: 700;
    color: white;
}

.whatsapp-text p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #1e3a5f;
    opacity: 0.95;
}

.checklist {
    list-style: none;
    margin-bottom: 20px;
}

.checklist li {
    padding: 6px 0;
    font-size: 15px;
    color: #1e3a5f;
}

.whatsapp-btn-card {
    background: #2e6a45;
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-btn-card:hover {
    background: #1fb855;
    color: white;
}

.small-text {
    font-size: 12px;
    opacity: 0.9;
    color: white;
}

.download-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.download-card h3 {
    font-size: 26px;
    color: #1e3a5f;
    margin-bottom: 30px;
    font-weight: 700;
}

.download-section {
    padding: 20px 0;
}

.download-section h3 {
    font-size: 28px;
    color: #1e3a5f;
    margin-bottom: 35px;
    font-weight: 700;
}

.checklist-right {
    list-style: none;
}

.checklist-right li {
    padding: 18px 0;
    font-size: 17px;
    color: #333;
    border-bottom: 1px solid #e9ecef;
}

.checklist-right li:last-child {
    border-bottom: none;
}

/* Three Column Section */
.three-column-section {
    padding: 60px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6)), url('imges/background.png');
    background-size: 100% 50%;
    /* background-position: center; */
    background-repeat: no-repeat;
}

.three-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.left-column {
    padding: 20px 0;
}

.left-column h3 {
    font-size: 24px;
    color: #1e3a5f;
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-section {
    margin-bottom: 40px;
}

.trust-list,
.next-list {
    list-style: none;
}

.trust-list li,
.next-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
}

.site-visit-card {
    background: url('imges/card2.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.site-visit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.site-visit-image {
    display: none;
}

.site-visit-image img {
    display: none;
}

.site-visit-content {
    padding: 40px;
    color: #1e3a5f;
    position: relative;
    z-index: 2;
}

.site-visit-content h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
    background: linear-gradient(to right, #3d5a7f 0%, #4a6fa5 50%, rgba(255, 255, 255, 0.3) 100%);
    padding: 12px 20px;
    margin-left: -40px;
    margin-right: -40px;
    margin-top: -40px;
    margin-bottom: 25px;
}

.site-visit-list {
    list-style: none;
    margin-bottom: 20px;
}

.site-visit-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
}

.visit-duration {
    font-size: 14px;
    padding-top: 15px;
    border-top: 1px solid rgba(30, 58, 95, 0.2);
    color: #555;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
    padding: 20px 0;
    text-align: center;
}

.urgency-text {
    font-size: 18px;
    color: #1e3a5f;
}

/* CTA Section */
.cta-section {
    background: url('imges/footer.png'), linear-gradient(135deg, #2c4a6b 0%, #3d5a7f 50%, #4a6fa5 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    text-align: center;
    color: white;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-question {
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-question svg {
    width: 18px;
    height: 18px;
}

.phone-number {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.phone-number svg {
    width: 28px;
    height: 28px;
}

.call-btn {
    background: linear-gradient(135deg, #1a5f3f 0%, #2d7a52 100%);
    color: white;
    border: none;
    padding: 15px 120px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
    transition: all 0.3s;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 63, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a3d2e 0%, #1e4838 50%, #2d5f4a 100%);
    padding: 20px 0;
}

.footer-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-item {
    color: white;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-item:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-left {
    justify-content: flex-start;
    margin-right: auto;
}

.footer-center {
    justify-content: center;
    margin: 0 auto;
}

.footer-right {
    justify-content: flex-end;
    margin-left: auto;
}

.whatsapp-footer svg {
    color: #25d366;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .header-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-image {
        flex: 0 0 200px;
    }

    .two-column-grid,
    .three-column-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-card {
        flex-direction: column;
    }

    .footer-buttons {
        flex-direction: column;
        gap: 15px;
    }
}