/* Business Hub - Design 3: Exclusive Services Focus */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #0f3460;
    --gold: #e94560;
    --light-gold: #ff6b81;
    --success: #00d9ff;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
}

body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Kurdish Font Support */
body[lang="ku"] {
    font-family: 'Noto Sans Arabic', 'Droid Arabic Naskh', 'Geeza Pro', 'Simplified Arabic', 'Arial', sans-serif;
}

body[lang="ku"] h1,
body[lang="ku"] h2,
body[lang="ku"] h3,
body[lang="ku"] h4,
body[lang="ku"] h5,
body[lang="ku"] h6,
body[lang="ku"] p,
body[lang="ku"] span,
body[lang="ku"] a,
body[lang="ku"] li,
body[lang="ku"] button,
body[lang="ku"] input,
body[lang="ku"] textarea {
    font-family: 'Noto Sans Arabic', 'Droid Arabic Naskh', 'Geeza Pro', 'Simplified Arabic', 'Arial', sans-serif;
}

/* Keep Font Awesome icons working */
body[lang="ku"] .fas,
body[lang="ku"] .far,
body[lang="ku"] .fab,
body[lang="ku"] .fa,
body[lang="ku"] i[class*="fa-"] {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands' !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    height: 50px;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.lang-btn-3 {
    background: var(--light);
    border: 2px solid transparent;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    transition: all 0.3s;
}

.lang-btn-3:hover {
    background: var(--gold);
    color: var(--white);
}

.lang-btn-3.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(15, 52, 96, 0.9)), url('images/11.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(233, 69, 96, 0.2);
    border: 2px solid var(--gold);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.hero-badge i {
    color: var(--gold);
    margin-left: 0.5rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-hero.primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.btn-hero.primary:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.6);
}

.btn-hero.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-hero.secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: var(--gold);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Headers */
.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--light);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-badge.exclusive {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--white);
}

.section-badge i {
    margin-left: 0.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Exclusive Services Section */
.exclusive-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.exclusive-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.exclusive-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
}

.exclusive-card.premium::before {
    height: 8px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.exclusive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.exclusive-card.premium .card-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--primary);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.card-icon.legal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.card-icon.security {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
}

.card-icon.marketing {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: var(--white);
}

.card-icon.transport {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: var(--white);
}

.card-icon.hotel {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: var(--white);
}

.card-icon.secretary {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: var(--white);
}

.card-icon.meeting {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: var(--primary);
}

.card-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--light);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features i {
    color: var(--success);
    font-size: 1.1rem;
}

.card-value {
    background: var(--light);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
}

.value-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.value-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: line-through;
    opacity: 0.5;
}

.value-free {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-top: 0.5rem;
}

.value-discount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

/* Total Value Box */
.total-value-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.3);
}

.total-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.total-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.old-price {
    font-size: 3rem;
    font-weight: 900;
    text-decoration: line-through;
    opacity: 0.6;
}

.arrow {
    font-size: 2rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
}

.total-note {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Standard Services */
.standard-section {
    padding: 6rem 0;
    background: var(--white);
}

.standard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.standard-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.standard-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.standard-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.standard-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.standard-card p {
    color: var(--gray);
}

/* Gallery */
.gallery-section {
    padding: 6rem 0;
    background: var(--light);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-img {
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
}

.gallery-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.5);
    transition: transform 0.3s;
}

.gallery-img:hover .gallery-overlay {
    opacity: 1;
}

.gallery-img:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-img:hover img {
    transform: scale(1.1);
}

/* 360 Tour */
.tour-section-3 {
    padding: 6rem 0;
    background: var(--primary);
    color: var(--white);
}

.tour-section-3 .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.tour-section-3 .section-title {
    color: var(--white);
}

.tour-wrapper {
    position: relative;
}

#viewer-360-3 {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    background: #000;
}

.fullscreen-btn-3 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s;
}

.fullscreen-btn-3:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Contact */
.contact-section-3 {
    padding: 6rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-3 h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info-3 > p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item-3 {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item-3 i {
    font-size: 2rem;
    color: var(--gold);
    min-width: 40px;
}

.info-item-3 h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.info-item-3 p {
    color: var(--gray);
}

.contact-form-3 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-3 input,
.contact-form-3 textarea {
    padding: 1.2rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form-3 input:focus,
.contact-form-3 textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

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

.submit-btn-3 {
    background: var(--gold);
    color: var(--white);
    padding: 1.3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.submit-btn-3:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

/* Footer */
.footer-3 {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--gold);
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .lang-switcher {
        margin-right: 0.5rem;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .exclusive-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    #viewer-360-3 {
        height: 400px;
    }
    
    .total-amount {
        flex-direction: column;
        gap: 1rem;
    }
    
    .old-price, .new-price {
        font-size: 2rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s;
    font-weight: 300;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-caption {
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    margin-top: 1rem;
}

.lightbox-counter {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Lightbox Mobile Styles */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-content img {
        max-height: 70vh;
    }
}

/* Enhanced 360 Viewer Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rippleEffect {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* 360 Viewer Controls Styling */
#viewer-360-3 {
    position: relative;
    cursor: grab;
}

#viewer-360-3:active {
    cursor: grabbing;
}

/* Minimap responsive */
@media (max-width: 768px) {
    #minimap {
        width: 120px !important;
        bottom: 10px !important;
        right: 10px !important;
        padding: 5px !important;
    }
    
    #minimap button {
        font-size: 9px !important;
        padding: 3px !important;
    }
    
    #scene-name-display {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
    
    #hotspot-label {
        font-size: 12px !important;
        padding: 6px 12px !important;
        bottom: 60px !important;
    }
}

/* Weather Widget Styles */
.weather-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 25px;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.weather-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.weather-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.9;
}

.weather-header i {
    font-size: 14px;
}

.weather-location {
    font-weight: 600;
}

.weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.weather-icon {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.weather-icon-static {
    font-size: 80px;
    color: #ffd700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.weather-temp {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

.temp-value {
    font-size: 64px;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.temp-unit {
    font-size: 32px;
    font-weight: 300;
    margin-top: 10px;
    margin-left: 5px;
}

.weather-description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 500;
}

.weather-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.weather-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.weather-detail i {
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

.weather-updated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.7;
}

.weather-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 10px;
}

.weather-loading {
    text-align: center;
    padding: 40px 20px;
}

.weather-loading i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.weather-loading p {
    font-size: 14px;
    opacity: 0.8;
}

/* Weather Widget Container in Header */
.weather-widget-header {
    position: fixed;
    top: 80px;
    left: 20px;
    z-index: 100;
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Compact version for header */
.weather-widget-compact {
    max-width: 200px;
    padding: 15px;
}

.weather-widget-compact .weather-main {
    gap: 10px;
}

.weather-widget-compact .weather-icon {
    width: 60px;
    height: 60px;
}

.weather-widget-compact .weather-icon-static {
    font-size: 50px;
}

.weather-widget-compact .temp-value {
    font-size: 36px;
}

.weather-widget-compact .temp-unit {
    font-size: 20px;
    margin-top: 5px;
}

.weather-widget-compact .weather-description {
    font-size: 14px;
    margin-bottom: 10px;
}

.weather-widget-compact .weather-details {
    display: none;
}

.weather-widget-compact .weather-updated {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .weather-widget-header {
        position: static;
        margin: 20px auto;
    }
    
    .weather-widget {
        max-width: 100%;
    }
    
    .weather-main {
        flex-direction: column;
        gap: 10px;
    }
    
    .temp-value {
        font-size: 48px;
    }
    
    .temp-unit {
        font-size: 24px;
    }
}

/* Partnership Badges Widget */
.partnership-badges-widget {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.badges-header {
    text-align: center;
    margin-bottom: 40px;
}

.badges-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.badges-title i {
    color: var(--gold);
    font-size: 2.5rem;
}

.badges-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
}

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

.partner-badge {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.partner-badge.highlighted {
    border: 2px solid var(--gold);
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.3);
}

.badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 28px;
    color: white;
}

.badge-content {
    flex: 1;
}

.badge-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.badge-type {
    font-size: 13px;
    color: var(--gray);
}

.badge-verified {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #00d9ff;
    font-size: 20px;
}

.badges-footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
}

.badges-footer i {
    color: var(--gold);
    font-size: 20px;
}

/* Newsletter Widget Styles */
.newsletter-widget {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-widget.footer {
    margin: 40px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon i {
    font-size: 40px;
}

.newsletter-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.newsletter-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Tajawal', sans-serif;
}

.newsletter-input:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
}

.newsletter-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.newsletter-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.newsletter-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.8;
}

.newsletter-success {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.newsletter-success i {
    font-size: 60px;
    color: #00ff88;
}

.newsletter-success p {
    font-size: 18px;
    font-weight: 600;
}

/* Newsletter Popup */
.newsletter-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.newsletter-popup-content {
    background: white;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

.newsletter-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.newsletter-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.newsletter-close i {
    font-size: 20px;
    color: var(--primary);
}

.newsletter-popup-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    padding: 50px 30px 30px;
    text-align: center;
    color: white;
    border-radius: 25px 25px 0 0;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.popup-icon i {
    font-size: 40px;
}

.newsletter-popup-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-popup-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.popup-form {
    padding: 30px;
}

.popup-form .newsletter-input {
    width: 100%;
    margin-bottom: 15px;
}

.popup-form .form-group {
    flex-direction: column;
}

.popup-submit {
    width: 100%;
    justify-content: center;
}

.popup-success {
    padding: 40px 30px;
}

.popup-success h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.popup-success p {
    color: var(--gray);
}

.popup-benefits {
    padding: 0 30px 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
    margin-bottom: 10px;
    color: var(--primary);
}

.benefit-item i {
    color: var(--gold);
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .partnership-badges-widget {
        padding: 30px 15px;
    }

    .badges-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }

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

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

    .newsletter-title {
        font-size: 1.5rem;
    }

    .form-group {
        flex-direction: column;
    }

    .newsletter-submit {
        width: 100%;
        justify-content: center;
    }

    .newsletter-popup-content {
        width: 95%;
    }

    .newsletter-popup-header {
        padding: 40px 20px 20px;
    }

    .popup-form {
        padding: 20px;
    }
}
