/* Base styles from your existing CSS will be applied automatically */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
.main_menu {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand img {
    height: 45px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: #263a4e;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #263a4e;
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: #263a4e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #cea06c;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    margin-top: 80px;
    background: #f9f9ff;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #263a4e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #87898f;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    text-align: center;
    margin-top: 50px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.primary-btn {
    background: #cea06c;
    color: #fff;
    border-color: #cea06c;
}

.primary-btn:hover {
    background: transparent;
    color: #cea06c;
    border-color: #cea06c;
}

.service-btn {
    background: #fff;
    color: #263a4e;
    border-color: #cea06c;
}

.service-btn:hover {
    background: #cea06c;
    color: #fff;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 42px;
    color: #263a4e;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #87898f;
    font-size: 18px;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: #87898f;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

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

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f9f9ff;
}

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

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: #263a4e;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-content p {
    color: #87898f;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Footer */
.footer-area {
    background: #0e1424;
    color: #fff;
    padding: 80px 0 30px;
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

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

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

.footer-nav a {
    color: #87898f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-info p {
    color: #87898f;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #334f6c;
    padding-top: 20px;
    color: #87898f;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .about-content {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .about-section,
    .services-section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 50px;
    }

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

/* Section 1: Crop Timeline */
.crop-timeline-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    width: 4px;
    background: #cea06c;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: calc(50% - 30px);
}

.timeline-item.traditional {
    left: 0;
    text-align: right;
}

.timeline-item.vertical {
    left: calc(50% + 30px);
    text-align: left;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 3px solid #cea06c;
    border-radius: 50%;
    top: 0;
}

.timeline-item.traditional .timeline-marker {
    right: -40px;
}

.timeline-item.vertical .timeline-marker {
    left: -40px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: #263a4e;
    font-size: 24px;
    margin-bottom: 20px;
}

.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-point {
    padding: 10px 0;
    color: #87898f;
    position: relative;
    padding-left: 25px;
}

.timeline-point::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #cea06c;
    font-weight: bold;
}

.timeline-point.highlight {
    color: #263a4e;
    font-weight: 500;
}

.timeline-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #cea06c;
    margin-bottom: 10px;
}

.stat-label {
    color: #87898f;
    font-size: 16px;
}

/* Section 2: Virtual Tour */
.virtual-tour-section {
    padding: 100px 0;
    background: #263a4e;
    color: #fff;
}

.tour-container {
    max-width: 900px;
    margin: 0 auto;
}

.tour-image {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

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

.tour-hotspot {
    position: absolute;
    cursor: pointer;
}

.tour-hotspot[data-zone="growing"] {
    top: 15%;
    left: 20%;
}

.tour-hotspot[data-zone="water"] {
    top: 40%;
    left: 70%;
}

.tour-hotspot[data-zone="climate"] {
    top: 65%;
    left: 15%;
}

.tour-hotspot[data-zone="harvest"] {
    top: 80%;
    left: 60%;
}

.hotspot-marker {
    width: 50px;
    height: 50px;
    background: rgba(206, 160, 108, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(206, 160, 108, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(206, 160, 108, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(206, 160, 108, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(206, 160, 108, 0);
    }
}

.hotspot-info {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #263a4e;
    padding: 20px;
    border-radius: 10px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.hotspot-info::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(255, 255, 255, 0.95);
}

.tour-hotspot:hover .hotspot-marker {
    transform: scale(1.1);
    background: #cea06c;
}

.tour-hotspot:hover .hotspot-info {
    opacity: 1;
    visibility: visible;
    top: 50px;
}

.hotspot-info h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.hotspot-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Section 3: Impact Calculator */
.impact-calculator-section {
    padding: 100px 0;
    background: #f9f9ff;
}

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

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

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

.calculator-header {
    background: linear-gradient(135deg, #263a4e 0%, #334f6c 100%);
    color: #fff;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.calculator-icon {
    font-size: 32px;
}

.calculator-header h3 {
    margin: 0;
    font-size: 22px;
}

.calculator-body {
    padding: 30px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    color: #263a4e;
    font-weight: 500;
}

.calculator-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.calculator-input:focus {
    outline: none;
    border-color: #cea06c;
}

.impact-results {
    margin-top: 30px;
}

.impact-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.impact-label {
    color: #87898f;
}

.impact-value {
    color: #263a4e;
    font-weight: 600;
}

.impact-visual {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.visual-item {
    margin-bottom: 30px;
}

.visual-bar {
    height: 50px;
    background: #eee;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 25px;
    position: relative;
    transition: width 1s ease;
}

.bar-fill.water {
    background: linear-gradient(90deg, #4fc3f7 0%, #29b6f6 100%);
}

.bar-fill.carbon {
    background: linear-gradient(90deg, #66bb6a 0%, #43a047 100%);
}

.bar-fill.food {
    background: linear-gradient(90deg, #cea06c 0%, #b8894c 100%);
}

.bar-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        width: calc(100% - 60px);
        text-align: left;
        left: 60px !important;
    }

    .timeline-item.traditional .timeline-marker,
    .timeline-item.vertical .timeline-marker {
        left: -40px;
        right: auto;
    }

    .timeline-content {
        padding: 20px;
    }

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

    .hotspot-info {
        min-width: 200px;
        padding: 15px;
    }
}

/* Contact Hero Section */
.contact-hero {
    padding: 150px 0 80px;
    margin-top: 80px;
    background: linear-gradient(135deg, #263a4e 0%, #334f6c 100%);
    color: #fff;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f9f9ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    color: #263a4e;
    margin-bottom: 20px;
}

.contact-info p {
    color: #87898f;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    color: #cea06c;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-item p {
    color: #87898f;
    margin: 0;
    line-height: 1.6;
}

/* Stylized Contact Form */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #cea06c 0%, #b8894c 100%);
}

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

.form-header h3 {
    color: #263a4e;
    font-size: 24px;
    position: relative;
    display: inline-block;
}

.form-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #cea06c;
}

/* Floating Label Form Fields */
.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
    border: none;
    background: transparent;
    outline: none;
    color: #263a4e;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 16px;
    color: #87898f;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group .select-label {
    top: -20px;
    font-size: 14px;
    color: #cea06c;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -20px;
    font-size: 14px;
    color: #cea06c;
}

.form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #cea06c;
    transition: width 0.3s ease;
}

.form-group input:focus ~ .form-border,
.form-group textarea:focus ~ .form-border,
.form-group select:focus ~ .form-border {
    width: 100%;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
}

/* Custom Select Styling */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    cursor: pointer;
}

.form-group select::-ms-expand {
    display: none;
}

.form-group select ~ label::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 15px;
    transform: translateY(-50%);
    font-size: 12px;
    color: #87898f;
    pointer-events: none;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: #cea06c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #b8894c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(206, 160, 108, 0.3);
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.submit-btn:hover .btn-shine {
    left: 100%;
}

/* Contact Map Section */
.contact-map-section {
    padding: 80px 0;
    background: #fff;
}

.map-alternate {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-info h3 {
    color: #263a4e;
    font-size: 28px;
    margin-bottom: 20px;
}

.map-info p {
    color: #87898f;
    margin-bottom: 30px;
    line-height: 1.8;
}

.map-address h4 {
    color: #cea06c;
    font-size: 20px;
    margin: 20px 0 10px;
}

.transit-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.transit-info p {
    margin-bottom: 10px;
    color: #87898f;
}

/* Alternative Map Visual */
.map-visual {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px;
    border-radius: 15px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-farm-sketch {
    position: relative;
    width: 200px;
    height: 300px;
}

.farm-outline {
    border: 3px solid #263a4e;
    border-radius: 10px;
    height: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
}

.farm-floor {
    height: 40px;
    border-bottom: 2px solid #cea06c;
    position: relative;
    margin: 10px;
}

.farm-floor:last-child {
    border-bottom: none;
}

.address-marker {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.marker-pin {
    width: 30px;
    height: 30px;
    background: #cea06c;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    margin: 0 auto 10px;
    position: relative;
}

.marker-pin::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.address-marker span {
    display: block;
    color: #263a4e;
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-grid,
    .map-alternate {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-form-container {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 120px 0 60px;
    }

    .contact-hero-content h1 {
        font-size: 30px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }
}

/* Thank You Section */
.thank-you-section {
    padding: 150px 0 100px;
    margin-top: 80px;
    background: #f9f9ff;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Success Checkmark Animation */
.thank-you-icon {
    margin-bottom: 30px;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #ffffff;
    stroke-miterlimit: 10;
    margin: 20% auto;
    background: #cea06c;
    position: relative;
    animation: checkmark-fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.check-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -30px;
    margin-top: -30px;
    transform: rotate(45deg);
}

.icon-line {
    height: 3px;
    background-color: #ffffff;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.line-tip {
    top: 33px;
    left: 14px;
    width: 23px;
    transform: rotate(-45deg);
    animation: icon-line-tip 0.75s;
}

.line-long {
    top: 27px;
    right: 12px;
    width: 46px;
    transform: rotate(-135deg);
    animation: icon-line-long 0.75s;
}

@keyframes checkmark-fill {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 23px;
        left: 14px;
        top: 33px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 46px;
        right: 12px;
        top: 27px;
    }
}

/* Thank You Content */
.thank-you-content h1 {
    font-size: 48px;
    color: #263a4e;
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-content > p {
    font-size: 18px;
    color: #87898f;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Confirmation Box */
.confirmation-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.confirmation-box h3 {
    color: #263a4e;
    font-size: 24px;
    margin-bottom: 30px;
}

/* Timeline Steps */
.timeline-steps {
    text-align: left;
}

.step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #cea06c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content {
    margin-left: 20px;
    flex: 1;
}

.step-content h4 {
    color: #263a4e;
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    color: #87898f;
    line-height: 1.6;
    margin: 0;
}

/* Thank You Actions */
.thank-you-actions {
    margin-top: 40px;
}

.additional-info {
    margin-top: 30px;
    color: #87898f;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(38, 58, 78, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-actions {
    flex-shrink: 0;
}

.btn.btn-light.btn-sm {
    padding: 10px 25px;
    background: #cea06c;
    color: #fff;
    border: 1px solid #cea06c;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: none;
    font-weight: 500;
}

.btn.btn-light.btn-sm:hover {
    background: #fff;
    color: #cea06c;
}

/* Responsive Design */
@media (max-width: 767px) {
    .thank-you-section {
        padding: 120px 0 80px;
    }

    .thank-you-content h1 {
        font-size: 32px;
    }

    .confirmation-box {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn.btn-light.btn-sm {
        width: 100%;
    }
}