/* ============================================
   CAPITALIS TRADING SOLUTIONS - GLOBAL STYLES
   ============================================ */

:root {
    --primary-color: #1a1f3a;
    --secondary-color: #d4af37;
    --accent-color: #2d3e5f;
    --light-bg: #f8f9fa;
    --text-dark: #1a1f3a;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
}

h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #e6c547;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header-top {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.header-top-content {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.contact-info span {
    margin: 0 1rem;
}

.navbar {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.logo-text {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.logo-accent {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--secondary-color);
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    overflow: hidden;
}
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    background-color: #0b0d1a;
}

#hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 18, 36, 0.55);
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInDown 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInDown 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #e6c547;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* ============================================
   VISION SECTION
   ============================================ */

.vision {
    padding: 5rem 0;
    background-color: white;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-text {
    padding-right: 2rem;
}

.vision-text h2 {
    margin-bottom: 1.5rem;
}

.vision-image {
    display: flex;
    justify-content: center;
}

.vision-box {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6c547 100%);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    animation: pulse 3s ease-in-out infinite;
}

.vision-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: block;
    object-fit: cover;
}

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

/* ============================================
   SECTION STYLES
   ============================================ */

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services,
.presence,
.leadership {
    padding: 5rem 0;
    background-color: white;
}

.services {
    background-color: var(--light-bg);
}

.leadership {
    background-color: var(--light-bg);
}

/* ============================================
   SERVICES GRID
   ============================================ */

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   PRESENCE SECTION
   ============================================ */

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

.presence-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.presence-card:hover {
    transform: translateX(10px);
}

.presence-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.presence-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.presence-location {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* ============================================
   OIL PRICE WIDGET SECTION
   ============================================ */

.oil-price-section {
    padding: 5rem 0;
    background-color: white;
}

.widget-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.oil-price-widget-wrapper {
    width: 100%;
    max-width: 600px;
}

.price-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--secondary-color);
}

.price-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.price-header h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.price-ticker {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

.price-display {
    padding: 2rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading {
    text-align: center;
    color: var(--text-light);
}

.price-info {
    width: 100%;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row .label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.price-row .value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.price-row .value.price-main {
    font-size: 1.6rem;
    color: var(--secondary-color);
}

.price-row .value.positive {
    color: var(--success-color);
}

.price-row .value.negative {
    color: var(--error-color);
}

.price-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.price-note p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.price-note a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.price-note a:hover {
    text-decoration: underline;
}

.price-footer {
    padding: 1.5rem;
    background-color: var(--light-bg);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.widget-credit {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.widget-credit a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.widget-credit a:hover {
    text-decoration: underline;
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.leadership-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.leadership-card:hover {
    box-shadow: var(--shadow-lg);
}

.leader-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6c547 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.leadership-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.bio {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
}

/* ============================================
   ABOUT/CONTENT SECTIONS
   ============================================ */

.about-section {
    padding: 4rem 0;
    background-color: white;
}

.about-section.alternate {
    background-color: var(--light-bg);
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    margin-bottom: 1.5rem;
}

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

.value-item {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.value-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* ============================================
   FEATURES LIST
   ============================================ */

.features-list {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.feature-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

/* ============================================
   SERVICES DETAILED
   ============================================ */

.services-detailed {
    padding: 5rem 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-content {
    padding: 2rem;
}

.service-detail h2 {
    margin-bottom: 1.5rem;
}

.service-features h4 {
    margin: 1.5rem 0 1rem;
    color: var(--secondary-color);
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6c547 100%);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: block;
    object-fit: cover;
}

/* ============================================
   LEADERSHIP EXTENDED
   ============================================ */

.extended-leader {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.leader-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row.header {
    background-color: var(--primary-color);
    color: white;
}

.comparison-cell {
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.comparison-row:hover {
    background-color: var(--light-bg);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 5rem 0;
}

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

.contact-info-column h2 {
    margin-bottom: 1rem;
}

.contact-info-block {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.contact-info-block h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.business-hours {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6c547 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.business-hours h4 {
    color: white;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.error-messages {
    background-color: #fee;
    border-left: 4px solid var(--error-color);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.error-messages p {
    color: var(--error-color);
    margin-bottom: 0.25rem;
}

.success-message {
    background-color: #efe;
    border-left: 4px solid var(--success-color);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
}

.success-message h3 {
    color: var(--success-color);
}

.map-placeholder {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.map-box {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6c547 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .logo-img {
        height: 90px;
        max-width: 300px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }

    .contact-grid,
    .vision-content,
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail.reverse {
        direction: ltr;
    }

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

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .feature {
        gap: 1rem;
    }

    .service-detail-content {
        padding: 1rem;
    }

    .widget-container {
        padding: 1.5rem;
    }

    .oil-price-widget-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .logo-img {
        height: 70px;
        max-width: 220px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .services-grid,
    .presence-grid,
    .leadership-grid,
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .nav-link {
        padding: 0.5rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .widget-container {
        padding: 1rem;
    }

    .oil-price-widget-wrapper {
        max-width: 100%;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header-top {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.header-top-content {
    display: flex;
    justify-content: flex-end;
}

.contact-info {
    text-align: right;
}

.contact-info span {
    display: inline;
    margin: 0 0.5rem;
}

.mobile-break {
    display: none;
}

.navbar {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
@media (max-width: 768px) {
    /* ... andere mobile styles ... */
    
    .header-top-content {
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info span {
        margin: 0;
    }
    
    .mobile-break {
        display: block;
    }
}