* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
}

.text-purple {
    color: #7a5dc9;
}

.text-purple-2 {
    color: #5e60cd;
}

.text-grey {
    color: #969fb0;
}

.text-purple-dark {
    color: #2f3c98;
}

.text-gold {
    color: #ecd76c;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 20px 0;
    background-color: #fff;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 200px;
    height: auto;
    /* background: #f0f0f0;
    padding: 20px; */
    text-align: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 60vh;
    background: url('img/pearls-banner-1.png') center/cover;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(122, 93, 201, 0.85);
    padding: 40px 24px;
    text-align: center;
    max-width: 45%;
    margin: 0 auto;
    z-index: 1;
}

.hero-section h1 {
    font-family: 'Fjalla One', arial, sans-serif;
    font-size: 48px;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-section p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #fff;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #161616;
    color: #dbdbdb;
    padding: 8px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.143em;
    min-height: 56px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: #000;
}

.btn-secondary {
    background-color: #5e60cd;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #7a5dc9;
}

/* Section Headings */
.section {
    padding: 56px 0;
}

.section-heading {
    font-family: 'Fjalla One', arial, sans-serif;
    font-size: 44px;
    text-align: center;
    margin-bottom: 40px;
    color: #7a5dc9;
}

.section-heading span {
    display: block;
}

.section-hr {
    width: 50px;
    height: 2px;
    background-color: #e2e2e2;
    margin: 24px auto;
    border: none;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 48px 24px;
    margin-bottom: 48px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.content-block h4 {
    font-family: 'Source Sans Pro', arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1b1b1b;
}

.content-block p {
    margin-bottom: 24px;
    line-height: 1.5;
    color: #5e5e5e;
}

.content-image {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    background: #ddd;
    /* min-height: 300px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

@media (max-width: 480px) {
    .grid.grid-reverse {
        grid-auto-flow: dense;
    }

    .grid.grid-reverse .content-block:last-child {
        order: -1;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: #f6f6f6;
}

.carousel {
    position: relative;
    max-height: 620px;
    overflow: hidden;
    margin-bottom: 40px;
}

.carousel-viewport {
    width: 100%;
    height: 600px;
    position: relative;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 24px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.25);
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(0,0,0,0.5);
}

.carousel-left {
    left: 0;
}

.carousel-right {
    right: 0;
}

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #fff;
    margin-bottom: 24px;
    min-height: 600px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact-section {
    background-color: #f6f6f6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.contact-info h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #21151f;
}

.contact-info p {
    margin-bottom: 16px;
    color: #595959;
}

.whatsapp-btn {
    background-color: #455a64;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border-radius: 4px;
}

.whatsapp-btn:hover {
    background-color: #4f6672;
}

/* Form */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 23px 16px 7px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 33%;
    color: #717171;
    pointer-events: none;
    transition: all 0.15s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 8px;
    font-size: 12px;
    color: #7a5dc9;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
    padding-bottom: 16px;
}

/* Map */
.map-container {
    width: 100%;
    height: 400px;
    background: #ddd;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Social Section */
.social-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.social-links a {
    display: inline-block;
}

.social-links svg {
    width: 40px;
    height: 40px;
}

/* Subscribe Section */
.subscribe-section {
    background-color: #f6f6f6;
    text-align: center;
}

.subscribe-form {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-form p {
    margin-bottom: 24px;
    color: #595959;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid #e2e2e2;
}

footer p {
    color: #595959;
    margin-bottom: 16px;
    font-size: 14px;
}

footer a {
    color: #1b1b1b;
    text-decoration: none;
}

footer a:hover {
    color: #7a5dc9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-overlay {
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .section-heading {
        font-size: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}