/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

/* Desktop Layout - Wider Container */
@media (min-width: 1024px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }
}

/* Mobile Layout - Keep Original */
@media (max-width: 1023px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile Navigation */
@media (max-width: 1023px) {
    .nav-container {
        max-width: 1200px;
        padding: 0 20px;
    }
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #0077BE;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0077BE;
}

.cta-link {
    background: linear-gradient(135deg, #0077BE, #005A9B);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 190, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.7), rgba(0, 90, 155, 0.5));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: #FFD700;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Sections */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

/* Pricing section için özel beyaz başlık */
.pricing h2.section-title,
.pricing .section-title,
section.pricing .section-title,
#pricing .section-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)) !important;
    padding: 1rem 2rem !important;
    border-radius: 15px !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    display: inline-block !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0077BE, #005A9B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0077BE, #005A9B);
    color: white;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.price-table {
    width: 100%;
    margin: 1rem 0;
}

.price-table th,
.price-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-table th {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.price {
    font-weight: 700;
    color: #FFD700;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
}

.gallery-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    height: 500px;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.gallery-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-btn.prev {
    left: 20px;
}

.gallery-btn.next {
    right: 20px;
}

/* Project Details */
.project-details {
    padding: 5rem 0;
    background: #f8f9fa;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.details-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.detail-item {
    margin-bottom: 2rem;
}

.detail-item h4 {
    color: #0077BE;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-item ul {
    list-style: none;
    padding-left: 0;
}

.detail-item li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.detail-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28A745;
    font-weight: bold;
}

.details-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0077BE, #005A9B);
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 119, 190, 0.3);
}

/* Footer */
/* Modern Professional Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0077BE, #FFD700, #0077BE);
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0077BE;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-section p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
}

.footer-section ul li a::before {
    content: '→';
    margin-right: 0.5rem;
    color: #0077BE;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    color: #FFD700;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.footer-contact-item i {
    font-size: 1.2rem;
    color: #0077BE;
    margin-right: 1rem;
    min-width: 20px;
}

.footer-contact-item span {
    color: #e0e0e0;
    font-size: 1rem;
}

.footer-contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0077BE, transparent);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        max-width: 150px;
        margin: 0 auto 1.5rem;
    }
    
    .footer-section ul li a {
        justify-content: center;
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .footer-contact-item {
        justify-content: center;
        font-size: 1.1rem;
    }
    
    .footer-contact-item i {
        font-size: 1.3rem;
    }
    
    .footer-contact-item span,
    .footer-contact-item a {
        font-size: 1.1rem;
    }
    
    .footer-bottom p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}ky Contact Button */
.sticky-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.sticky-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

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

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .gallery-slide {
        height: 300px;
    }

    .form-container {
        margin: 0 20px;
        padding: 2rem;
    }

    .sticky-contact {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }
}



/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0077BE, #005A9B);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 5rem 0;
}

.about-grid {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0077BE, #005A9B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Mission Vision */
.mission-vision {
    padding: 5rem 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: linear-gradient(135deg, #0077BE, #005A9B);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

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

.mv-icon i {
    color: #FFD700;
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

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

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

.team-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0077BE, #005A9B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.team-image i {
    color: white;
    font-size: 2.5rem;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.team-role {
    color: #0077BE;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Why Choose Us */
.why-choose {
    padding: 5rem 0;
}

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

.choose-item {
    text-align: center;
    padding: 2rem;
}

.choose-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.choose-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Contact Page Styles */
.contact-info {
    padding: 5rem 0;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0077BE, #005A9B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    color: white;
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #0077BE;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Mobile Responsive for About/Contact Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .mv-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid,
    .team-grid,
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
}


/* Economic Advantage Section */
.economic-advantage {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.advantage-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.highlight-box {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.highlight-box h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-box .big-text {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.comparison-card.expensive::before {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.comparison-card.profitable::before {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.comparison-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.expensive .comparison-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.profitable .comparison-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.comparison-icon i {
    color: white;
    font-size: 1.5rem;
}

.comparison-card h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: #333;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.comparison-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.expensive li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.profitable li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.comparison-result {
    text-align: center;
    padding: 0.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-result.negative {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.comparison-result.positive {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.advantage-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.advantage-item i {
    color: #0077BE;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.advantage-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.advantage-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.urgency-box {
    background: linear-gradient(135deg, #0077BE, #005A9B);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.urgency-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.urgency-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.urgency-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.urgency-cta i {
    margin-right: 0.5rem;
}

/* Mobile Responsive for Economic Advantage */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-features {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .highlight-box h3 {
        font-size: 1.5rem;
    }
    
    .urgency-box {
        padding: 2rem;
    }
    
    .advantage-content h2 {
        font-size: 2rem;
    }
}


/* Contact Page Additional Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.location-details {
    margin-top: 2rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.location-item i {
    color: #0077BE;
    font-size: 1.5rem;
}

.location-item h4 {
    margin-bottom: 0.3rem;
    color: #333;
    font-size: 1rem;
}

.location-item p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h4 {
    color: #0077BE;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #FFD700;
    border-color: #FFD700;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-weight: bold;
    font-size: 12px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #0077BE;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #333;
    transform: translateY(-2px);
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #0077BE;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-contact:hover {
    background: #FFD700;
    color: #333 !important;
    transform: translateX(5px);
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .location-item {
        flex-direction: column;
        text-align: center;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
}


/* Biz Kimiz Page Styles */
.company-story {
    padding: 5rem 0;
    background: #f8f9fa;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

.story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.highlight-box {
    background: linear-gradient(135deg, #0077BE, #005a9e);
    color: white !important;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.highlight-box h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: white !important;
}

.highlight-box p {
    color: white !important;
    line-height: 1.7;
}

.founder-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder-info {
    text-align: center;
    margin-top: 1rem;
}

.founder-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.founder-info p {
    color: #0077BE;
    font-weight: 600;
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0077BE, #005a9e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3, .vision-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.7;
}

/* Our Values */
.our-values {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: #333;
}

.value-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Our Projects */
.our-projects {
    padding: 5rem 0;
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    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-card.featured {
    grid-column: span 2;
}

.project-image {
    position: relative;
    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-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFD700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.project-location {
    color: #0077BE;
    margin-bottom: 1rem;
    font-weight: 500;
}

.project-location i {
    margin-right: 0.5rem;
}

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

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #e9ecef;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-price {
    margin-bottom: 1.5rem;
}

.price-from {
    color: #0077BE;
    font-weight: 600;
    font-size: 1.1rem;
}

.project-btn {
    background: linear-gradient(135deg, #0077BE, #005a9e);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.project-btn:hover {
    background: linear-gradient(135deg, #005a9e, #004080);
    transform: translateY(-2px);
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.choose-item {
    text-align: center;
    padding: 2rem;
}

.choose-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.choose-item h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.choose-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0077BE, #005a9e);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #FFD700;
    color: #333;
}

.btn-primary:hover {
    background: #FFA500;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Responsive for Biz Kimiz Page */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card.featured {
        grid-column: span 1;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Hero Title Mobile Fix */
    .hero-content {
        margin-top: 80px;
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        padding: 0.6rem 1rem;
        text-align: center;
        line-height: 1.1;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
        text-align: center;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    
    .hero-features {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
}


/* Form Messages */
.form-message {
    margin-top: 1rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #c3e6cb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #f5c6cb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Admin Panel Link */
.admin-link {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.admin-link:hover {
    opacity: 1;
}


/* Detailed Amortization Styles */
.detailed-amortization {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    border: 2px solid #0077BE;
}

.detailed-amortization h3 {
    font-size: 1.8rem;
    color: #0077BE;
    text-align: center;
    margin-bottom: 0.5rem;
}

.analysis-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.amortization-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.amortization-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.delmare-card {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9, #e8f5e8);
}

.hotel-card {
    border-color: #dc3545;
    background: linear-gradient(135deg, #fff8f8, #f8e8e8);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.card-header i {
    font-size: 1.5rem;
    color: #0077BE;
}

.card-header h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.advantage-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.card-details {
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
}

.label {
    color: #666;
    font-size: 0.9rem;
}

.value {
    font-weight: 600;
    color: #333;
}

.total-cost {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
}

.delmare-total {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.hotel-total {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
}

.total-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.total-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.important-notes {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.important-notes h4 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #856404;
    line-height: 1.4;
}

.notes-list li:before {
    content: "•";
    color: #f39c12;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.conclusion-box {
    background: linear-gradient(135deg, #0077BE, #005A9B);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.conclusion-content h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.conclusion-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.savings-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.savings-text {
    font-size: 1rem;
}

.savings-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
}

/* Mobile Responsive for Detailed Amortization */
@media (max-width: 768px) {
    .amortization-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detailed-amortization {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .detailed-amortization h3 {
        font-size: 1.5rem;
    }
    
    .savings-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-badge {
        position: static;
        display: inline-block;
        margin-top: 0.5rem;
    }
}


/* Payment Plan Section Styles */
.payment-plan-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.payment-plan-header h2 {
    font-size: 2.5rem;
    color: #0077BE;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

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

.payment-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.project-info {
    border-color: #0077BE;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
}

.apartment-1plus1 {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9, #e8f5e8);
}

.apartment-2plus1 {
    border-color: #fd7e14;
    background: linear-gradient(135deg, #fff8f0, #fef0e6);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.info-header i {
    font-size: 2rem;
    color: #0077BE;
}

.info-header h3 {
    font-size: 1.4rem;
    color: #333;
    margin: 0;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: #666;
}

.info-value {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.payment-advantages {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-advantages h3 {
    text-align: center;
    color: #0077BE;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.advantage-item i {
    font-size: 2rem;
    color: #0077BE;
    min-width: 40px;
}

.advantage-item h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.advantage-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.payment-cta {
    text-align: center;
    background: linear-gradient(135deg, #0077BE, #005A9B);
    color: white;
    border-radius: 15px;
    padding: 3rem 2rem;
}

.payment-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.payment-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.payment-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFD700;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.payment-cta-btn:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive for Payment Plan */
@media (max-width: 768px) {
    .payment-plan-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .payment-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-cta {
        padding: 2rem 1rem;
    }
    
    .payment-cta h3 {
        font-size: 1.5rem;
    }
}


/* Professional Icon Styles */
.card-icon i,
.benefit-icon i {
    font-size: 2.5rem;
    color: #0077BE;
    transition: all 0.3s ease;
}

.card-icon.red i {
    color: #dc3545;
}

.card-icon.green i {
    color: #28a745;
}

.benefit-icon i {
    color: #0077BE;
    font-size: 3rem;
}

.section-title i {
    color: #0077BE;
    margin-right: 0.5rem;
}

.analysis-header h3 i {
    color: #0077BE;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Icon hover effects */
.card-icon:hover i,
.benefit-icon:hover i {
    transform: scale(1.1);
    color: #FFD700;
}

.card-icon.red:hover i {
    color: #ff6b6b;
}

.card-icon.green:hover i {
    color: #51cf66;
}

/* Mobile icon adjustments */
@media (max-width: 768px) {
    .card-icon i,
    .benefit-icon i {
        font-size: 2rem;
    }
    
    .benefit-icon i {
        font-size: 2.5rem;
    }
}



/* Modern About Features Styles */
.about-features-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 3px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0077BE, #FFD700);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.about-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0077BE, #005A9B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-feature-card:hover .about-feature-icon::before {
    opacity: 1;
}

.about-feature-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
}

.about-feature-card:hover .about-feature-icon i {
    transform: scale(1.1);
}

.about-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.about-feature-card:hover h3 {
    color: #0077BE;
}

.about-feature-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.about-feature-card:hover p {
    color: #495057;
}

/* Mobile Responsive for About Features */
@media (max-width: 768px) {
    .about-features-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .about-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .about-feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .about-feature-icon i {
        font-size: 1.8rem;
    }
    
    .about-feature-card h3 {
        font-size: 1.2rem;
    }
    
    .about-feature-card p {
        font-size: 0.9rem;
    }
}


/* About CTA Button Styles */
.about-cta {
    display: inline-block;
    background: linear-gradient(135deg, #0077BE, #005A9B);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 119, 190, 0.3);
    margin-top: 3rem;
    text-align: center;
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.4);
    background: linear-gradient(135deg, #005A9B, #0077BE);
}

/* Contact Section Spacing Adjustments */
.contact {
    padding: 3rem 0 2rem 0;
}

.contact .section-title {
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info h3 {
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .about-cta {
        margin-top: 2rem;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .contact {
        padding: 2rem 0 1rem 0;
    }
    
    .contact .section-title {
        margin-bottom: 1.5rem;
        font-size: 2rem;
    }
    
    .contact-info {
        margin-bottom: 1rem;
    }
    
    .contact-info h3 {
        margin-bottom: 0.3rem;
        font-size: 1.1rem;
    }
    
    .contact-info p {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
    }
}


/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Gallery Section Spacing Adjustments */
.gallery {
    padding: 4rem 0 3rem 0;
    margin-bottom: 2rem;
}

/* Mobile Gallery Adjustments */
@media (max-width: 768px) {
    .gallery {
        padding: 3rem 0 2rem 0;
        margin-bottom: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
}


/* Pricing Section Mobile Responsive */
@media (max-width: 768px) {
    .pricing h2.section-title,
    .pricing .section-title,
    section.pricing .section-title,
    #pricing .section-title {
        font-size: 2.5rem !important;
        color: #ffffff !important;
    }
}

@media (max-width: 480px) {
    .pricing h2.section-title,
    .pricing .section-title,
    section.pricing .section-title,
    #pricing .section-title {
        font-size: 2rem !important;
        color: #ffffff !important;
    }
}



/* Desktop Layout Improvements - Wider and More Spacious */
@media (min-width: 1024px) {
    /* Features Section - Wider Layout */
    .about-features-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
    
    .about-feature-card {
        padding: 3rem 2.5rem;
        border-radius: 25px;
    }
    
    /* Pricing Section - Wider Cards */
    .pricing-cards {
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .pricing-card {
        padding: 3rem 2.5rem;
        border-radius: 25px;
    }
    
    /* Benefits Section - Wider Grid */
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        margin-top: 4rem;
    }
    
    .benefit-card {
        padding: 3rem 2rem;
        border-radius: 25px;
    }
    
    /* Comparison Section - Wider Cards */
    .comparison-cards {
        gap: 4rem;
        margin-top: 3rem;
    }
    
    .comparison-card {
        padding: 3rem 2.5rem;
        border-radius: 25px;
    }
    
    /* Analysis Section - Wider Layout */
    .analysis-cards {
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .analysis-card {
        padding: 3rem 2.5rem;
        border-radius: 25px;
    }
    
    /* Gallery - Wider Grid */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
        margin-top: 4rem;
    }
    
    /* Section Spacing */
    section {
        padding: 5rem 0;
    }
    
    .hero {
        padding: 8rem 0 5rem;
    }
    
    /* Typography Improvements */
    .section-title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }
}

