/* Modern Typography & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/garden-tree.png');
    min-height: 50vh;
}

.blog-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.blog-content {
    padding: 60px 0;
    background: white;
}

.breadcrumb {
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: #718096;
}

.breadcrumb a {
    color: #4a5568;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #2d3748;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 40px;
    text-align: center;
}

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #718096;
}

.post-category {
    background: #e2e8f0;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.post-content {
    line-height: 1.8;
    color: #4a5568;
}

.post-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 30px;
    padding: 20px;
    background: #f7fafc;
    border-left: 4px solid #48bb78;
    border-radius: 0 8px 8px 0;
}

.post-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #2d3748;
}

.post-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #2d3748;
}

.post-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 10px 0;
    color: #2d3748;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 8px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.program-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.program-item h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.program-item p {
    color: #4a5568;
    line-height: 1.6;
}

.info-box {
    background: linear-gradient(135deg, #e6fffa, #b2f5ea);
    border: 1px solid #81e6d9;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.info-box h2 {
    color: #234e52;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.info-box p {
    color: #285e61;
    margin: 0;
}

.note-box {
    background: #fef5e7;
    border: 1px solid #f6ad55;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.note-box h3 {
    color: #744210;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.note-box p {
    color: #744210;
    margin: 0;
}

.activities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.activity-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.activity-item h4 {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.activity-item p {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

.cta-box {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.blog-sidebar {
    max-width: 300px;
    margin-left: 40px;
}

.sidebar-widget {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.related-links {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: 10px;
}

.related-links a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-links a:hover {
    color: #2d3748;
}

.sidebar-link {
    display: inline-block;
    color: #48bb78;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.sidebar-link:hover {
    color: #38a169;
}

@media (max-width: 768px) {
    .blog-content .container {
        display: block;
    }
    
    .blog-sidebar {
        max-width: none;
        margin-left: 0;
        margin-top: 40px;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .post-content .lead {
        font-size: 1.1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2d3748;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
}

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

/* Hero Section with Gradient */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/tropical-beach.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    color: white;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

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

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

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.03em;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #2d3748;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.feature-card p {
    color: #718096;
    line-height: 1.6;
}

/* Location Section */
.location {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d3748;
}

.location-description {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.highlight-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.highlight-item p {
    color: #718096;
    margin: 0;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #2d3748;
    padding: 12px 18px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-overlay p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Interest Form with Background Image */
.interest-form {
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/tropical-beach.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.interest-form h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.interest-form > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* Enhanced Form Styling */
.validation-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #2d3748;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Privacy Note Styling */
.privacy-note {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.privacy-note small {
    color: #667eea;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Redemption Note Styling */
.redemption-note {
    text-align: center;
    margin-top: 15px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.redemption-note p {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 400;
    margin: 0;
}

/* Form Section Styling */
.form-section {
    margin-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 15px;
    position: relative;
}

.form-section:first-of-type {
    background: rgba(102, 126, 234, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.optional-section {
    background: #f0f4ff;
    border: 2px solid #c7d2fe;
    border-style: dashed;
    padding: 30px;
    border-radius: 12px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.optional-badge {
    background: #48bb78;
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-subtitle {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-style: italic;
}

.validation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.validation-form:hover::before {
    left: 100%;
}

/* Form Group Enhancements */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

/* Enhanced Input Styling */
.validation-form input,
.validation-form select,
.validation-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: #2d3748;
    position: relative;
}

/* Better select dropdown styling */
.validation-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 50px;
}

.validation-form input:focus,
.validation-form select:focus,
.validation-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.validation-form input:hover,
.validation-form select:hover,
.validation-form textarea:hover {
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

/* Validation States */
.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
    border-color: #48bb78;
    background-color: #f0fff4;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #f56565;
    background-color: #fef5e7;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Error Messages */
.error-message {
    color: #f56565;
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Success Messages */
.success-message {
    color: #48bb78;
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Checkbox Styling */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    gap: 12px;
}

.checkbox-label:hover {
    background-color: #f7fafc;
    border-color: #e2e8f0;
    transform: translateY(-1px);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    margin: 0;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"]:checked + label {
    color: #667eea;
    font-weight: 600;
}

/* Enhanced Button Styling */
.validation-form button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.button-main {
    font-size: 1.4rem;
    font-weight: 600;
}

.button-note {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.2;
    margin-top: 20px;
    text-align: center;
    display: block;
    width: 100%;
}

.validation-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.validation-form button:active {
    transform: translateY(-1px);
}

/* Loading Button State */
.validation-form button.loading {
    pointer-events: none;
    opacity: 0.8;
}

.validation-form button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Progress Bar */
.form-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 0 0 2px 2px;
}

/* Stay Updated Checkbox - Clean Approach */
.stay-updated-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stay-updated-wrapper:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.stay-updated-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.stay-updated-wrapper label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    margin: 0;
    line-height: 1.4;
}

.stay-updated-wrapper + .stay-updated-wrapper {
    margin-top: 15px;
}

/* Form Row Enhancements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

/* Mobile Responsiveness */
/* Large screen optimization for form */
@media (min-width: 1200px) {
    .validation-form {
        max-width: 1000px;
        padding: 60px;
    }
}

@media (max-width: 768px) {
    .validation-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 40px 0;
}

footer p {
    opacity: 0.8;
}

/* Top Brand Label */
.top-brand {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    opacity: 0.9;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}



/* Progress Section */
.progress {
    padding: 80px 20px;
    background: white;
}

.progress h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

.progress h2:first-of-type,
.progress h2:last-of-type {
    color: #2d3748;
}

.progress h2:first-of-type {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.progress h2:last-of-type {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.progress-description {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.progress-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.progress-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.progress-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.progress-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.progress-item:hover .progress-image img {
    transform: scale(1.05);
}

.progress-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(102, 126, 234, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-content {
    padding: 30px;
}

.progress-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.progress-content p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Progress Updates Timeline */
.progress-updates {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
}

.progress-updates h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2d3748;
}

.update-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.update-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.update-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.update-date {
    font-weight: 600;
    color: #667eea;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.update-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
}

.update-content p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .validation-form {
        margin: 0 10px;
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .interest-form {
        padding: 60px 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    /* Mobile-optimized form inputs */
    .validation-form input,
    .validation-form select,
    .validation-form textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .validation-form select {
        padding-right: 40px;
        background-size: 14px;
        background-position: right 12px center;
    }
    
    .top-brand {
        top: 20px;
        left: 20px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .highlight-item {
        padding: 20px;
        gap: 15px;
    }
    
    .highlight-icon {
        font-size: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .progress-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-updates {
        padding: 30px 25px;
    }
    
    .update-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .update-date {
        order: -1;
    }
    
    .featured-photos {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 20px;
    }
    
    .photo-container {
        height: 200px;
    }
    
    .photo-overlay {
        padding: 20px 15px 15px;
    }
    
    .photo-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .photo-overlay p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .hero {
        background-attachment: scroll;
        background-position: center center;
        min-height: 50vh;
        padding: 80px 15px 60px;
    }
    
    .progress h2 {
        font-size: 1.8rem !important;
    }
    
    .container {
        padding: 0;
    }
    
    h2 {
        font-size: 2rem !important;
        hyphens: none;
        word-wrap: normal;
    }
    
    .progress,
    .location {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .validation-form {
        margin: 0 5px;
        padding: 25px 10px;
    }
    
    .interest-form {
        padding: 50px 10px;
    }
    
    /* Even more compact for small screens */
    .validation-form input,
    .validation-form select,
    .validation-form textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .validation-form select {
        padding-right: 36px;
        background-size: 12px;
        background-position: right 10px center;
    }
    
    .featured-photos {
        gap: 20px;
        margin: 0 20px;
    }
    
    .photo-container {
        height: 180px;
        border-radius: 15px;
    }
    
    .photo-overlay {
        padding: 15px 12px 12px;
    }
    
    .photo-overlay h3 {
        font-size: 1rem;
    }
    
    .photo-overlay p {
        font-size: 0.8rem;
    }
    
    .progress h2 {
        font-size: 1.5rem !important;
    }
    
    .progress,
    .location {
        padding: 50px 10px;
    }
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.heading-top {
    font-size: 1.5rem;
    font-weight: 400;
    color: #667eea;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading-main {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0;
    line-height: 1.1;
}

.photo-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Clean Featured Photos CSS - Remove any existing .featured-photos rules first */
.featured-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Center the house photo in first subsection */
.progress-subsection:first-child .featured-photos {
    grid-template-columns: 1fr;
    max-width: 700px;
    justify-items: center;
}

.progress-subsection:first-child .photo-container {
    height: 400px;
}

.photo-feature {
    position: relative;
}

.photo-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 250px;
}

.photo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.photo-container:hover img {
    transform: scale(1.02);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f7fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.photo-container:hover .photo-placeholder {
    transform: scale(1.02);
}

.placeholder-text {
    color: #718096;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.photo-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.photo-overlay p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-size: 0.9rem;
    margin: 0;
}

.overlay-link {
    margin-top: 15px !important;
}

.overlay-link a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.overlay-link a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.required {
    color: #e53e3e;
    font-weight: bold;
    margin-left: 2px;
}

/* External Link Styling */
.external-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.external-link:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.external-link::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23667eea'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14'/%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: text-top;
}

.external-link:hover::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235a67d8'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14'/%3e%3c/svg%3e");
}

/* Override external link styling for photo overlays */
.photo-overlay .external-link {
    color: white;
}

.photo-overlay .external-link:hover {
    color: #f0f4ff;
}

.photo-overlay .external-link::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14'/%3e%3c/svg%3e");
}

.photo-overlay .external-link:hover::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f0f4ff'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14'/%3e%3c/svg%3e");
}

/* Dragon Garden Card Styling */
.dragon-garden-card {
    max-width: 800px;
    margin: 30px auto;
}

.card-content {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
}

.card-image {
    flex-shrink: 0;
    width: 33.333%;
}

.card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 200px;
}

.card-body {
    padding: 32px;
    flex: 1;
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon span {
    font-size: 24px;
}

.card-info {
    flex: 1;
}

.card-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 9999px;
}

.date {
    font-size: 14px;
    color: #6b7280;
}

.card-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-info p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: #059669;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #047857;
}

.link-icon {
    margin-left: 4px;
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-content {
        flex-direction: column;
    }
    
    .card-image {
        width: 100%;
    }
    
    .card-image img {
        height: 200px;
        min-height: 200px;
    }
    
    .card-body {
        padding: 24px;
    }
}

/* Dragon Garden Combined Link Styling */
.dragon-garden-section {
    text-align: center;
    margin-top: 40px;
}

.dragon-garden-combined-link {
    display: inline-block;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 24px 40px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.3);
    border: 2px solid transparent;
    max-width: 500px;
    width: 100%;
}

.dragon-garden-combined-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(72, 187, 120, 0.4);
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
}

.link-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.link-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
    color: white;
} 