/* assets/css/styles.css - Main Stylesheet */

/* ===============================
   RESET & BASE STYLES
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* ===============================
   TYPOGRAPHY
   =============================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #390e43;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===============================
   BUTTONS
   =============================== */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #390e43, #b8860b);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8860b, #390e43);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #390e43;
    border: 2px solid #390e43;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: #390e43;
    color: white;
    transform: translateY(-2px);
}

/* ===============================
   HEADER STYLES
   =============================== */
.header-main {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-top {
    background: #390e43;
    padding: 10px 0;
    color: white;
    font-size: 14px;
}

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

.header-contact-info {
    display: flex;
    gap: 30px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact-item i {
    color: #390e43;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social-link {
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header-social-link:hover {
    color: #390e43;
}

.header-main-content {
    padding: 15px 0;
}

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

.header-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-highlight {
    font-size: 2rem;
    color: #390e43;
    font-weight: 700;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.header-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item .nav-link {
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
    color: #390e43;
}

.nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #390e43;
    transition: width 0.3s ease;
}

.nav-item .nav-link:hover::after,
.nav-item .nav-link.active::after {
    width: 100%;
}

/* ===============================
   HERO SECTION STYLES
   =============================== */
.hero-section {
    background: linear-gradient(135deg, #390e43, #34495e);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-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 200"><polygon fill="%23d4af37" fill-opacity="0.1" points="0,100 500,0 1000,100 1000,200 0,200"/></svg>') no-repeat center bottom;
    background-size: cover;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* ===============================
   CONTENT SECTIONS
   =============================== */
.content-section {
    padding: 80px 0;
}

.content-section-alt {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #390e43;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===============================
   FEATURES GRID
   =============================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3.2rem;
    color: #e6c155;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(230,193,85,0.10);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #390e43;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* ===============================
   STATS SECTION
   =============================== */
.stats-section {
    background: #390e43;
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    color: #e6c155;
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.stat-label {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* ===============================
   FOOTER STYLES
   =============================== */
.footer-main {
    background: #390e43;
    color: white;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #390e43;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #390e43;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

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

.footer-link {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #390e43;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #bdc3c7;
}

.footer-contact-item i {
    color: #390e43;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 20px 0;
}

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

.footer-copyright {
    color: #bdc3c7;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal-link {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #390e43;
}

/* ===============================
   RESPONSIVE STYLES
   =============================== */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .header-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* ===============================
   HOME PAGE SPECIFIC STYLES
   =============================== */

/* Hero Section Enhancements */
.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #390e43;
    font-weight: 600;
}

.hero-highlight-item i {
    font-size: 1.2rem;
}

/* Investment Plan Section */
.investment-plan-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.investment-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.investment-plan-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #390e43;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-title {
    font-size: 1.8rem;
    color: #390e43;
    margin-bottom: 20px;
}

.plan-roi {
    font-size: 3rem;
    font-weight: 700;
    color: #390e43;
    margin-bottom: 10px;
}

.plan-roi span {
    font-size: 1rem;
    color: #666;
    display: block;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px 0;
}

.plan-feature i {
    color: #27ae60;
    font-size: 1.2rem;
}

.plan-cta {
    text-align: center;
}

/* Investment Calculator */
.investment-calculator {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calculator-title {
    text-align: center;
    margin-bottom: 30px;
    color: #390e43;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #390e43;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #390e43;
}

.calculator-results {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.result-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.result-label {
    color: #666;
}

.result-value {
    color: #390e43;
    font-weight: 600;
}

/* Investment Tiers Table */
.investment-tiers-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.table-header {
    background: #390e43;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 20px;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background: #f8f9fa;
}

.table-row.highlighted {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 4px solid #390e43;
}

.table-cell {
    padding: 5px 10px;
    text-align: center;
}

.investment-note {
    margin-top: 20px;
    padding: 20px;
    background: #e7f3ff;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.security-section .section-title,
.security-section .section-subtitle {
    color: white;
}

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

.security-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-icon {
    font-size: 3.2rem;
    color: #e6c155;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(230,193,85,0.10);
}

.security-title {
    color: white;
    margin-bottom: 15px;
}

.security-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 30px;
}

.project-title {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #390e43;
}

.project-subtitle {
    color: #390e43;
    font-style: italic;
    margin-bottom: 15px;
}

.project-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.project-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.project-feature i {
    color: #390e43;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3a5068 0%, #3498db 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0 60px 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(44,62,80,0.18);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(44,62,80,0.18);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-highlights {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .investment-plan-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .table-cell {
        padding: 10px;
        border-bottom: 1px solid #e9ecef;
    }
    
    .table-header .table-cell {
        background: #d4af37;
        color: white;
        font-weight: 600;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .investment-plan-card,
    .investment-calculator {
        padding: 30px 20px;
    }
    
    .project-content {
        padding: 20px;
    }
}

/* ===============================
   ABOUT US PAGE STYLES
   =============================== */

.about-hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9)), url('assets/images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.office-info {
    position: sticky;
    top: 120px;
}

.office-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.office-icon {
    font-size: 3rem;
    color: #390e43;
    margin-bottom: 1rem;
}

.office-card h3 {
    color: #390e43;
    margin-bottom: 1rem;
}

.office-details {
    margin-top: 1.5rem;
    text-align: left;
}

.office-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.office-detail i {
    color: #390e43;
    width: 16px;
}

.office-detail span {
    color: #666;
}

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

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

.about-card:hover {
    transform: translateY(-5px);
}

.about-icon {
    font-size: 3rem;
    color: #390e43;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    color: #390e43;
    margin-bottom: 1rem;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #390e43;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #390e43;
    margin-bottom: 1rem;
}

.investment-details {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    font-size: 2rem;
    color: #390e43;
    margin-top: 5px;
}

.feature-content h4 {
    color: #390e43;
    margin-bottom: 0.5rem;
}

.director-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.director-image {
    text-align: center;
}

.director-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.director-info h3 {
    color: #390e43;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.director-title {
    color: #390e43;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.director-experience,
.director-expertise,
.director-education,
.director-achievements {
    margin-bottom: 2rem;
}

.director-experience h4,
.director-expertise h4,
.director-education h4,
.director-achievements h4 {
    color: #390e43;
    margin-bottom: 1rem;
}

.director-info ul {
    list-style: none;
    padding-left: 0;
}

.director-info ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.director-info ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #390e43;
    font-weight: bold;
}

.letter-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.letter-content h2 {
    color: #390e43;
    margin-bottom: 2rem;
    text-align: center;
}

.letter-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.letter-text ul {
    margin: 1.5rem 0;
    padding-left: 20px;
}

.letter-text ul li {
    margin-bottom: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

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

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #390e43;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #390e43;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

/* About Us Mobile Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .office-info {
        position: static;
    }
    
    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-features {
        grid-template-columns: 1fr;
    }
    
    .director-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* HEADER MOBILE RESPONSIVENESS */
@media (max-width: 900px) {
  .header-content-wrapper {
    flex-direction: row;
    gap: 0;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .header-logo {
    flex: 1 1 100%;
    text-align: left;
    margin-bottom: 10px;
  }
  .header-nav {
    order: 3;
    display: flex;
    justify-content: end;
    width: 100%;
  }
  .nav-menu {
    display: none !important;
    flex-direction: column;
    gap: 0;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 1001;
    border-radius: 0 0 10px 10px;
    padding: 10px 0;
  }
  .nav-menu.active {
    display: flex !important;
  }
  .nav-item {
    width: 100%;
    text-align: left;
    padding: 0 24px;
  }
  .nav-link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
  }
  .header-cta {
    order: 2;
    margin-left: auto;
    margin-right: 10px;
  }
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    z-index: 1100;
  }
  .mobile-menu-btn span {
    display: block;
    height: 4px;
    width: 28px;
    background: #390e43;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 600px) {
  .header-main-content {
    padding: 8px 0;
  }
  .logo-highlight {
    font-size: 1.3rem;
  }
  .logo-subtitle {
    font-size: 0.8rem;
  }
}

/* IMPROVE GENERAL RESPONSIVENESS */
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .features-grid, .about-grid, .services-grid, .projects-grid, .competencies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .investment-plan-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .director-profile-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .experience-timeline {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .feature-card, .service-card, .investment-plan-card, .investment-calculator, .project-card, .contact-card {
    padding: 20px 10px;
  }
  .cta-title {
    font-size: 1.3rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* CONTACT US PAGE STYLES */
.contact-flex {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-info-card, .contact-form-card {
  background: #f7f7f7;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(57,14,67,0.06);
  padding: 40px 32px;
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 450px;
}
.contact-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #390e43;
  margin-bottom: 18px;
  position: relative;
  text-align: left;
}
.contact-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: #390e43;
  border-radius: 2px;
  margin-top: 6px;
}
.contact-info-list {
  margin-top: 30px;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}
.contact-info-icon {
  background: #390e43;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-weight: 700;
  color: #390e43;
  margin-bottom: 2px;
}
.contact-info-value {
  color: #333;
  font-size: 1rem;
}
.contact-info-value a {
  color: #390e43;
  text-decoration: none;
}
.contact-info-value a:hover {
  text-decoration: underline;
}

.contact-form-card form {
  margin-top: 30px;
}
.contact-form-card .form-group {
  margin-bottom: 22px;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  color: #222;
  transition: border-color 0.2s;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: #390e43;
  outline: none;
}
.contact-form-card select {
  color: #222;
}
.contact-form-card textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-form-card .btn-primary {
  background: #390e43;
  border: none;
  font-size: 1.1rem;
  padding: 14px 0;
  border-radius: 8px;
  margin-top: 10px;
}
.contact-form-card .btn-primary:hover {
  background: #2a0832;
}
.form-success {
  color: #390e43;
  font-weight: 600;
  margin-top: 18px;
  text-align: center;
}

/* Responsive stacking */
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }
  .contact-info-card, .contact-form-card {
    max-width: 100%;
    min-width: 0;
    padding: 28px 10px;
  }
}

/* PROJECTS LISTING PAGE */
.projects-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  margin-top: 40px;
}
.project-listing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(57,14,67,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.project-listing-card:hover {
  box-shadow: 0 8px 32px rgba(57,14,67,0.13);
  transform: translateY(-4px) scale(1.01);
}
.project-listing-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.project-listing-content {
  padding: 28px 22px 22px 22px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.project-listing-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #390e43;
  margin-bottom: 8px;
}
.project-listing-location {
  color: #390e43;
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.project-listing-desc {
  color: #444;
  font-size: 1rem;
  margin-bottom: 18px;
  flex: 1 1 auto;
}
.project-listing-card .btn-secondary {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid #390e43;
  color: #390e43;
  background: #fff;
  font-weight: 600;
  padding: 12px 0;
  transition: background 0.2s, color 0.2s;
}
.project-listing-card .btn-secondary:hover {
  background: #390e43;
  color: #fff;
}
@media (max-width: 600px) {
  .projects-listing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .project-listing-image img {
    height: 160px;
  }
  .project-listing-content {
    padding: 16px 8px 16px 8px;
  }
}

/* SINGLE PROJECT PAGE */
.project-banner-section {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  margin-bottom: 0;
}
.project-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(57,14,67,0.7) 0%, rgba(57,14,67,0.2) 100%);
  z-index: 1;
}
.project-banner-content {
  position: absolute;
  left: 0; right: 0; bottom: 30px;
  z-index: 2;
  color: #fff;
  text-align: left;
  padding: 0 40px;
}
.project-banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.project-banner-location {
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-details-section {
  padding-top: 40px;
}
.project-details-flex {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.project-details-main {
  flex: 2 1 400px;
}
.project-details-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 28px;
}
.project-features-title {
  font-size: 1.2rem;
  color: #390e43;
  font-weight: 700;
  margin-bottom: 12px;
}
.project-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.project-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #390e43;
  font-size: 1rem;
  margin-bottom: 10px;
}
.project-features-list i {
  color: #390e43;
  font-size: 1.1rem;
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}
.project-gallery-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.project-gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(44,62,80,0.18);
}

/* Lightbox styles */
.project-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,30,50,0.92);
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.project-lightbox.active {
  display: flex;
}
.project-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.25);
}
.project-lightbox-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}
.project-lightbox-close:hover {
  color: #ffd700;
}
@media (max-width: 700px) {
  .project-gallery-img {
    height: 100px;
  }
  .project-lightbox-img {
    max-width: 98vw;
    max-height: 60vh;
  }
  .project-lightbox-close {
    top: 12px;
    right: 18px;
    font-size: 2rem;
  }
}

.project-details-cta {
  flex: 1 1 280px;
  min-width: 260px;
}
.project-cta-card {
  background: #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(57,14,67,0.07);
  padding: 32px 24px;
  text-align: center;
}
.project-cta-card h3 {
  color: #390e43;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.project-cta-card p {
  color: #444;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .project-details-flex {
    flex-direction: column;
    gap: 32px;
  }
  .project-banner-content {
    padding: 0 10px;
  }
}
@media (max-width: 600px) {
  .project-banner-section {
    height: 180px;
  }
  .project-banner-title {
    font-size: 1.3rem;
  }
  .project-gallery-img {
    width: 100px;
    height: 70px;
  }
  .project-cta-card {
    padding: 18px 6px;
  }
}

/* HERO SECTION PROFESSIONAL REDESIGN */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #2d1846 0%, #390e43 100%), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  color: #fff;
  padding: 180px 0 120px;
  text-align: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 16, 50, 0.82);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title {
  font-size: 3.5rem;
  margin-bottom: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
}
.hero-title .brand-highlight {
  color: #e6c155;
  font-weight: 900;
  letter-spacing: 1px;
}
.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 38px;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero-cta {
  display: flex;
  gap: 22px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  background: linear-gradient(90deg, #e6c155 0%, #bfa14a 100%);
  color: #390e43;
  white-space: nowrap;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  padding: 16px 38px;
  box-shadow: 0 2px 12px rgba(230,193,85,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #bfa14a 0%, #e6c155 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(230,193,85,0.18);
}
.btn-secondary {
  background: transparent;
  color: #e6c155;
  border: 2px solid #e6c155;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  padding: 16px 38px;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: #e6c155;
  color: #390e43;
}
@media (max-width: 900px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-section {
    padding: 100px 0 60px;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.3rem;
  }
  .hero-section {
    padding: 60px 0 30px;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .btn-primary, .btn-secondary {
    padding: 12px 18px;
    font-size: 1rem;
  }
}

/* HERO HIGHLIGHTS VISIBILITY FIX */
.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0 0 0;
  z-index: 2;
  position: relative;
}
.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  letter-spacing: 0.2px;
}
.hero-highlight-item i {
  color: #e6c155;
  font-size: 1.3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
@media (max-width: 600px) {
  .hero-highlights {
    flex-direction: column;
    gap: 18px;
    margin: 24px 0 0 0;
  }
  .hero-highlight-item {
    font-size: 1rem;
  }
}

/* HOMEPAGE PROJECT CARD STYLES */
.project-home-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(57,14,67,0.07);
  overflow: hidden;
  max-width: 480px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.project-home-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.project-home-content {
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.project-home-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #390e43;
  margin-bottom: 6px;
}
.project-home-subtitle {
  font-size: 1.05rem;
  color: #e6c155;
  font-style: italic;
  margin-bottom: 12px;
}
.project-home-desc {
  color: #444;
  font-size: 1rem;
  margin-bottom: 18px;
}
.project-home-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 22px;
}
.project-home-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #390e43;
  font-size: 0.98rem;
}
.project-home-features i {
  color: #e6c155;
  font-size: 1.1rem;
}
.project-home-btn {
  margin-top: 10px;
  align-self: stretch;
  text-align: center;
  font-size: 1.08rem;
  border-radius: 8px;
  padding: 14px 0;
}
@media (max-width: 600px) {
  .project-home-card {
    max-width: 100%;
    margin: 24px 0;
  }
  .project-home-image img {
    height: 140px;
  }
  .project-home-content {
    padding: 16px 8px 16px 8px;
  }
}
.site-logo {
  max-height: 48px;
  margin-right: 16px;
  vertical-align: middle;
  display: inline-block;
}
.site-logo-footer {
  max-height: 40px;
  margin-bottom: 12px;
  display: block;
}
@media (max-width: 600px) {
  .site-logo {
    max-height: 36px;
    margin-right: 8px;
  }
  .site-logo-footer {
    max-height: 28px;
    margin-bottom: 8px;
  }
}

/* Experience & Achievements Timeline Redesign */
.experience-achievements-section {
  background: #f8f9fa;
  padding: 80px 0;
}
.experience-timeline {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-left: 32px;
  border-left: 4px solid #e6c155;
}
.timeline-item {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(57,14,67,0.07);
  padding: 32px 32px 32px 64px;
  min-height: 120px;
  transition: box-shadow 0.2s;
}
.timeline-item:hover {
  box-shadow: 0 8px 32px rgba(57,14,67,0.13);
}
.timeline-icon {
  position: absolute;
  left: -44px;
  top: 32px;
  width: 48px;
  height: 48px;
  background: #390e43;
  color: #e6c155;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(57,14,67,0.10);
  border: 3px solid #fff;
  z-index: 2;
}
.timeline-content h4 {
  color: #390e43;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.timeline-content span {
  color: #e6c155;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: block;
}
.timeline-content p {
  color: #555;
  font-size: 1.08rem;
  margin-bottom: 0;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 36px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  background: #128c7e;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  color: #fff;
}
@media (max-width: 600px) {
  .experience-timeline {
    padding-left: 0;
    border-left: none;
    gap: 28px;
  }
  .timeline-item {
    padding: 24px 16px 24px 56px;
    min-height: 80px;
  }
  .timeline-icon {
    left: -28px;
    top: 24px;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

/* --- Our Services Page Styles --- */
.services-hero {
    background: linear-gradient(rgba(57,14,67,0.85), rgba(57,14,67,0.85)), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    color: #fff;
    padding: 80px 0 60px 0;
    text-align: center;
}
.services-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.services-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 0;
}

.services-section {
    background: #fff;
    padding: 60px 0 40px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.service-card {
    background: #f8f6fa;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(57,14,67,0.08);
    padding: 38px 20px 28px 20px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 2px solid #e5d3f3;
    position: relative;
}
.service-card:hover {
    box-shadow: 0 8px 32px rgba(57,14,67,0.18);
    transform: translateY(-6px) scale(1.03);
    border-color: #ffd700;
}
.service-card i {
    font-size: 2.7rem;
    color: #ffd700;
    margin-bottom: 18px;
    display: block;
    text-shadow: 0 2px 8px rgba(57,14,67,0.10);
}
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #390e43;
    margin-bottom: 0;
}
.service-card .service-sub {
    font-size: 0.95rem;
    color: #7a5c8a;
    font-weight: 400;
}

.services-description {
    background: #f3eaf7;
    padding: 40px 0 60px 0;
    text-align: center;
}
.services-description .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.services-description p {
    font-size: 1.18rem;
    color: #390e43;
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 700px) {
    .services-hero {
        padding: 50px 0 30px 0;
    }
    .services-hero .hero-content h1 {
        font-size: 2.1rem;
    }
    .services-section {
        padding: 30px 0 20px 0;
    }
    .services-description {
        padding: 20px 0 30px 0;
    }
    .services-grid {
        gap: 18px;
    }
    .service-card {
        padding: 24px 10px 18px 10px;
    }
}

/* --- Our Plans Page Styles --- */
.plans-hero {
    background: linear-gradient(rgba(57,14,67,0.85), rgba(57,14,67,0.85)), url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    color: #fff;
    padding: 80px 0 60px 0;
    text-align: center;
}
.plans-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.plans-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 0;
}

.plans-section {
    background: #fff;
    padding: 60px 0 40px 0;
}
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.plan-card {
    background: #f8f6fa;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(57,14,67,0.08);
    padding: 38px 20px 28px 20px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 2px solid #e5d3f3;
    position: relative;
}
.plan-card:hover {
    box-shadow: 0 8px 32px rgba(57,14,67,0.18);
    transform: translateY(-6px) scale(1.03);
    border-color: #ffd700;
}
.plan-card i {
    font-size: 2.7rem;
    margin-bottom: 18px;
    display: block;
    text-shadow: 0 2px 8px rgba(57,14,67,0.10);
}
.plan-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #390e43;
    margin-bottom: 0.5rem;
}
.plan-details {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #7a5c8a;
    font-size: 1.05rem;
    line-height: 1.7;
}
.plan-details li strong {
    color: #390e43;
}

/* Plan Tier Colors */
.plan-card.bronze i { color: #cd7f32; }
.plan-card.silver i { color: #b0b0b0; }
.plan-card.gold i { color: #ffd700; }
.plan-card.diamond i { color: #b9f2ff; }
.plan-card.platinum i { color: #e5e4e2; }

.plans-description {
    background: #f3eaf7;
    padding: 40px 0 60px 0;
    text-align: center;
}
.plans-description .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.plans-description p {
    font-size: 1.18rem;
    color: #390e43;
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 700px) {
    .plans-hero {
        padding: 50px 0 30px 0;
    }
    .plans-hero .hero-content h1 {
        font-size: 2.1rem;
    }
    .plans-section {
        padding: 30px 0 20px 0;
    }
    .plans-description {
        padding: 20px 0 30px 0;
    }
    .plans-grid {
        gap: 18px;
    }
    .plan-card {
        padding: 24px 10px 18px 10px;
    }
}

/* --- Accent Bar for Section Headers --- */
.section-accent-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700 60%, #390e43 100%);
    border-radius: 2px;
    margin: 12px auto 24px auto;
}

/* --- Plan Card Ribbons & Popular Badge --- */
.plan-ribbon {
    position: absolute;
    top: 18px;
    left: -18px;
    background: #ffd700;
    color: #390e43;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 22px 6px 18px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 8px rgba(57,14,67,0.08);
    z-index: 2;
    letter-spacing: 0.5px;
}
.plan-ribbon.bronze { background: #cd7f32; color: #fff; }
.plan-ribbon.silver { background: #b0b0b0; color: #fff; }
.plan-ribbon.gold { background: #ffd700; color: #390e43; }
.plan-ribbon.diamond { background: #b9f2ff; color: #390e43; }
.plan-ribbon.platinum { background: #e5e4e2; color: #390e43; }

.plan-popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #ffd700;
    color: #390e43;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(57,14,67,0.10);
    z-index: 2;
    letter-spacing: 0.5px;
}

.plan-card {
    position: relative;
    overflow: visible;
}
.plan-short-desc {
    color: #7a5c8a;
    font-size: 1.02rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}
.plan-cta {
    margin-top: 1.2rem;
    width: 100%;
    font-size: 1.08rem;
}

/* --- Service Card Icon Circle --- */
.service-icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ffd700 60%, #390e43 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    box-shadow: 0 2px 10px rgba(57,14,67,0.10);
    transition: box-shadow 0.3s, transform 0.3s;
}
.service-icon-circle i {
    color: #fff;
    font-size: 2rem;
    text-shadow: 0 2px 8px rgba(57,14,67,0.10);
}
.service-card:hover .service-icon-circle {
    box-shadow: 0 6px 18px rgba(57,14,67,0.18);
    transform: scale(1.08);
}

.service-desc {
    color: #7a5c8a;
    font-size: 1.02rem;
    margin-bottom: 1.1rem;
    margin-top: 0.5rem;
}
.service-cta {
    margin-top: 0.5rem;
    width: 100%;
    font-size: 1.02rem;
}

/* --- Card Hover Effects (Both Pages) --- */
.plan-card, .service-card {
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.plan-card:hover, .service-card:hover {
    box-shadow: 0 12px 36px rgba(57,14,67,0.18);
    transform: translateY(-8px) scale(1.04);
    border-color: #ffd700;
    z-index: 3;
}

/* --- Section Header Styling --- */
.section-header {
    text-align: center;
    margin-bottom: 32px;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #390e43;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .plans-grid, .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .plans-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    .plan-ribbon, .plan-popular-badge {
        left: 8px;
        right: 8px;
        top: 10px;
        font-size: 0.85rem;
        padding: 4px 10px;
    }
    .plan-popular-badge {
        right: 8px;
        top: 38px;
    }
    .section-title {
        font-size: 1.3rem;
    }
}

.profile-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: #f8f8f8;
  padding: 40px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.profile-image {
  flex: 0 0 260px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.profile-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid #4b2354;
  background: #fff;
}
.profile-content {
  flex: 1 1 0%;
}
@media (max-width: 900px) {
  .profile-container {
    flex-direction: column;
    gap: 24px;
    padding: 20px;
  }
  .profile-image {
    justify-content: center;
    margin-bottom: 16px;
  }
  .profile-image img {
    width: 180px;
    height: 180px;
  }
}

.leadership-message-section {
  position: relative;
  color: #fff !important;
  background: linear-gradient(135deg, rgba(44,62,80,0.95), rgba(52,152,219,0.85)), url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  border-radius: 16px;
  overflow: hidden;
}
.leadership-message-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 30, 50, 0.65);
  z-index: 1;
}
.leadership-message-section .container {
  position: relative;
  z-index: 2;
}
.leadership-message-quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.leadership-message-content {
  color: #fff;
  background: rgba(44, 62, 80, 0.60);
  padding: 32px 36px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.10);
}
.leadership-message-content .section-title {
  color: #ffd700;
  margin-bottom: 18px;
}
.leadership-message-content p,
.leadership-message-content ul,
.leadership-message-content li {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.7;
}
.leadership-message-content ul {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
.leadership-message-content li strong {
  color: #ffd700;
}
@media (max-width: 700px) {
  .leadership-message-content {
    padding: 18px 8px;
  }
}

@media (max-width: 900px) {
  /* ...existing rules... */
  .header-cta {
    display: none !important;
  }
}

@media (min-width: 901px) {
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    float: none;
  }
}

@media (max-width: 900px) {
  .sidebar-nav.mobile-only {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 16px rgba(0,0,0,0.08);
    z-index: 2000;
    padding-top: 60px;
  }
  .sidebar-nav .nav-menu {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    background: none;
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .sidebar-nav .nav-item {
    width: 100%;
    text-align: left;
    padding: 0 24px;
  }
  .sidebar-nav .nav-link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
  }
}
@media (min-width: 901px) {
  .sidebar-nav.mobile-only {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .nav-menu {
    width: 80vw;
    margin: 0 auto;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .leadership-intro-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 10px;
  }
}