/* Owner Landing Page Custom Styles */

:root {
    --primary-color: #2077ba;
    --secondary-color: #ffbe5f;
    --accent-color: #f9b33b;
    --dark-blue: #2c91ce;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(44, 145, 206, 0.12);
    --shadow-hover: 0 12px 48px rgba(44, 145, 206, 0.18);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: var(--primary-color);
    --gradient-secondary: var(--secondary-color);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: #f8fafc;
    font-size: 18px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================
   HERO SPLIT SECTION - Full Width with Gradient Overlay
   ============================================ */
.hero-split-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    height: 60vh;
    max-height: 600px;
    overflow: hidden;
}

.hero-split-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 40%,
        rgba(255, 255, 255, 0.95) 55%,
        rgba(255, 255, 255, 0.8) 65%,
        rgba(255, 255, 255, 0.4) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 2;
}

.hero-split-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.hero-text-container {
    max-width: 550px;
    padding: 2rem 0;
}

.hero-split-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-split-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-split-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: #f9b33b;
    color: #ffffff;
    border-color: #f9b33b;
}

.hero-btn-primary:hover {
    background: #e5a02e;
    border-color: #e5a02e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 179, 59, 0.4);
}

.hero-btn-secondary {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.hero-btn-secondary:hover {
    background: #1a5f8a;
    border-color: #1a5f8a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 119, 186, 0.3);
}

/* Hero Split Responsive */
@media (max-width: 1200px) {
    .hero-split-overlay {
        width: 75%;
    }
    
    .hero-text-container {
        max-width: 500px;
    }
    
    .hero-split-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .hero-split-section {
        min-height: 450px;
        height: auto;
        max-height: none;
    }
    
    .hero-split-overlay {
        width: 100%;
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 60%,
            rgba(255, 255, 255, 0.7) 100%
        );
    }
    
    .hero-split-background {
        background-position: center center;
    }
    
    .hero-split-content {
        padding: 3rem 2rem;
        justify-content: center;
        text-align: center;
    }
    
    .hero-text-container {
        max-width: 600px;
        text-align: center;
    }
    
    .hero-split-title {
        font-size: 2rem;
    }
    
    .hero-split-subtitle {
        font-size: 1rem;
    }
    
    .hero-split-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-split-section {
        min-height: 400px;
    }
    
    .hero-split-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-split-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-split-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-split-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/* OLD Hero Section - kept for reference */
.hero-section {
    position: relative;
    margin-top: -140px;
    padding-top: 140px;
    height: calc(682px + 140px);
    max-height: calc(682px + 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.hero-content {
    max-width: 900px;
    padding: 3rem 2rem;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 190, 95, 0.3);
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 190, 95, 0.4);
}

/* Content Sections */
.content-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* At a Glance Section */
.at-glance-box {
    background: transparent;
    padding: 2rem 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 4rem;
    text-align: center;
}

.at-glance-content {
    max-width: 1000px;
    margin: 0 auto;
}

.bullet-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.bullet-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.bullet-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    min-width: 30px;
}

.bullet-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* ============================================
   ACCORDION WITH IMAGE SECTION
   ============================================ */
.accordion-image-section {
    background: #f8fafc;
    padding: 5rem 2rem;
}

.accordion-image-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.accordion-wrapper {
    position: relative;
}

.accordion-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.accordion-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Modern Accordion Styles */
.modern-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-bottom: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:first-child {
    border-radius: 16px 16px 0 0;
}

.accordion-item:last-child {
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0 0 16px 16px;
}

.accordion-item:only-child {
    border-radius: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.accordion-item.active {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(32, 119, 186, 0.15);
    position: relative;
    z-index: 1;
}

.accordion-item.active + .accordion-item {
    border-top-color: var(--primary-color);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 1rem;
}

.accordion-header:hover {
    background: rgba(32, 119, 186, 0.05);
}

.accordion-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-icon i {
    color: white;
    font-size: 1.1rem;
}

.accordion-item.active .accordion-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(32, 119, 186, 0.4);
}

.accordion-title {
    flex: 1;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-title {
    color: var(--primary-color);
}

.accordion-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.accordion-toggle i {
    position: absolute;
    font-size: 0.85rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.accordion-toggle .fa-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.accordion-toggle .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.accordion-item.active .accordion-toggle {
    background: var(--primary-color);
    transform: rotate(180deg);
}

.accordion-item.active .accordion-toggle i {
    color: white;
}

.accordion-item.active .accordion-toggle .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.accordion-item.active .accordion-toggle .fa-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    opacity: 1;
}

.accordion-body {
    padding: 0 1.5rem 1.5rem 4.5rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.35rem;
}

.accordion-body p {
    margin-bottom: 0.75rem;
}

.accordion-body ul, .accordion-body ol {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

.accordion-body li {
    margin-bottom: 0.4rem;
}

.accordion-body strong {
    color: var(--text-dark);
}

/* Image Side */
.accordion-image-side {
    position: sticky;
    top: 100px;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    display: none;
}

.overlay-content {
    display: none;
}

.overlay-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.overlay-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateX(5px);
}

.overlay-btn i {
    transition: transform 0.3s ease;
}

.overlay-btn:hover i {
    transform: translateX(3px);
}

/* ============================================
   FULL WIDTH INFO BANNER SECTION
   ============================================ */
.info-banner-section {
    background: #2077ba;
    padding: 4rem 2rem;
    width: 100%;
}

.info-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.info-column {
    text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
}

.info-column:last-child {
    border-right: none;
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i,
.info-icon i.fa-star,
.info-icon i.fas {
    font-size: 1.5rem;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.info-column h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: center;
}

.info-text p {
    margin-bottom: 0.75rem;
    text-align: center;
}

.info-text ul, .info-text ol {
    text-align: center;
    padding-left: 0;
    margin: 0.75rem 0;
    list-style-position: inside;
}

.info-text li {
    margin-bottom: 0.4rem;
    text-align: center;
}

.info-text a {
    color: #ffbe5f;
    text-decoration: underline;
}

.info-text a:hover {
    color: #f9b33b;
}

/* Info Banner Responsive */
@media (max-width: 992px) {
    .info-banner-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .info-column {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 2.5rem;
    }
    
    .info-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Content Boxes */
.boxes-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-box {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 280px;
    max-width: 320px;
    background: var(--white);
    padding: 2rem 1.8rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(44, 145, 206, 0.08), 0 2px 8px rgba(44, 145, 206, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.content-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(44, 145, 206, 0.15), 0 8px 16px rgba(44, 145, 206, 0.10);
    border-color: rgba(32, 119, 186, 0.3);
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2c91ce;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.content-box:hover::before {
    transform: scaleX(1);
}

.content-box .icon-container {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(44, 145, 206, 0.3);
    transition: all 0.3s ease;
}

.content-box:hover .icon-container {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(44, 145, 206, 0.4);
}

.content-box .icon-container i {
    color: var(--white);
    font-size: 1.8rem;
}

.content-box h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    text-align: center;
}

.content-box p {
    line-height: 1.8;
    margin-bottom: 1.6rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 400;
}

.content-box ul, .content-box ol {
    margin-left: 0;
    margin-bottom: 1.6rem;
    padding-left: 0;
}

.content-box li {
    margin-bottom: 0.8rem;
    line-height: 1.0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.0rem;
    text-align: left;
    list-style-type: disc;
}

.content-box li::before {
    display: none;
}

.content-box .note {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.content-box .contact-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.content-box .contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}

.content-box .contact-info p strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.content-box .box-image {
    text-align: center;
    margin-top: 1.5rem;
}

.content-box .box-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(44, 145, 206, 0.1);
}

.content-box.full-width {
    flex: 1 1 100%;
    max-width: none;
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: var(--white);
}

.video-section iframe {
    width: 100%;
    max-width: 920px;
    height: 450px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: block;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-text li {
    margin-bottom: 0.5rem;
    text-align: left;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Video Section */
.videos-section {
    padding: 3rem 2rem;
    background: var(--bg-light);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: var(--transition);
    background: #000;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--border-radius);
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,60 0,100"/></svg>') no-repeat center bottom;
    background-size: cover;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-feature i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    min-width: 25px;
}

.cta-feature span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-primary-btn,
.cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-primary-btn {
    background: var(--secondary-color);
    color: var(--text-dark);
    border: 2px solid var(--secondary-color);
}

.cta-primary-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.cta-secondary-btn {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Modern Calculation Section */
.calculation-section {
    background: #f8fafc;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.calculation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.calculation-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.modern-calculator-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    box-shadow: 
        0 25px 50px rgba(32, 119, 186, 0.15),
        0 10px 30px rgba(255, 190, 95, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    animation: slideInUp 1s ease-out;
}

.modern-calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 32px 32px 0 0;
}

.calculator-header {
    background: var(--primary-color);
    padding: 4rem 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.calculator-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

.calculator-icon-wrapper {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 2rem;
}

.calculator-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: rgba(255, 190, 95, 0.25);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.calculator-icon-circle {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.calculator-icon-circle:hover {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.calculator-icon-circle i {
    font-size: 3rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: bounce-icon 2s ease-in-out infinite;
}

.calculator-title-section {
    position: relative;
    z-index: 2;
}

.calculator-title-section h3 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.calculator-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.calculator-form-container {
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.calculator-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.calculator-features {
    background: #f7fafc;
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid rgba(32, 119, 186, 0.1);
    position: relative;
}

.calculator-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 0 0 4px 4px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 2rem;
    border-radius: 60px;
    box-shadow: 
        0 8px 25px rgba(32, 119, 186, 0.08),
        0 4px 12px rgba(255, 190, 95, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: left 0.6s ease;
}

.feature-highlight:hover::before {
    left: 100%;
}

.feature-highlight:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(32, 119, 186, 0.15),
        0 8px 20px rgba(255, 190, 95, 0.1);
    border-color: rgba(32, 119, 186, 0.2);
}

.feature-highlight i {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-highlight:hover i {
    color: #ffbe5f;
    transform: scale(1.1);
}

.feature-highlight span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    letter-spacing: 0.3px;
}

/* Contact Information Section */
.contact-info-section {
    background: var(--white);
    padding: 6rem 2rem;
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid .contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(44, 145, 206, 0.08);
    transition: var(--transition);
    text-align: left;
}

.contact-info-grid .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 145, 206, 0.12);
}

.contact-info-grid .contact-item i {
    color: var(--primary-color);
    font-size: 2rem;
    min-width: 30px;
    text-align: center;
}

.contact-info-grid .contact-item div {
    flex: 1;
}

.contact-info-grid .contact-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-info-grid .contact-item span {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.4;
}

.contact-content {
    grid-column: 1 / -1;
    text-align: center;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    text-align: center;
}

/* Language Selector Styling for Owner Landing Page */
.header_top_bar .select .lag_selectbox {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(32, 119, 186, 0.2);
    color: #333333;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(32, 119, 186, 0.1);
}

.header_top_bar .select .lag_selectbox:hover {
    border-color: #2077ba;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(32, 119, 186, 0.2);
}

.header_top_bar .select::after {
    color: #2077ba;
}

/* Modern Advantage CTA Section */
.modern-advantage-cta {
    position: relative;
    background: #2077ba;
    border-radius: 24px;
    padding: 4rem 3rem;
    margin: 1.5rem 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(32, 119, 186, 0.3), 0 8px 32px rgba(255, 190, 95, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    animation: fadeInUp 1s ease-out;
}

.advantage-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.advantage-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 119, 186, 0.9);
    z-index: 1;
}

.advantage-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    z-index: 2;
}

.advantage-cta-content {
    position: relative;
    z-index: 3;
    color: white;
}

.advantage-header {
    text-align: center;
    margin-bottom: 3rem;
}

.advantage-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.advantage-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(255, 190, 95, 0.35);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.advantage-icon-wrapper i {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: #ffbe5f;
    text-shadow: 0 0 20px rgba(255, 190, 95, 0.5);
    animation: float 3s ease-in-out infinite;
}

.advantage-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.advantage-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.advantage-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.advantage-text-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.7;
    font-size: 1.1rem;
}

.advantage-text-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.advantage-text-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.advantage-text-content li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.advantage-text-content strong {
    color: #ffbe5f;
    font-weight: 600;
}

.advantage-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.advantage-feature-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffbe5f;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advantage-feature-card:hover::before {
    transform: scaleX(1);
}

.advantage-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: #ffbe5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 190, 95, 0.3);
    transition: all 0.3s ease;
}

.advantage-feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 190, 95, 0.4);
}

.advantage-feature-card .feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.advantage-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
}

.advantage-feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.advantage-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.advantage-primary-btn,
.advantage-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.advantage-primary-btn {
    background: #ffbe5f;
    color: #333;
    border: 2px solid #ffbe5f;
}

.advantage-primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.advantage-primary-btn:hover::before {
    left: 100%;
}

.advantage-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 190, 95, 0.4);
}

.advantage-secondary-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.advantage-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Animations */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.animate-in {
    animation: fadeInUp 1s ease-out forwards;
}

.content-section.animate-in {
    animation: slideInLeft 1s ease-out forwards;
}

.contact-info.animate-in {
    animation: slideInLeft 1s ease-out forwards;
}

.contact-form.animate-in {
    animation: slideInRight 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Success/Error Messages */
.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Accordion Responsive - Tablet */
@media (max-width: 1024px) {
    .accordion-image-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .accordion-image-side {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Accordion Responsive - Mobile */
@media (max-width: 768px) {
    .accordion-image-section {
        padding: 3rem 1rem;
    }
    
    .accordion-section-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .accordion-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .accordion-header {
        padding: 1rem;
    }
    
    .accordion-icon {
        width: 38px;
        height: 38px;
    }
    
    .accordion-title {
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 0 1rem 1rem 3.5rem;
        font-size: 0.9rem;
    }
    
    .overlay-content h3 {
        font-size: 1.4rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    .box-container.three-cards {
        padding: 0 1rem;
    }
    
    .box-container.three-cards .content-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .hero-section {
        min-height: 20vh;
        height: auto;
        max-height: none;
        padding: 1rem;
    }

    .hero-background img {
        height: 20vh;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .content-section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .at-glance-box {
        padding: 1.5rem 0;
    }

    .bullet-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bullet-item {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .box-container {
        flex-direction: column;
        align-items: center;
    }

    .content-box {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 2rem;
    }

    .content-box h3 {
        font-size: 1.3rem;
    }

    .content-box.full-width {
        padding: 2.5rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-wrapper {
        padding-bottom: 56.25%;
        max-width: 100%;
    }

    .videos-section {
        padding: 2rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-input,
    .form-textarea {
        padding: 1rem;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .calculator-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-highlight {
        flex: 1 1 100%;
        max-width: 300px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info-grid .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-info-grid .contact-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .modern-advantage-cta {
        padding: 2.5rem 1.5rem;
        margin: 1rem 0;
    }

    .advantage-title {
        font-size: 2rem;
    }

    .advantage-subtitle {
        font-size: 1.1rem;
    }

    .advantage-text-content {
        padding: 2rem 1.5rem;
    }

    .advantage-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .advantage-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .advantage-primary-btn,
    .advantage-secondary-btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }

    .hero-section {
        min-height: 35vh;
        height: auto;
        max-height: none;
    }

    .hero-background img {
        height: 35vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card,
    .contact-form {
        padding: 1.5rem;
    }

    .content-section,
    .gallery-section,
    .videos-section,
    .contact-section {
        padding: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .at-glance-box {
        padding: 1rem 0;
    }

    .bullet-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bullet-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }

    .box-container {
        gap: 1rem;
    }

    .content-box {
        flex: 1 1 100%;
        padding: 1.8rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
        max-width: none;
    }

    .content-box h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        padding-left: 0;
        text-align: center;
    }

    .content-box .icon-container {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }

    .content-box .icon-container i {
        font-size: 1.3rem;
    }

    .content-box li {
        padding-left: 1.8rem;
        font-size: 1rem;
        text-align: left;
        list-style-type: disc;
        margin-bottom: 0.6rem;
    }

    .content-box li::before {
        display: none;
    }

    .content-box p {
        font-size: 0.95rem;
        margin-bottom: 1.3rem;
        line-height: 1.7;
    }

    .content-box .contact-info p {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    .content-box .contact-info p strong {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--dark-blue);
    }

    .video-section iframe {
        height: 250px;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-feature {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .modern-calculator-card {
        margin: 0 1rem;
        border-radius: 24px;
    }

    .calculator-header {
        padding: 3rem 2rem;
    }

    .calculator-icon-glow {
        width: 120px;
        height: 120px;
    }

    .calculator-icon-circle {
        width: 80px;
        height: 80px;
    }

    .calculator-icon-circle i {
        font-size: 2.5rem;
    }

    .calculator-title-section h3 {
        font-size: 2rem;
    }

    .calculator-subtitle {
        font-size: 1.1rem;
    }

    .calculator-form-container {
        padding: 3rem 2rem;
    }

    .calculator-features {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .feature-highlight {
        padding: 1.2rem 1.5rem;
        border-radius: 50px;
    }

    .feature-highlight i {
        font-size: 1.3rem;
    }

    .feature-highlight span {
        font-size: 0.95rem;
    }

    .modern-advantage-cta {
        padding: 2rem 1rem;
    }

    .advantage-icon-wrapper i {
        font-size: 2.5rem;
    }

    .advantage-icon-glow {
        width: 100px;
        height: 100px;
    }

    .advantage-title {
        font-size: 1.8rem;
    }

    .advantage-subtitle {
        font-size: 1rem;
    }

    .advantage-text-content {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }

    .advantage-feature-card {
        padding: 1.2rem 1rem;
    }

    .advantage-feature-card .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .advantage-feature-card .feature-icon i {
        font-size: 1.5rem;
    }

    .advantage-feature-card h4 {
        font-size: 1.1rem;
    }

    .advantage-feature-card p {
        font-size: 0.9rem;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .box-container {
        gap: 1.5rem;
    }

    .content-box {
        flex: 1 1 calc(50% - 1rem);
        min-width: 280px;
        max-width: 320px;
        padding: 2rem 1.8rem;
    }

    .content-box h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .content-box .icon-container {
        width: 50px;
        height: 50px;
        margin-bottom: 1.2rem;
    }

    .content-box .icon-container i {
        font-size: 1.5rem;
    }

    .bullet-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .video-wrapper {
        padding-bottom: 56.25%;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .hero-section {
        min-height: 40vh;
        height: auto;
        max-height: none;
    }

    .hero-background img {
        height: 40vh;
    }

    .calculator-header {
        padding: 3.5rem 2.5rem;
    }

    .calculator-icon-glow {
        width: 130px;
        height: 130px;
    }

    .calculator-icon-circle {
        width: 90px;
        height: 90px;
    }

    .calculator-icon-circle i {
        font-size: 2.8rem;
    }

    .calculator-form-container {
        padding: 3.5rem 2.5rem;
    }

    .calculator-features {
        padding: 2.5rem 2rem;
        gap: 1.8rem;
    }

    .feature-highlight {
        flex: 1 1 calc(50% - 1rem);
        min-width: 200px;
        padding: 1.3rem 1.8rem;
    }

    .modern-advantage-cta {
        padding: 3rem 2rem;
    }

    .advantage-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .advantage-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .advantage-feature-card {
        padding: 1.5rem 1rem;
    }
}

/* Medium screens */
@media (max-width: 1200px) {
    .content-box {
        flex: 1 1 calc(50% - 1.5rem);
        min-width: 300px;
        max-width: 360px;
        padding: 2.2rem 2rem;
    }

    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .content-box {
        flex: 1 1 calc(33.33% - 2rem);
        max-width: 420px;
        padding: 3rem 2.8rem;
    }

    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}
