/* ===== NEXUS MEDIA GROUP - FUSION THEME STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Raleway:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #454545;
    background: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    color: #454545;
    line-height: 1.3;
}

a {
    color: #FFA300;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #c3e54b;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* ===== HEADER ===== */
#main-header {
    background: #222;
}

#top-area {
    padding: 20px 0;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#logo {
    max-height: 60px;
}

#menu-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ===== NAVIGATION ===== */
#top-menu ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

#top-menu ul li {
    position: relative;
}

#top-menu ul li a {
    display: block;
    padding: 10px 18px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s;
}

#top-menu ul li a:hover,
#top-menu ul li.current_page_item a {
    color: #c3e54b;
}

#top-menu ul li .menu-highlight {
    background: #c3e54b;
    color: #222;
    border-radius: 3px;
}

/* Sub-menu */
#top-menu ul li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #333;
    min-width: 200px;
    display: none;
    flex-direction: column;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

#top-menu ul li:hover ul.sub-menu {
    display: flex;
}

#top-menu ul li ul.sub-menu li a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Social Icons */
#social-icons {
    list-style: none;
    display: flex;
    gap: 10px;
}

#social-icons li a {
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s;
}

#social-icons li a:hover {
    opacity: 1;
}

#social-icons img {
    width: 24px;
    height: 24px;
}

/* Mobile nav */
#et_mobile_nav_menu {
    display: none;
}

.mobile_nav {
    display: block;
    padding: 12px 20px;
    background: #c3e54b;
    color: #222;
    font-weight: 600;
    border-radius: 3px;
}

/* ===== SLIDER ===== */
#et-slider-wrapper {
    background: #333;
    overflow: hidden;
}

#et-slides {
    position: relative;
}

.et-slide {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.et-slide .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.et-slide .description {
    flex: 1;
    color: #fff;
    max-width: 500px;
}

.et-slide .description h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.et-slide .description h2 a {
    color: #fff;
}

.et-slide .description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

.et-slide .description a.more {
    display: inline-block;
    padding: 12px 30px;
    background: #c3e54b;
    color: #222;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s;
}

.et-slide .description a.more:hover {
    background: #FFA300;
}

.et-slide .featured-image {
    flex-shrink: 0;
}

.et-slide .featured-image img {
    max-width: 450px;
    height: auto;
}

/* ===== SERVICES SECTION ===== */
#services {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

#services .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service {
    padding: 30px;
}

.service h3 {
    font-size: 24px;
    color: #454545;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c3e54b;
}

.service h2 {
    font-size: 18px;
    color: #FFA300;
    margin-bottom: 10px;
}

.service p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c3e54b;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #FFA300;
}

.read-more span {
    width: 0;
    height: 0;
    border-left: 6px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* ===== CONTENT ===== */
#content {
    padding: 60px 0;
    background: #f5f5f5;
}

/* ===== FOOTER ===== */
#footer-bottom {
    background: #222;
    padding: 30px 0;
}

.bottom-nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.bottom-nav li a {
    color: #999;
    font-size: 13px;
    transition: color 0.3s;
}

.bottom-nav li a:hover,
.bottom-nav li.current_page_item a {
    color: #c3e54b;
}

#copyright {
    text-align: center;
    color: #666;
    font-size: 12px;
}

#copyright a {
    color: #666;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    background: #fff;
    padding: 60px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.page-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #c3e54b;
}

.page-content h2 {
    font-size: 28px;
    margin: 30px 0 20px;
    color: #454545;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.page-content ul li {
    margin-bottom: 10px;
}

/* ===== BREADCRUMBS ===== */
#breadcrumbs {
    color: #c3e54b;
    font-size: 13px;
    margin-bottom: 30px;
}

#breadcrumbs a {
    color: #c3e54b;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #454545;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c3e54b;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 14px 35px;
    background: #c3e54b;
    color: #222;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #FFA300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    #services .container {
        grid-template-columns: 1fr;
    }
    
    .et-slide .container {
        flex-direction: column;
        text-align: center;
    }
    
    .et-slide .featured-image img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    #menu-wrap {
        display: none;
    }
    
    #et_mobile_nav_menu {
        display: block;
    }
    
    .et-slide .description h2 {
        font-size: 28px;
    }
    
    .page-content {
        padding: 30px;
    }
    
    .page-content h1 {
        font-size: 28px;
    }
    
    .bottom-nav {
        flex-direction: column;
        align-items: center;
    }
}
