/* Enhanced Aesop-inspired luxury design with dramatic improvements */
:root {
    --aktuna-gold: #ad9551;
    --aktuna-gold-light: #c5aa6a;
    --aktuna-gold-dark: #8a7340;
    --aktuna-gold-bright: #d4bc7a;
    --aktuna-black: #000000;
    --aktuna-white: #ffffff;
    --warm-white: #fffef9;
    --warm-beige: #f8f7f0;
    --warm-cream: #faf9f2;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #888888;
    --border-light: #e8e6e0;
    --shadow-light: rgba(173, 149, 81, 0.15);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-strong: rgba(0, 0, 0, 0.25);
    --gradient-gold: linear-gradient(135deg, var(--aktuna-gold) 0%, var(--aktuna-gold-bright) 100%);
    --gradient-hero: linear-gradient(135deg, var(--warm-white) 0%, var(--warm-cream) 50%, var(--warm-beige) 100%);
}

* {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    background: var(--warm-white);
    color: var(--text-primary);
}

/* Enhanced Typography - Clean without background */
.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 200;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--aktuna-gold-dark) 60%, var(--aktuna-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 2rem 0;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(173, 149, 81, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 950px;
    margin: 0 auto;
    opacity: 0.95;
    letter-spacing: 0.01em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.375rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Enhanced Navigation with larger logo */
nav {
    backdrop-filter: blur(25px);
    background: rgba(255, 254, 249, 0.97);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.nav-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(173, 149, 81, 0.2));
    transition: all 0.3s ease;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-brand-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.nav-brand-tagline {
    display: flex;
    flex-direction: column;
    font-size: 0.6875rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.nav-brand-tagline span {
    white-space: nowrap;
}

.nav-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(173, 149, 81, 0.3));
}

.nav-link {
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--aktuna-gold-dark);
    transform: translateY(-1px);
}

/* Dramatically Enhanced Buttons */
.btn-primary {
    background: var(--gradient-gold);
    color: var(--aktuna-white);
    border: none;
    border-radius: 0px;
    padding: 1.5rem 3rem;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 320px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(173, 149, 81, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--aktuna-gold-bright) 0%, var(--aktuna-gold-light) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(173, 149, 81, 0.4);
    color: var(--aktuna-white);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: 0px;
    padding: 1.5rem 3rem;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--aktuna-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.btn-white {
    background: var(--aktuna-white);
    color: var(--aktuna-gold-dark);
    border: 2px solid var(--aktuna-white);
    border-radius: 0px;
    padding: 1.375rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 260px;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.6);
    color: var(--aktuna-gold-dark);
}

.btn-outline-white {
    background: transparent;
    color: var(--aktuna-white);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 0px;
    padding: 1.375rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 260px;
    backdrop-filter: blur(15px);
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--aktuna-white);
    transform: translateY(-3px);
    color: var(--aktuna-white);
}

/* Contact Buttons - Pill style matching quick-contact-link */
.contact-btn {
    color: var(--aktuna-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    min-height: 56px;
    min-width: 260px;
}

.contact-btn svg {
    color: var(--aktuna-white);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    z-index: 2;
    position: relative;
}

.contact-btn span {
    color: var(--aktuna-white);
    z-index: 2;
    position: relative;
    letter-spacing: 0.025em;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
}

.contact-btn:hover::before {
    left: 0;
}

.contact-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* WhatsApp Button - Green */
.contact-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.contact-btn-whatsapp::before {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.contact-btn-whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Phone Button - Blue */
.contact-btn-phone {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.contact-btn-phone::before {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
}

.contact-btn-phone:hover {
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Enhanced Hero Section with sophisticated background */
.hero-section {
    background: linear-gradient(135deg, 
        var(--warm-white) 0%, 
        var(--warm-cream) 25%,
        #faf8f2 50%,
        var(--warm-beige) 75%,
        #f4f2e8 100%
    );
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse at top right, 
        rgba(173, 149, 81, 0.08) 0%, 
        rgba(173, 149, 81, 0.04) 40%,
        transparent 70%
    );
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="hero-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(173,149,81,0.02)"/><circle cx="20" cy="20" r="0.5" fill="rgba(173,149,81,0.03)"/><circle cx="80" cy="30" r="0.8" fill="rgba(173,149,81,0.02)"/><circle cx="30" cy="80" r="0.6" fill="rgba(173,149,81,0.025)"/><circle cx="70" cy="70" r="0.7" fill="rgba(173,149,81,0.02)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

/* Add subtle geometric overlay */
.hero-section .hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, 
        transparent 48%, 
        rgba(173, 149, 81, 0.02) 49%, 
        rgba(173, 149, 81, 0.02) 51%, 
        transparent 52%
    );
    transform: rotate(15deg);
    z-index: -1;
}

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

/* Clean Contact Buttons for Desktop - no background cards */
.quick-contact-strip {
    background: none;
    border: none;
    padding: 2rem 0;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    transition: none;
}

.quick-contact-strip::before {
    display: none;
}

.quick-contact-strip:hover {
    transform: none;
    box-shadow: none;
}

.quick-contact-link {
    background: linear-gradient(135deg, var(--aktuna-gold) 0%, var(--aktuna-gold-light) 100%);
    color: var(--aktuna-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(173, 149, 81, 0.3);
    border: 2px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    min-height: 56px;
}

.quick-contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--aktuna-gold-dark) 0%, var(--aktuna-gold) 100%);
    transition: left 0.3s ease;
}

.quick-contact-link:hover::before {
    left: 0;
}

.quick-contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(173, 149, 81, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.quick-contact-link svg {
    color: var(--aktuna-white);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    z-index: 2;
    position: relative;
}

.quick-contact-link span {
    color: var(--aktuna-white);
    z-index: 2;
    position: relative;
    letter-spacing: 0.025em;
}

/* Desktop specific button colors */
.quick-contact-link[href^="tel:"] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.quick-contact-link[href^="tel:"]::before {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
}

.quick-contact-link[href^="tel:"]:hover {
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.quick-contact-link[href^="tel:"] span {
    font-family: 'SF Mono', 'Monaco', 'Cascadia Code', monospace;
    letter-spacing: 1px;
}

.quick-contact-link[href^="mailto:"] {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.quick-contact-link[href^="mailto:"]::before {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.quick-contact-link[href^="mailto:"]:hover {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Premium Service Cards with enhanced visual depth */
.service-card {
    background: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(173, 149, 81, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(173, 149, 81, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(173, 149, 81, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px var(--shadow-light);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 50%;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 20px 50px rgba(173, 149, 81, 0.3);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-description {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Enhanced USP Section */
.usp-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.usp-card {
    text-align: center;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 2;
}

.usp-icon {
    width: 85px;
    height: 85px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 12px 40px var(--shadow-light);
    position: relative;
}

.usp-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(173, 149, 81, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.usp-card:hover .usp-icon {
    transform: scale(1.2) rotate(-10deg);
    box-shadow: 0 20px 60px rgba(173, 149, 81, 0.35);
}

.usp-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.usp-description {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* Enhanced About Section */
.about-section {
    background: #ffffff;
    position: relative;
}

.about-image {
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    max-width: 450px;
    width: 100%;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-gold);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.1;
}

.about-image:hover {
    transform: scale(1.03);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.about-content {
    font-size: 1.1875rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Enhanced Process Section */
.process-step {
    text-align: center;
    position: relative;
    padding: 3rem 1.5rem;
}

.process-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--aktuna-white);
    box-shadow: 0 15px 45px var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(173, 149, 81, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.process-step:hover .process-number {
    transform: scale(1.15);
    box-shadow: 0 25px 60px rgba(173, 149, 81, 0.35);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.process-description {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Enhanced Promise Section */
.promise-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.promise-item:hover {
    background: rgba(173, 149, 81, 0.02);
    padding-left: 1.5rem;
    margin-left: -1.5rem;
    transform: translateX(5px);
}

.promise-check {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.promise-item:hover .promise-check {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(173, 149, 81, 0.25);
}

.promise-text {
    font-size: 1.1875rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
}

/* Enhanced Contact Section with dramatic background */
.contact-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.contact-title {
    color: var(--text-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    color: var(--text-secondary);
    font-size: 1.375rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.contact-card {
    background: #ffffff;
    color: var(--text-primary);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(173, 149, 81, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(173, 149, 81, 0.05) 0%, transparent 100%);
    transition: left 0.4s ease;
}

.contact-card:hover::before {
    left: 0;
}

.contact-card:hover {
    transform: translateY(-8px);
    background: var(--aktuna-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(173, 149, 81, 0.2);
}

.contact-icon {
    color: var(--aktuna-gold);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(173, 149, 81, 0.2));
}

.contact-card:hover .contact-icon {
    color: var(--aktuna-gold-dark);
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(173, 149, 81, 0.3));
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-card-info {
    color: var(--aktuna-gold);
    font-weight: 500;
    font-size: 1.0625rem;
}

/* Email address specific styling - smaller and centered */
a[href^="mailto:"] .contact-card-info {
    font-size: 0.875rem;
    word-break: break-word;
    text-align: center;
    padding: 0 0.5rem;
}

/* Enhanced FAQ Section */
.faq-item {
    background: var(--aktuna-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: rgba(173, 149, 81, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    background: transparent;
    border: none;
    width: 100%;
    padding: 2.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1875rem;
    font-weight: 600;
}

.faq-question:hover {
    background: rgba(173, 149, 81, 0.02);
}

.faq-arrow {
    color: var(--aktuna-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 1px 2px rgba(173, 149, 81, 0.2));
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--aktuna-gold-dark);
}

.faq-answer {
    background: rgba(173, 149, 81, 0.02);
    border-top: 1px solid var(--border-light);
    padding: 0 2.5rem 2.5rem;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--text-primary) 0%, #0a0a0a 100%);
    color: var(--aktuna-white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--aktuna-gold) 50%, transparent 100%);
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--aktuna-white);
    letter-spacing: -0.01em;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-text a {
    color: var(--aktuna-gold-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-text a:hover {
    color: var(--aktuna-gold-bright);
}

/* Logo in footer enhancement */
.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) hue-rotate(45deg) saturate(2);
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* Impressum Styles */
.impressum-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.impressum-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.impressum-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -0.01em;
}

.impressum-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.impressum-content {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

.impressum-content p {
    margin-bottom: 1rem;
}

.impressum-content p:last-child {
    margin-bottom: 0;
}

.impressum-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.impressum-content ul {
    margin: 1rem 0;
}

.impressum-content li {
    margin-bottom: 0.5rem;
}

.impressum-content a {
    color: var(--aktuna-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.impressum-content a:hover {
    color: var(--aktuna-gold-dark);
    text-decoration: underline;
}

/* Enhanced Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 300px;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.pulse-animation {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Enhanced Responsive Design with Mobile-First Approach */
@media (max-width: 1200px) {
    .hero-title {
        font-size: clamp(2.75rem, 7.5vw, 4.5rem);
    }
    
    .section-title {
        font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    }
    
    .service-card {
        padding: 3rem 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        min-width: 300px;
        padding: 1.375rem 2.75rem;
    }
}

@media (max-width: 1024px) {
    /* Typography adjustments for tablets */
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.375rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    /* Navigation improvements for tablets */
    .nav-brand img {
        width: 44px;
        height: 44px;
    }
    
    .nav-brand {
        font-size: 1.375rem;
    }
    
    /* Service cards optimization */
    .service-card {
        padding: 2.5rem 2rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-title {
        font-size: 1.375rem;
    }
    
    /* Button adjustments */
    .btn-primary,
    .btn-secondary {
        min-width: 280px;
        padding: 1.25rem 2.5rem;
        font-size: 1rem;
    }
    
    /* Process steps */
    .process-number {
        width: 90px;
        height: 90px;
        font-size: 2.25rem;
    }
    
    /* Contact cards */
    .contact-card {
        padding: 2.75rem 2.25rem;
    }
}

@media (max-width: 768px) {
    /* Mobile-optimized spacing and layout */
    body {
        overflow-x: hidden;
    }
    
    /* Enhanced mobile navigation */
    nav {
        padding: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }
    
    nav .max-w-7xl {
        padding: 0 1rem;
    }
    
    nav .flex {
        padding: 1rem 0;
    }
    
    .nav-brand {
        font-size: 1.125rem;
    }
    
    .nav-brand img {
        width: 36px;
        height: 36px;
    }
    
    /* Hide tagline on mobile for cleaner look */
    .nav-brand-tagline {
        display: none;
    }
    
    .nav-brand-name {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.875rem 1rem;
        margin-bottom: 0.25rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-link:hover {
        background: rgba(173, 149, 81, 0.08);
        color: var(--aktuna-gold-dark);
        transform: translateX(4px);
    }
    
    /* Mobile hero section - completely fixed */
    .hero-section {
        min-height: 100vh !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content {
        padding: 1.5rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-content .max-w-5xl {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    /* Mobile-optimized buttons - fixed layout */
    .hero-content .flex {
        gap: 0.75rem !important;
        padding: 0 !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .btn-primary,
    .btn-secondary {
        min-width: auto !important;
        width: calc(100% - 2rem) !important;
        max-width: 300px !important;
        margin: 0 !important;
        padding: 1rem 1.25rem !important;
        font-size: 0.875rem !important;
        border-radius: 6px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        font-weight: 500 !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .btn-primary:last-child,
    .btn-secondary:last-child {
        margin-bottom: 0;
    }
    
    /* Mobile USP section - improved spacing */
    .usp-section {
        padding: 3rem 0;
    }
    
    .usp-section .max-w-7xl {
        padding: 0 1.25rem;
    }
    
    .usp-section .grid {
        gap: 2rem;
    }
    
    .usp-card {
        padding: 2rem 1rem;
        margin-bottom: 0;
    }
    
    .usp-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .usp-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .usp-description {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    /* Clean contact buttons without background cards */
    .quick-contact-strip {
        background: none;
        border: none;
        padding: 1.5rem 1rem;
        margin: 2rem 0 0;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        box-shadow: none;
        backdrop-filter: none;
        border-radius: 0;
    }
    
    .quick-contact-strip::before {
        display: none;
    }
    
    .quick-contact-link {
        background: linear-gradient(135deg, var(--aktuna-gold) 0%, var(--aktuna-gold-light) 100%);
        color: var(--aktuna-white);
        border: none;
        border-radius: 50px;
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        min-height: 56px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 16px rgba(173, 149, 81, 0.3);
        position: relative;
        overflow: hidden;
        backdrop-filter: none;
        border: 2px solid transparent;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .quick-contact-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--aktuna-gold-dark) 0%, var(--aktuna-gold) 100%);
        transition: left 0.3s ease;
    }
    
    .quick-contact-link:hover::before {
        left: 0;
    }
    
    .quick-contact-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(173, 149, 81, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .quick-contact-link:active {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(173, 149, 81, 0.3);
    }
    
    .quick-contact-link svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        color: var(--aktuna-white);
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
        z-index: 2;
        position: relative;
    }
    
    .quick-contact-link span {
        font-weight: 600;
        color: var(--aktuna-white);
        text-align: center;
        letter-spacing: 0.025em;
        z-index: 2;
        position: relative;
    }
    
    /* Phone button specific styling */
    .quick-contact-link[href^="tel:"] {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    }
    
    .quick-contact-link[href^="tel:"]::before {
        background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    }
    
    .quick-contact-link[href^="tel:"]:hover {
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    }
    
    .quick-contact-link[href^="tel:"] span {
        font-family: 'SF Mono', 'Monaco', 'Cascadia Code', monospace;
        letter-spacing: 1px;
        font-size: 0.9375rem;
    }
    
    /* Email button specific styling */
    .quick-contact-link[href^="mailto:"] {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
    }
    
    .quick-contact-link[href^="mailto:"]::before {
        background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    }
    
    .quick-contact-link[href^="mailto:"]:hover {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    }
    
    .quick-contact-link[href^="mailto:"] span {
        font-size: 0.875rem;
        word-break: break-word;
    }
    
    /* Mobile services section - better spacing */
    .services-section {
        padding: 3rem 0;
    }
    
    .services-section .max-w-7xl {
        padding: 0 1.25rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .services-section .grid {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 0;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid rgba(173, 149, 81, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .service-title {
        font-size: 1.125rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .service-description {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    /* Mobile about section - improved layout */
    .about-section {
        padding: 3rem 0;
    }
    
    .about-section .max-w-7xl {
        padding: 0 1.25rem;
    }
    
    .about-section .grid {
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        max-width: 280px;
        margin: 0 auto 2rem;
        border-radius: 12px;
    }
    
    .about-content {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
        padding: 0 0.5rem;
    }
    
    .about-content .btn-primary {
        margin-top: 1.5rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Mobile process section - better spacing */
    .process-section {
        padding: 3rem 0;
    }
    
    .process-section .max-w-7xl {
        padding: 0 1.25rem;
    }
    
    .process-section .grid {
        gap: 2rem;
    }
    
    .process-step {
        padding: 2rem 1rem;
        margin-bottom: 0;
        text-align: center;
    }
    
    .process-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .process-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .process-description {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    /* Mobile promise section - card layout */
    .promise-section {
        padding: 3rem 0;
    }
    
    .promise-section .max-w-5xl {
        padding: 0 1.25rem;
    }
    
    .promise-section .grid {
        gap: 1rem;
    }
    
    .promise-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 0;
        border-radius: 12px;
        background: rgba(173, 149, 81, 0.03);
        border: 1px solid rgba(173, 149, 81, 0.1);
    }
    
    .promise-check {
        width: 36px;
        height: 36px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .promise-text {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    /* Mobile FAQ section - improved spacing */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section .max-w-4xl {
        padding: 0 1.25rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* Mobile contact section - optimized layout */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-content {
        padding: 0 1.25rem;
    }
    
    .contact-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .contact-section .grid {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        margin-bottom: 0;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid rgba(173, 149, 81, 0.15);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .contact-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 1rem;
    }
    
    .contact-card-title {
        font-size: 1.0625rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-card-info {
        font-size: 0.9375rem;
        font-weight: 500;
        word-break: break-word;
    }
    
    /* Email address smaller on mobile too */
    a[href^="mailto:"] .contact-card-info {
        font-size: 0.8125rem;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .contact-section .flex {
        gap: 1rem;
        padding: 0 0.5rem;
        flex-direction: column;
    }
    
    /* Contact buttons mobile optimization */
    .contact-btn {
        min-width: auto;
        width: 100%;
        max-width: 350px;
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    /* Mobile footer - proper spacing */
    .footer {
        padding: 2.5rem 0 1.5rem;
        text-align: center;
    }
    
    .footer .max-w-7xl {
        padding: 0 1.25rem;
    }
    
    .footer-brand {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .footer-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .footer-text p {
        margin-bottom: 0.75rem;
    }
    
    .footer-text p:last-child {
        margin-bottom: 0;
    }
    
    /* Mobile impressum styles - better readability */
    .impressum-heading {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
    
    .impressum-content {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .impressum-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    /* Mobile container improvements */
    .max-w-7xl,
    .max-w-5xl,
    .max-w-4xl {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    /* Mobile grid adjustments */
    .grid {
        gap: 1.5rem;
    }
    
    /* Ensure proper touch targets */
    button, a, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Improve scrolling performance */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile-specific animations */
    .service-card:hover,
    .contact-card:hover,
    .promise-item:hover {
        transform: none;
    }
    
    .service-card:active,
    .contact-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
        padding: 0 0.5rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-white,
    .btn-outline-white {
        padding: 1.375rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card,
    .contact-card,
    .faq-item {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
    
    .quick-contact-strip {
        margin: 0 0.75rem;
        padding: 2rem 1.5rem;
    }
    
    .nav-brand {
        font-size: 1.125rem;
    }
    
    .nav-brand img {
        width: 36px;
        height: 36px;
    }
    
    /* Hide tagline on mobile for cleaner look */
    .nav-brand-tagline {
        display: none;
    }
    
    .nav-brand-name {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    /* Reduce padding for very small screens */
    .max-w-7xl {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Optimize contact cards for small screens */
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card-title {
        font-size: 1.0625rem;
    }
    
    .contact-card-info {
        font-size: 0.9375rem;
        word-break: break-all; /* Break long email addresses */
    }
    
    /* Email even smaller on very small screens */
    a[href^="mailto:"] .contact-card-info {
        font-size: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 375px) {
    /* iPhone SE and similar small devices */
    .hero-title {
        font-size: clamp(1.875rem, 10vw, 2.75rem);
    }
    
    .section-title {
        font-size: clamp(1.625rem, 8vw, 2.25rem);
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .service-card {
        padding: 2rem 1.25rem;
    }
    
    .contact-card {
        padding: 1.75rem 1.25rem;
    }
    
    .quick-contact-strip {
        padding: 1.75rem 1.25rem;
    }
}

/* Landscape orientation optimizations for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 80vh;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.75rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
        display: inline-flex;
        width: auto;
        min-width: 200px;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-brand img,
    .about-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support disabled - keeping light theme */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    .quick-contact-strip {
        background: #ffffff;
        border: 1px solid rgba(173, 149, 81, 0.15);
    }
    
    .service-card,
    .contact-card,
    .faq-item {
        background: #ffffff;
        border-color: rgba(173, 149, 81, 0.1);
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    /* Larger focus indicators for mobile */
    button:focus,
    a:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 3px solid var(--aktuna-gold);
        outline-offset: 4px;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
}

/* Print styles for mobile */
@media print {
    .nav-brand img {
        width: 24px;
        height: 24px;
    }
    
    .hero-section::before,
    .hero-section::after,
    .contact-section::before,
    .contact-section::after,
    .usp-section::before {
        display: none;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-white,
    .btn-outline-white {
        background: transparent !important;
        color: var(--text-primary) !important;
        border: 2px solid var(--text-primary) !important;
    }
}

/* Focus and accessibility enhancements */
button:focus,
a:focus {
    outline: 3px solid var(--aktuna-gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Print styles */
@media print {
    .hero-section::before,
    .hero-section::after,
    .contact-section::before,
    .contact-section::after,
    .usp-section::before {
        display: none;
    }
}