.elementor-widget-divider{--divider-color:var( --e-global-color-secondary );}.elementor-widget-divider .elementor-divider__text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-divider.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon{color:var( --e-global-color-secondary );border-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-secondary );}.elementor-59 .elementor-element.elementor-element-323b1d6{--divider-border-style:solid;--divider-color:#000;--divider-border-width:1px;}.elementor-59 .elementor-element.elementor-element-323b1d6 .elementor-divider-separator{width:100%;}.elementor-59 .elementor-element.elementor-element-323b1d6 .elementor-divider{padding-block-start:15px;padding-block-end:15px;}.elementor-59 .elementor-element.elementor-element-5405561 > .elementor-widget-container{margin:-27px 0px -47px 0px;padding:0px 0px 0px 0px;}@media(max-width:1024px) and (min-width:768px){.elementor-59 .elementor-element.elementor-element-cce706a{width:100%;}}@media(max-width:1024px){.elementor-widget-divider .elementor-divider__text{font-size:var( --e-global-typography-secondary-font-size );}}@media(max-width:767px){.elementor-widget-divider .elementor-divider__text{font-size:var( --e-global-typography-secondary-font-size );}}/* Start custom CSS for html, class: .elementor-element-7db9bdb *//* Font and Base Styles */
.contact-section {
    font-family: 'Georgia', serif;
    text-align: center;
    background-color: #fff;
    padding-bottom: 50px;
}

/* Brown Background Header */
.contact-header {
    background-color: #927A5A ; /* Dark Brownish Background */
    padding: 60px 20px 100px 20px; /* Neeche zyada padding taake boxes adjust hon */
    color: #fffaf5;
}

.badge-text {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #000; /* Tan/Gold color */
}

.main-heading {
    font-size: 36px;
    margin: 0;
    color: #ffffff;
}

/* Floating Cards Container */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: -60px auto 0 auto; /* Negative margin se cards upar shift ho jayenge */
    padding: 0 20px;
}

/* Individual Card Style */
.contact-card {
    background: #ffffff;
    flex: 1;
    padding: 40px 20px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom: 4px solid #927A5A; /* Bottom brown line */
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 30px;
    color: #8b4513;
    display: block;
    margin-bottom: 15px;
}

.card-title {
    color: #5d4037;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-info, .card-info a {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
}

.card-info a:hover {
    color: #8b4513;
    text-decoration: underline;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        margin-top: -40px;
    }
    .contact-card {
        margin-bottom: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-5405561 *//* Container and Typography */
.oscar-contact-form {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Georgia', serif;
    text-align: center;
    padding: 20px;
}

.form-heading {
    font-size: 32px;
    color: #3e2723; /* Brownish color */
    margin-bottom: 10px;
}

.form-subtext {
    color: #777;
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Grid Layout for Inputs */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.full-width {
    width: 100%;
}

/* CF7 Input Fields Styling */
.oscar-contact-form input[type="text"],
.oscar-contact-form input[type="email"],
.oscar-contact-form input[type="tel"],
.oscar-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0px; /* Sharp corners like in image */
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}

.oscar-contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Input Focus Effect */
.oscar-contact-form input:focus, 
.oscar-contact-form textarea:focus {
    border-color: #8b4513;
    outline: none;
}

/* Submit Button Placement (Right Side) */
.form-submit-container {
    text-align: right;
    margin-top: 20px;
}

.oscar-contact-form input[type="submit"] {
    background-color: #ffffff;
    color: #000;
    border: 1px solid #eee;
    padding: 15px 40px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Shadow like image */
    transition: all 0.3s ease;
}

.oscar-contact-form input[type="submit"]:hover {
    background-color: #927A5A;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}/* End custom CSS */