/* Custom Styles for TECnovedades Web - ULTIMATE IDENTICAL REPLICA */

:root {
    --primary-orange: #ff7e00;
    --primary-blue: #2b58de;
    --light-blue-bg: rgba(78, 84, 200, 0.85);
    --bar-blue: #4e54c8;
    --dark-text: #333333;
    --gray-text: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.header {
    height: 110px;
    background: #fff;
    display: flex;
    align-items: center;
    z-index: 1000;
    border-top: 12px solid var(--primary-blue);
}

.nav-link {
    color: #333 !important;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 18px !important;
    text-transform: capitalize;
    white-space: nowrap;
}

.nav-item.active .nav-link {
    background-color: var(--primary-orange);
    color: #fff !important;
    border-radius: 12px;
    padding: 10px 30px !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--primary-orange) !important;
    color: #fff !important;
    font-weight: 600;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-fb { background: #1877f2; }
.social-ig { background: #e4405f; }
.social-tk { background: #000000; }
.social-yt { background: #ff0000; }
.social-tw { background: #1da1f2; }

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0;
    background: url('https://images.unsplash.com/photo-1522071823991-b19c72f7049b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 88, 222, 0.7); /* More specific blue overlay */
    z-index: 1;
}

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-title span {
    font-weight: 800;
}

.days-oval {
    display: inline-block;
    border: 4px solid var(--primary-orange);
    border-radius: 100px;
    padding: 5px 35px;
    margin-left: 10px;
    color: #ff7e00; /* Text inside oval is orange in one img, white in another, let's go with orange/yellow */
}

.btn-whatsapp-hero {
    background-color: var(--primary-orange);
    color: white;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 40px;
    font-size: 15px;
}

/* Blue Dots Component */
.blue-dots {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.dot {
    width: 16px;
    height: 16px;
    background-color: #00c3ff;
    border-radius: 50%;
}

.dot-small {
    width: 10px;
    height: 10px;
    background-color: #00c3ff;
    border-radius: 50%;
    align-self: center;
}

/* Titles and Bars */
.section-title-orange {
    color: var(--primary-orange);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2.8rem;
    letter-spacing: -1px;
}

.blue-bar-title {
    background-color: var(--bar-blue);
    color: white;
    padding: 50px 0;
    text-align: center;
    font-weight: 800;
    font-size: 2.5rem;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blue-bar-title i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.blue-bar-title span {
    font-size: 15px;
    font-weight: 500;
    margin-top: 15px;
    letter-spacing: 2px;
}

/* Dropdown Menus */
.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.dropdown-item {
    padding: 12px 25px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-orange);
    color: #fff !important;
}

.dropdown-item:hover i {
    color: #fff !important;
}

.dropdown-submenu:hover > .dropdown-item {
    background-color: var(--primary-orange);
    color: #fff !important;
}

.dropdown-submenu:hover > .dropdown-item i {
    color: #fff !important;
}

/* Multi-level Dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -10px;
    margin-left: 0;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
    display: none; /* Remove default arrow */
}

.nav-item.dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item.dropdown .nav-link::after {
    content: "\F282"; /* Bootstrap icon caret down */
    font-family: "bootstrap-icons";
    border: none;
    font-size: 10px;
}

/* Specific Section Paddings */
.py-section {
    padding: 100px 0;
}

/* Buttons */
.btn-blue-action {
    background-color: var(--bar-blue);
    color: white;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
}

.btn-orange-action {
    background-color: var(--primary-orange);
    color: white;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* Portfolio Items */
.portfolio-item {
    background: #fff;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.portfolio-img {
    width: 100%;
    height: auto;
}

/* Grid for Models */
.col-md-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

.model-card {
    border: 1px solid #f0f0f0;
    padding: 50px 10px;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.model-icon-img {
    width: 110px;
    height: 110px;
    margin-bottom: 25px;
}

.model-card h4 {
    font-size: 14px;
    font-weight: 800;
    margin: 0;
}

/* Wave Decoration */
.wave-container {
    position: relative;
    background-color: #f8f9fa;
}

/* Footer Styling */
.footer {
    padding-top: 80px;
    background: #fff;
}

.footer-contact-info p {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-contact-info i {
    width: 25px;
    color: #333;
}

.orange-footer-bar {
    background-color: var(--primary-orange);
    padding: 20px 0;
    margin-top: 60px;
}

.orange-footer-bar a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 600;
    font-size: 14px;
}

.blue-copyright-bar {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

/* Contact Hero Section */
.contact-hero {
    background: url('../img/contact-hero.png') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    color: white;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 88, 222, 0.85); /* Deep blue overlay */
    z-index: 1;
}

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

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact Specific Layout */
.contact-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #333;
}

.contact-form label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #333;
}

.contact-form .form-control, .contact-form .form-select {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 12px;
    font-size: 0.95rem;
    background-color: #fcfcfc;
}

.contact-form .form-text {
    font-size: 0.8rem;
    color: #999;
}

.contact-btn-send {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 40px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    text-transform: capitalize;
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item-icon {
    background-color: #333;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.contact-agent-img {
    width: 100%;
    border-radius: 15px;
    margin-top: 20px;
}

/* Map Section */
.map-container {
    height: 450px;
    width: 100%;
}

/* Footer Adjustments */
.footer-bottom-bars {
    margin-top: 50px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 10000;
    text-decoration: none;
}
