/* ========================================
   Egyptian Realty - Main Stylesheet
   ======================================== */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1C1C1C;
    background-color: #F7F7F5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HEADER & NAVIGATION STYLES
   ======================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: transform 0.3s ease;
}

header.hide {
    transform: translateY(-100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.navbar-logo {
    font-size: 24px;
    font-weight: 700;
    color: #1F3D2B;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-logo:hover {
    color: #C9A24D;
    transition: color 0.3s ease;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.navbar-menu a {
    color: #1C1C1C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-menu a:hover {
    color: #1F3D2B;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C9A24D;
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* Hamburger Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1F3D2B;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Main Content Styles */
main {
    margin-top: 70px;
    /* Main content styles will be added here */
}

section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    color: #1F3D2B;
    margin-bottom: 10px;
}

.section-header p {
    color: #6B6B6B;
    font-size: 16px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-image: url('../assets/hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 61, 43, 0.65);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 90px 24px;
    max-width: 760px;
    margin: 0 auto;
    color: #FFFFFF;
    text-align: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 18px;
    color: #F7F7F5;
    margin-bottom: 20px;
}

.hero-details {
    font-size: 17px;
    color: #F7F7F5;
    margin-bottom: 28px;
    display: grid;
    gap: 8px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: inline-flex !important;
}

.hero-cta-whatsapp {
    display: none !important;
}

/* ========================================
   PROJECTS
   ======================================== */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    padding: 0 24px;
}

.project-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: grid;
    gap: 16px;
    text-align: center;
    justify-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F0F0F0;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.project-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-card h3 {
    font-size: 20px;
    color: #1F3D2B;
    margin: 0;
}

.project-card h3 {
    font-size: 20px;
    color: #1F3D2B;
}

.project-meta {
    color: #6B6B6B;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #F0F0F0;
}

.project-description {
    color: #6B6B6B;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    display: block;
    padding: 8px 0;
}

.project-detail {
    color: #6B6B6B;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    padding: 6px 0;
}

.project-detail strong {
    color: #1F3D2B;
    font-weight: 600;
}

.project-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 4px;
}

.project-actions .btn-primary,
.project-actions .btn-outline {
    flex: 1;
    min-width: 140px;
}

/* ========================================
   WHY CHOOSE
   ======================================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 0 24px;
}

.why-item {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F0F0F0;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-icon {
    font-size: 48px;
    color: #C9A24D;
    margin-bottom: 16px;
}

.why-item h3 {
    color: #1F3D2B;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
}

.why-item p {
    color: #6B6B6B;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   GALLERY
   ======================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    padding: 0 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #C9A24D;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 30px;
    font-weight: bold;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #C9A24D;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ========================================
   CONTACT
   ======================================== */

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-form {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 32px;
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #1F3D2B;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1F3D2B;
}

.form-group select {
    cursor: pointer;
    background-color: #FFFFFF;
}

.btn-submit {
    margin-top: 8px;
    width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: #1F3D2B;
    color: #FFFFFF;
    padding: 24px;
    text-align: center;
}

.footer-content {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-content a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
}

.footer-content a:hover {
    color: #C9A24D;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary {
    background: #1F3D2B;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 14px;
}

.btn-primary:hover {
    background: #C9A24D;
    color: #FFFFFF;
}

.btn-outline {
    background: transparent;
    color: #1F3D2B;
    border: 1px solid #1F3D2B;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 14px;
}

.btn-outline:hover {
    background: #1F3D2B;
    color: #FFFFFF;
}

.hero-cta-whatsapp {
    display: none;
}

.btn-whatsapp i {
    font-size: 18px;
}

/* ========================================
   POPUP MODAL
   ======================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    z-index: 1001;
}

.modal-overlay.active {
    display: block;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 28px;
    width: 100%;
    max-width: 520px;
    position: relative;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-content h2 {
    margin-bottom: 8px;
    color: #1F3D2B;
    font-size: 24px;
}

.modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6B6B6B;
}

.modal-form {
    display: grid;
    gap: 12px;
    text-align: right;
}

.modal-form label {
    font-weight: 600;
    color: #1C1C1C;
    display: block;
    margin-bottom: 4px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    padding: 12px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: inherit;
    width: 100%;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #1F3D2B;
}

.form-terms {
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    color: #6B6B6B;
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}

.form-terms a {
    color: #1F3D2B;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-terms a:hover {
    color: #C9A24D;
}

.modal-project-name {
    margin-bottom: 12px;
    color: #6B6B6B;
}

.modal-subtitle {
    color: #6B6B6B;
    font-size: 14px;
    margin-top: 4px;
}

body.modal-open {
    overflow: hidden;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background-color: #1F3D2B;
    color: #F7F7F5;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #C9A24D;
    margin-bottom: 20px;
}

.footer-about p {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    color: #F7F7F5;
    opacity: 0.9;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-family: 'Cairo', sans-serif;
    color: #F7F7F5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #C9A24D;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    color: #F7F7F5;
}

.footer-contact ul li i {
    color: #C9A24D;
    font-size: 18px;
}

.footer-contact ul li a {
    color: #F7F7F5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: #C9A24D;
}

.footer-bottom {
    background-color: #0F2A1C;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Cairo', sans-serif;
    color: #F7F7F5;
    opacity: 0.8;
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 80px 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description,
    .hero-details {
        font-size: 16px;
    }

    .hero-cta-btn {
        display: none !important;
    }

    .hero-cta-whatsapp {
        display: inline-flex !important;
    }

    .navbar-menu {
        position: fixed;
        left: 0;
        top: 60px;
        width: 100%;
        flex-direction: column;
        background-color: #FFFFFF;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        max-height: 300px;
    }

    .navbar-menu a {
        padding: 16px 24px;
        border-bottom: 1px solid #F7F7F5;
        width: 100%;
    }

    .navbar-menu a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    main {
        margin-top: 60px;
    }

    /* Footer Responsive */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-actions {
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .navbar {
        padding: 12px 16px;
    }

    .navbar-logo {
        font-size: 20px;
    }

    .navbar-menu a {
        padding: 14px 16px;
    }

    main {
        margin-top: 56px;
    }

    /* Footer Mobile */
    footer {
        padding: 40px 0 0;
    }

    .footer-container {
        padding: 0 16px;
        gap: 30px;
    }
}

/* ========================================
   POLICY PAGES (Privacy, Disclaimer)
   ======================================== */

.policy-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
}

.policy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 2px solid #1F3D2B;
    padding-bottom: 20px;
}

.policy-header h1 {
    font-family: 'Cairo', sans-serif;
    font-size: 36px;
    color: #1F3D2B;
    margin: 0;
}

.lang-toggle {
    background-color: #C9A24D;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lang-toggle:hover {
    background-color: #1F3D2B;
}

.policy-content {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    color: #1C1C1C;
    text-align: right;
}

#english-content {
    font-family: 'Poppins', sans-serif !important;
    text-align: left !important;
    direction: ltr !important;
}

#english-content h2 {
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
}

#english-content p {
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
}

#english-content ul {
    text-align: left !important;
}

#english-content li {
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
}

.policy-content h2 {
    color: #1F3D2B;
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* ========================================
   CONTACT INFO PAGE
   ======================================== */

.contact-info-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 2px solid #1F3D2B;
    padding-bottom: 20px;
}

.contact-header h1 {
    font-family: 'Cairo', sans-serif;
    font-size: 36px;
    color: #1F3D2B;
    margin: 0;
}

.contact-content {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    color: #1C1C1C;
    text-align: right;
}

#english-content {
    font-family: 'Poppins', sans-serif !important;
    text-align: left !important;
    direction: ltr !important;
}

#english-content h2 {
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
}

#english-content p {
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
}

#english-content ul {
    text-align: left !important;
}

#english-content li {
    text-align: left !important;
    font-family: 'Poppins', sans-serif !important;
}

.contact-intro {
    background-color: #F7F7F5;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-right: 4px solid #C9A24D;
}

.contact-intro p {
    font-size: 16px;
    color: #6B6B6B;
    margin: 0;
}

.contact-methods {
    margin: 40px 0;
}

.contact-methods h2 {
    color: #1F3D2B;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 5px 20px rgba(31, 61, 43, 0.1);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #1F3D2B;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    color: #1F3D2B;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.contact-details p {
    color: #6B6B6B;
    margin: 5px 0;
    font-size: 16px;
}

.contact-details a {
    color: #1F3D2B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #C9A24D;
}

.contact-subtitle {
    font-size: 14px !important;
    color: #999999 !important;
    font-style: italic;
}

.contact-message {
    background-color: #F7F7F5;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 4px solid #C9A24D;
}

.contact-message h2 {
    color: #1F3D2B;
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-message ul {
    list-style-position: right;
    padding-right: 24px;
    margin: 0;
}

.contact-message li {
    color: #6B6B6B;
    margin-bottom: 12px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .contact-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-header h1 {
        font-size: 28px;
    }

    .contact-info-section {
        margin: 40px auto;
        padding: 0 16px;
    }

    .contact-item {
        flex-direction: column;
        gap: 16px;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-details {
        text-align: center;
    }

    .contact-details a {
        display: inline-block;
        margin-top: 10px;
    }

    .contact-message {
        padding: 20px;
    }

    .contact-message h2 {
        font-size: 20px;
    }
}

.policy-content p {
    color: #6B6B6B;
    margin-bottom: 15px;
    font-size: 16px;
}

.policy-content ul {
    margin: 15px 0;
    padding-right: 24px;
    list-style-position: right;
}

.policy-content ul li {
    color: #6B6B6B;
    margin-bottom: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .policy-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .policy-header h1 {
        font-size: 28px;
    }

    .policy-section {
        margin: 40px auto;
        padding: 0 16px;
    }

    .policy-content h2 {
        font-size: 20px;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 15px;
    }
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, #F7F7F5 0%, #FFFFFF 100%);
}

.thank-you-container {
    max-width: 700px;
    width: 100%;
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: #1F3D2B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: #FFFFFF;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-container h1 {
    font-family: 'Cairo', sans-serif;
    font-size: 42px;
    color: #1F3D2B;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.thank-you-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    color: #C9A24D;
    margin: 0 0 30px 0;
    font-weight: 600;
}

.thank-you-message {
    background-color: #F7F7F5;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-right: 4px solid #C9A24D;
}

.thank-you-message p {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.8;
    margin: 15px 0;
    text-align: right;
}

.thank-you-message p:first-child {
    margin-top: 0;
}

.thank-you-message p:last-child {
    margin-bottom: 0;
}

.next-steps {
    text-align: right;
    margin: 40px 0;
}

.next-steps h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 24px;
    color: #1F3D2B;
    margin-bottom: 30px;
    font-weight: 700;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    text-align: right;
    flex-direction: row-reverse;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #C9A24D;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    color: #1F3D2B;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.step-content p {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: #6B6B6B;
    margin: 0;
    line-height: 1.6;
}

.thank-you-contact {
    background-color: #F0F5F3;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.thank-you-contact h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 22px;
    color: #1F3D2B;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.thank-you-contact p {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    color: #6B6B6B;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.quick-contact {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-btn.phone {
    background-color: #1F3D2B;
    color: #FFFFFF;
}

.contact-btn.phone:hover {
    background-color: #0F2A1C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 61, 43, 0.3);
}

.contact-btn.whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
}

.contact-btn.whatsapp:hover {
    background-color: #1FA852;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.action-buttons {
    display: flex;
    gap: 16px;
    margin: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #1F3D2B;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #0F2A1C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 61, 43, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #1F3D2B;
    border: 2px solid #1F3D2B;
}

.btn-secondary:hover {
    background-color: #1F3D2B;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.thank-you-note {
    background-color: #FFF8E7;
    padding: 16px;
    border-radius: 8px;
    border-right: 3px solid #C9A24D;
    margin-top: 30px;
}

.thank-you-note p {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: #6B6B6B;
    margin: 0;
    line-height: 1.6;
    text-align: right;
}

@media (max-width: 768px) {
    .thank-you-container {
        padding: 30px 20px;
    }

    .thank-you-container h1 {
        font-size: 32px;
    }

    .thank-you-subtitle {
        font-size: 16px;
    }

    .next-steps h2,
    .thank-you-contact h2 {
        font-size: 20px;
    }

    .step {
        margin-bottom: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .quick-contact {
        flex-direction: column;
        gap: 12px;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}
