/* ========================================
   ECEKIM.COM - Professional Modern Design
   Inspired by: Solutek Technology Template
   Colors from Logo: #00569D (Blue), #6D6E71 (Gray)
   Framework: Custom CSS with Modern Features
   ======================================== */

/* ========================================
   EXPOSE FONT FAMILY
   ======================================== */
@font-face {
  font-family: 'Expose';
  src: url('../WEB/fonts/Expose-Variable.woff2') format('woff2'),
       url('../WEB/fonts/Expose-Variable.woff') format('woff'),
       url('../WEB/fonts/Expose-Variable.ttf') format('truetype');
  font-weight: 400 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Expose';
  src: url('../WEB/fonts/Expose-Regular.woff2') format('woff2'),
       url('../WEB/fonts/Expose-Regular.woff') format('woff'),
       url('../WEB/fonts/Expose-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Expose';
  src: url('../WEB/fonts/Expose-Medium.woff2') format('woff2'),
       url('../WEB/fonts/Expose-Medium.woff') format('woff'),
       url('../WEB/fonts/Expose-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Expose';
  src: url('../WEB/fonts/Expose-Bold.woff2') format('woff2'),
       url('../WEB/fonts/Expose-Bold.woff') format('woff'),
       url('../WEB/fonts/Expose-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Expose';
  src: url('../WEB/fonts/Expose-Black.woff2') format('woff2'),
       url('../WEB/fonts/Expose-Black.woff') format('woff'),
       url('../WEB/fonts/Expose-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}

/* ========================================
   CSS VARIABLES & ROOT STYLES
   ======================================== */
:root {
    /* Primary Colors from Logo */
    --primary-blue: #00569D;
    --dark-blue: #004178;
    --light-blue: #0076CC;
    --primary-gray: #6D6E71;
    --dark-gray: #3A3B3C;
    --light-gray: #A8A9AC;
    
    /* Accent & Gradient Colors */
    --accent-blue: #00A3E0;
    --gradient-start: #00569D;
    --gradient-end: #00A3E0;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-bg: #F4F6F8;
    --border-color: #E1E4E8;
    --text-dark: #1A1C1E;
    --text-medium: #4A5568;
    --text-light: #6B7280;
    
    /* Success, Warning, Error */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 86, 157, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 86, 157, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 86, 157, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 86, 157, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 80px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Expose', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    max-width: 100%;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-sm {
    padding: var(--spacing-2xl) 0;
}

.section-lg {
    padding: 120px 0;
}

/* ========================================
   TOP HEADER BAR
   ======================================== */
.top-header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-gray) 100%);
    color: var(--white);
    padding: 9px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.top-header-left i {
    color: var(--accent-blue);
    margin-right: 6px;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.top-header a {
    color: var(--white);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-header a:hover {
    color: var(--accent-blue);
    transform: translateY(-1px);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: var(--white);
}

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    color: var(--white);
}

.social-links a i {
    transition: all 0.3s ease;
}

.social-links a:hover i {
    color: var(--white);
    transform: scale(1.1);
}

/* ========================================
   MAIN HEADER & NAVIGATION
   ======================================== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    transition: var(--transition-base);
}

.main-header.scrolled .container {
    height: 45px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    transition: var(--transition-base);
}

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition-base);
}

.main-header.scrolled .logo img {
    height: 45px;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation */
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.main-nav ul.submenu {
    display: block !important;
    flex-direction: unset !important;
    gap: 0 !important;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    transition: var(--transition-base);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transition: var(--transition-base);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-blue);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Dropdown Menu - SOLA HİZALI ALT ALTA SIKIŞIK */
.main-nav > ul > li {
    position: relative;
}

/* Add hover delay to prevent accidental opening */
.main-nav > ul > li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.main-nav > ul > li > a {
    position: relative;
    z-index: 2;
}

.main-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: #FFFFFF;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    z-index: 9999;
    border-top: 3px solid #00569D;
    display: none;
    list-style: none;
}

/* Only show direct child submenu on hover */
.main-nav > ul > li:hover > .submenu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}

.main-nav .submenu li {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
    float: none !important;
    clear: both;
}

.main-nav .submenu li:last-child {
    border-bottom: none;
}

.main-nav .submenu a {
    display: block;
    width: 100%;
    padding: 8px 16px;
    margin: 0;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
    box-sizing: border-box;
    line-height: 1.5;
}

.main-nav .submenu a::after {
    content: none;
    display: none;
}

.main-nav .submenu a i {
    margin-right: 8px;
    width: 16px;
    display: inline-block;
    color: #00569D;
    font-size: 14px;
}

.main-nav .submenu a:hover {
    background: rgba(0, 86, 157, 0.08);
    border-left-color: #00569D;
    color: #00569D;
    padding-left: 20px;
}

/* Keep submenu open when moving between items */
.main-nav .submenu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.main-nav .submenu-level-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    bottom: 0;
    width: 10px;
}

/* Multi-level Submenu Styles */
.main-nav .submenu li {
    position: relative;
}

.main-nav .submenu li.has-submenu > a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #00569D;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.main-nav .submenu li.has-submenu:hover > a::after {
    opacity: 1;
}

/* Second Level Submenu */
.main-nav .submenu .submenu-level-2 {
    position: absolute;
    left: 100%;
    top: 0;
    width: 220px;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    padding: 4px 0;
    margin: 0;
    margin-left: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    z-index: 10000;
    border-left: 2px solid #00569D;
    display: none;
    list-style: none;
}

/* Only show submenu when hovering on its parent li */
.main-nav .submenu li.has-submenu:hover > .submenu-level-2 {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}

.main-nav .submenu-level-2 li {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
    float: none !important;
    clear: both;
}

.main-nav .submenu-level-2 a {
    padding: 6px 12px !important;
    font-size: 13px;
    border-left: 2px solid transparent;
}

.main-nav .submenu-level-2 a:hover {
    background: rgba(0, 86, 157, 0.08);
    border-left-color: #00569D;
    padding-left: 14px !important;
}

/* Dropdown Arrow Indicator */
.main-nav > ul > li.has-submenu > a::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.main-nav > ul > li.has-submenu:hover > a::before {
    transform: rotate(180deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--primary-blue);
    padding: 8px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.mobile-menu-btn:hover {
    background: var(--light-bg);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-lg);
    transition: var(--transition-base);
    z-index: 9999;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.mobile-nav-close {
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mobile-nav a {
    display: block;
    padding: 5px 10px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--light-bg);
    color: var(--primary-blue);
}

/* Mobile Submenu Styles */
.mobile-nav .submenu {
    display: none;
    padding-left: 20px;
    margin-top: 8px;
    border-left: 2px solid var(--primary-blue);
}

.mobile-nav .submenu.active {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav .submenu a {
    font-size: 14px;
    padding: 8px 12px;
    color: var(--text-gray);
}

/* Multi-level mobile submenu */
.mobile-nav .submenu-level-2 {
    padding-left: 15px;
    margin-top: 5px;
    border-left: 2px solid rgba(0, 86, 157, 0.08);
}

.mobile-nav .submenu-level-2 a {
    font-size: 13px;
    padding: 6px 10px;
}

.mobile-nav .has-submenu > a {
    position: relative;
    padding-right: 40px;
    cursor: pointer;
}

.mobile-nav .has-submenu > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.mobile-nav .has-submenu.open > a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: var(--transition-base);
}

.mobile-overlay.active {
    opacity: 1;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
}

/* Industrial Pattern Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="hexagons" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M20,10 L30,5 L40,10 L40,20 L30,25 L20,20 Z" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1.5"/><path d="M60,10 L70,5 L80,10 L80,20 L70,25 L60,20 Z" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1.5"/><path d="M20,50 L30,45 L40,50 L40,60 L30,65 L20,60 Z" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1.5"/><path d="M60,50 L70,45 L80,50 L80,60 L70,65 L60,60 Z" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1.5"/><path d="M40,30 L50,25 L60,30 L60,40 L50,45 L40,40 Z" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1.5"/><circle cx="30" cy="15" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="70" cy="15" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="30" cy="55" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="70" cy="55" r="1.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>');
    opacity: 0.4;
}

/* Gear/Cog Decorations */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg" opacity="0.05"><circle cx="100" cy="100" r="40" fill="none" stroke="white" stroke-width="2"/><circle cx="100" cy="100" r="25" fill="none" stroke="white" stroke-width="3"/><path d="M100,50 L110,60 L105,70 L100,65 L95,70 L90,60 Z" fill="white"/><path d="M150,100 L140,110 L130,105 L135,100 L130,95 L140,90 Z" fill="white"/><path d="M100,150 L90,140 L95,130 L100,135 L105,130 L110,140 Z" fill="white"/><path d="M50,100 L60,90 L70,95 L65,100 L70,105 L60,110 Z" fill="white"/></svg>');
    background-position: 120% -10%, -20% 110%;
    background-repeat: no-repeat;
    opacity: 0.6;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    font-family: 'Expose', sans-serif;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-highlight {
    background: linear-gradient(120deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    padding: 0 12px;
    border-radius: var(--radius-md);
}

.hero p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.hero-buttons {
    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        margin-top: 25px !important;
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    font-size: 20px;
}
#hizmetler {
    scroll-margin-top: 80px;
    scroll-behavior: smooth;
}

.hero-feature-text h4 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Expose', sans-serif;
    margin-bottom: 2px;
}

.hero-feature-text p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Büyüyen noktalar - soldan sağa */
        radial-gradient(circle at 0% 50%, rgba(0, 0, 0, 0.08) 0.5px, transparent 0.5px),
        radial-gradient(circle at 25% 50%, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle at 75% 50%, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        /* Mavi ton hafif vurgu */
        radial-gradient(circle at 30% 60%, rgba(0, 86, 157, 0.15) 200px, transparent 400px),
        /* Soft siyah gradyan - soldan sağa */
        linear-gradient(
            to right,
            rgba(0, 20, 40, 0.65) 0%,
            rgba(0, 30, 50, 0.45) 25%,
            rgba(0, 40, 60, 0.30) 50%,
            rgba(0, 50, 70, 0.20) 75%,
            rgba(0, 60, 80, 0.10) 100%
        );
    background-size: 15px 15px, 20px 20px, 25px 25px, 20px 20px, 100% 100%, 100% 100%;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slider-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}

.slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.slider-text h1 {
    font-size: 38px;
    font-weight: 700;
    font-family: 'Expose', sans-serif;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slider-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    opacity: 1;
    text-shadow: 0 2px 10px rgb(0 0 0 / 80%);
    background-color: #3e3d3d87;
    border-radius: 7px;
}

.slider-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
}

.slider-nav:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all var(--transition-base);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 10px;
}

/* Responsive Slider */
@media (max-width: 1024px) {
    .hero-slider {
        height: 600px;
    }
    
    .slider-text h1 {
        font-size: 40px;
    }
    
    .slider-text p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .slider-text h1 {
        font-size: 30px;
    }
    
    .slider-text p {
        font-size: 16px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 450px;
    }
    
    .slider-text h1 {
        font-size: 24px;
    }
    
    .slider-text p {
        font-size: 14px;
    }
    
    .slider-buttons {
        flex-direction: column;
    }
    
    .slider-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Hero Decorative Elements - Industrial Theme */
.hero-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-decoration-1 {
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: var(--radius-full);
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-1::before {
    content: '⚙';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.08;
    animation: rotateGear 20s linear infinite;
}

.hero-decoration-2 {
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: var(--radius-full);
    animation: float 8s ease-in-out infinite reverse;
}

.hero-decoration-2::before {
    content: '⚙';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    opacity: 0.06;
    animation: rotateGear 15s linear infinite reverse;
}

@keyframes rotateGear {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ========================================
   PAGE BREADCRUMB / MINI HERO
   ======================================== */
.hero.page-header {
    min-height: 280px !important;
    padding: var(--spacing-2xl) 0 !important;
}

.hero.page-header::before {
    background-image: 
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="metal-grid" width="60" height="60" patternUnits="userSpaceOnUse"><rect width="60" height="60" fill="none"/><path d="M0,30 L60,30 M30,0 L30,60" stroke="rgba(255,255,255,0.06)" stroke-width="1"/><circle cx="30" cy="30" r="8" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1.5"/><circle cx="0" cy="0" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="0" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="0" cy="60" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="60" r="3" fill="rgba(255,255,255,0.1)"/><path d="M20,20 L25,22 L25,28 L20,30 L15,28 L15,22 Z" fill="rgba(255,255,255,0.04)"/><path d="M40,40 L45,42 L45,48 L40,50 L35,48 L35,42 Z" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23metal-grid)"/></svg>');
    opacity: 0.5;
}

.hero.page-header::after {
    background-image: 
        url('data:image/svg+xml,<svg width="150" height="150" xmlns="http://www.w3.org/2000/svg" opacity="0.06"><g transform="translate(75,75)"><circle r="50" fill="none" stroke="white" stroke-width="2"/><circle r="35" fill="none" stroke="white" stroke-width="1.5"/><path d="M0,-50 L8,-42 L5,-30 L0,-35 L-5,-30 L-8,-42 Z" fill="white"/><path d="M50,0 L42,8 L30,5 L35,0 L30,-5 L42,-8 Z" fill="white"/><path d="M0,50 L-8,42 L-5,30 L0,35 L5,30 L8,42 Z" fill="white"/><path d="M-50,0 L-42,-8 L-30,-5 L-35,0 L-30,5 L-42,8 Z" fill="white"/><circle r="15" fill="white" opacity="0.3"/><line x1="-40" y1="-40" x2="40" y2="40" stroke="white" stroke-width="1" opacity="0.2"/><line x1="40" y1="-40" x2="-40" y2="40" stroke="white" stroke-width="1" opacity="0.2"/></g></svg>');
    background-position: 95% 20%, 5% 80%;
    background-size: 180px, 120px;
    opacity: 0.7;
}

.hero.page-header .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.hero.page-header p {
    font-size: 18px;
    margin-bottom: 0;
}

/* ========================================
   PAGE SPECIFIC PATTERNS
   ======================================== */

/* CONTACT PAGE - Communication Theme with Animated Envelope */
.hero.contact-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero.contact-page .breadcrumb {
    z-index: 2;
}

.hero.contact-page::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 90px;
    height: 90px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="25" width="80" height="55" rx="4" fill="rgba(255,255,255,0.12)" stroke="rgba(255,255,255,0.25)" stroke-width="2.5"/><path d="M10,25 L50,55 L90,25" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M10,25 L10,80 L35,60" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2"/><path d="M90,25 L90,80 L65,60" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2"/><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.4)"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    animation: envelope-float 4s ease-in-out infinite, float-slow-1 8s ease-in-out infinite;
}

.hero.contact-page .hero-decoration-1 {
    position: absolute;
    top: 60%;
    right: 15%;
    width: 85px;
    height: 85px;
}

.hero.contact-page .hero-decoration-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="12" y="28" width="76" height="50" rx="3" fill="rgba(255,255,255,0.1)" stroke="rgba(255,255,255,0.22)" stroke-width="2.3"/><path d="M12,28 L50,52 L88,28" fill="none" stroke="rgba(255,255,255,0.28)" stroke-width="2.5" stroke-linecap="round"/><path class="envelope-flap" d="M12,28 L50,50 L88,28 L88,35 L50,57 L12,35 Z" fill="rgba(255,255,255,0.08)" stroke="rgba(255,255,255,0.25)" stroke-width="1.8"/><circle cx="70" cy="62" r="8" fill="rgba(255,255,255,0.15)"/><path d="M66,62 L68,64 L74,58" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="2" stroke-linecap="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: envelope-open 3s ease-in-out infinite, float-slow-2 10s ease-in-out infinite;
}

.hero.contact-page .hero-decoration-2 {
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 85px;
    height: 85px;
}

.hero.contact-page .hero-decoration-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="38" fill="rgba(255,255,255,0.08)" stroke="rgba(255,255,255,0.15)" stroke-width="1.5"/><path d="M35,32 Q33,30 31,32 L28,35 Q26,37 28,39 L31,42 Q34,45 37,43 L40,41 Q48,48 52,58 L50,61 Q48,64 50,67 L53,70 Q55,72 57,70 L60,67 Q62,65 60,63 L57,60 Q54,57 52,59 L49,62 Q42,52 46,43 L48,40 Q50,37 48,35 L45,32 Q43,30 41,32 L38,35 Q36,37 38,39 Z" fill="rgba(255,255,255,0.22)" stroke="rgba(255,255,255,0.32)" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M56,38 Q58,36 60,38 Q62,40 60,42" fill="none" stroke="rgba(255,255,255,0.28)" stroke-width="2" stroke-linecap="round"/><path d="M60,34 Q63,31 66,34 Q69,37 66,40" fill="none" stroke="rgba(255,255,255,0.25)" stroke-width="2" stroke-linecap="round"/><path d="M64,30 Q68,26 72,30 Q76,34 72,38" fill="none" stroke="rgba(255,255,255,0.22)" stroke-width="2" stroke-linecap="round"/><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="25" r="2.5" fill="rgba(255,255,255,0.18)"/><circle cx="75" cy="75" r="3.5" fill="rgba(255,255,255,0.2)"/><circle cx="25" cy="80" r="2" fill="rgba(255,255,255,0.15)"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: phone-ring 2s ease-in-out infinite, float-slow-3 9s ease-in-out infinite;
}

.hero.contact-page .hero-decoration-3 {
    position: absolute;
    top: 30%;
    right: 8%;
    width: 75px;
    height: 75px;
}

.hero.contact-page .hero-decoration-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="45" r="32" fill="none" stroke="rgba(255,255,255,0.22)" stroke-width="2.5"/><path d="M50,20 L50,45" fill="none" stroke="rgba(255,255,255,0.28)" stroke-width="3" stroke-linecap="round"/><path d="M30,70 Q50,85 70,70" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2.5" stroke-linecap="round"/><circle cx="42" cy="38" r="4" fill="rgba(255,255,255,0.25)"/><circle cx="58" cy="38" r="4" fill="rgba(255,255,255,0.25)"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: info-pulse 3s ease-in-out infinite, float-slow-4 11s ease-in-out infinite;
}

/* ABOUT PAGE - People & Values Theme */
.hero.about-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero.about-page::after {
    content: '👥';
    position: absolute;
    top: 20%;
    left: 12%;
    font-size: 75px;
    opacity: 0.15;
    animation: float-slow-1 9s ease-in-out infinite;
}

.hero.about-page .hero-decoration-1 {
    position: absolute;
    top: 55%;
    right: 10%;
    font-size: 70px;
    opacity: 0.15;
    animation: float-slow-2 10s ease-in-out infinite;
}

.hero.about-page .hero-decoration-1::before {
    content: '🏆';
}

.hero.about-page .hero-decoration-2 {
    position: absolute;
    bottom: 25%;
    left: 18%;
    font-size: 65px;
    opacity: 0.15;
    animation: float-slow-3 8s ease-in-out infinite;
}

.hero.about-page .hero-decoration-2::before {
    content: '⭐';
}

.hero.about-page .hero-decoration-3 {
    position: absolute;
    top: 35%;
    right: 20%;
    font-size: 60px;
    opacity: 0.15;
    animation: float-slow-4 11s ease-in-out infinite;
}

.hero.about-page .hero-decoration-3::before {
    content: '💼';
}

/* GALLERY PAGE - Photography Theme */
.hero.gallery-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero.gallery-page::after {
    content: '📷';
    position: absolute;
    top: 18%;
    left: 8%;
    font-size: 80px;
    opacity: 0.15;
    animation: float-slow-1 8s ease-in-out infinite;
}

.hero.gallery-page .hero-decoration-1 {
    position: absolute;
    top: 50%;
    right: 12%;
    font-size: 75px;
    opacity: 0.15;
    animation: float-slow-2 10s ease-in-out infinite;
}

.hero.gallery-page .hero-decoration-1::before {
    content: '🎬';
}

.hero.gallery-page .hero-decoration-2 {
    position: absolute;
    bottom: 22%;
    left: 15%;
    font-size: 65px;
    opacity: 0.15;
    animation: float-slow-3 9s ease-in-out infinite;
}

.hero.gallery-page .hero-decoration-2::before {
    content: '🖼️';
}

.hero.gallery-page .hero-decoration-3 {
    position: absolute;
    top: 32%;
    right: 18%;
    font-size: 70px;
    opacity: 0.15;
    animation: float-slow-4 11s ease-in-out infinite;
}

.hero.gallery-page .hero-decoration-3::before {
    content: '📸';
}

/* SERVICES PAGE - Tools & Technical Theme with SVG Gears */
.hero.services-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero.services-page::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 L55,20 L65,20 L58,28 L62,38 L50,32 L38,38 L42,28 L35,20 L45,20 Z M50,25 A15,15 0 1,1 50,55 A15,15 0 1,1 50,25 M50,30 A10,10 0 1,0 50,50 A10,10 0 1,0 50,30" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2"/><circle cx="50" cy="40" r="6" fill="rgba(255,255,255,0.15)"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    animation: rotate-gear-1 15s linear infinite, float-slow-1 9s ease-in-out infinite;
}

.hero.services-page .hero-decoration-1 {
    position: absolute;
    top: 55%;
    right: 12%;
    width: 90px;
    height: 90px;
}

.hero.services-page .hero-decoration-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,5 L58,15 L70,15 L72,27 L82,35 L78,47 L82,59 L72,67 L70,79 L58,79 L50,89 L42,79 L30,79 L28,67 L18,59 L22,47 L18,35 L28,27 L30,15 L42,15 Z M50,30 A20,20 0 1,1 50,70 A20,20 0 1,1 50,30 M50,35 A15,15 0 1,0 50,65 A15,15 0 1,0 50,35" fill="none" stroke="rgba(255,255,255,0.25)" stroke-width="2.5"/><circle cx="50" cy="50" r="8" fill="rgba(255,255,255,0.2)"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: rotate-gear-2 20s linear infinite, float-slow-2 10s ease-in-out infinite;
}

.hero.services-page .hero-decoration-2 {
    position: absolute;
    bottom: 20%;
    left: 18%;
    width: 70px;
    height: 70px;
}

.hero.services-page .hero-decoration-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,8 L56,18 L66,20 L68,30 L76,38 L74,48 L76,58 L68,66 L66,76 L56,78 L50,88 L44,78 L34,76 L32,66 L24,58 L26,48 L24,38 L32,30 L34,20 L44,18 Z M50,32 A18,18 0 1,1 50,68 A18,18 0 1,1 50,32 M50,38 A12,12 0 1,0 50,62 A12,12 0 1,0 50,38" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2"/><circle cx="50" cy="50" r="7" fill="rgba(255,255,255,0.15)"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: rotate-gear-3 12s linear infinite, float-slow-3 8s ease-in-out infinite;
}

.hero.services-page .hero-decoration-3 {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 75px;
    height: 75px;
}

.hero.services-page .hero-decoration-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,12 L54,20 L62,22 L64,30 L70,36 L68,44 L70,52 L64,58 L62,66 L54,68 L50,76 L46,68 L38,66 L36,58 L30,52 L32,44 L30,36 L36,30 L38,22 L46,20 Z M50,35 A15,15 0 1,1 50,65 A15,15 0 1,1 50,35 M50,40 A10,10 0 1,0 50,60 A10,10 0 1,0 50,40" fill="none" stroke="rgba(255,255,255,0.22)" stroke-width="2.2"/><circle cx="50" cy="50" r="6" fill="rgba(255,255,255,0.18)"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: rotate-gear-4 18s linear infinite, float-slow-4 11s ease-in-out infinite;
}

/* NEWS PAGE - Media & News Theme */
.hero.news-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero.news-page::after {
    content: '📰';
    position: absolute;
    top: 18%;
    left: 11%;
    font-size: 80px;
    opacity: 0.15;
    animation: float-slow-1 8s ease-in-out infinite;
}

.hero.news-page .hero-decoration-1 {
    position: absolute;
    top: 52%;
    right: 10%;
    font-size: 75px;
    opacity: 0.15;
    animation: float-slow-2 10s ease-in-out infinite;
}

.hero.news-page .hero-decoration-1::before {
    content: '🕐';
}

.hero.news-page .hero-decoration-2 {
    position: absolute;
    bottom: 24%;
    left: 16%;
    font-size: 65px;
    opacity: 0.15;
    animation: float-slow-3 9s ease-in-out infinite;
}

.hero.news-page .hero-decoration-2::before {
    content: '📝';
}

.hero.news-page .hero-decoration-3 {
    position: absolute;
    top: 33%;
    right: 17%;
    font-size: 70px;
    opacity: 0.45;
    animation: float-slow-4 11s ease-in-out infinite;
}

.hero.news-page .hero-decoration-3::before {
    content: 'ℹ️';
}

/* Smooth Float Animations for Breadcrumb Icons */
@keyframes float-slow-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(2deg);
    }
    50% {
        transform: translate(0, -20px) rotate(0deg);
    }
    75% {
        transform: translate(-10px, -10px) rotate(-2deg);
    }
}

@keyframes float-slow-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-12px, 10px) rotate(-2deg);
    }
    50% {
        transform: translate(0, 18px) rotate(0deg);
    }
    75% {
        transform: translate(12px, 10px) rotate(2deg);
    }
}

@keyframes float-slow-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(15px, -8px) rotate(3deg);
    }
    66% {
        transform: translate(-15px, -8px) rotate(-3deg);
    }
}

@keyframes float-slow-4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    30% {
        transform: translate(-10px, 12px) rotate(-2deg);
    }
    60% {
        transform: translate(10px, -12px) rotate(2deg);
    }
}

/* Gear Rotation Animations */
@keyframes rotate-gear-1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-gear-2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes rotate-gear-3 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-gear-4 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/* Envelope Animations */
@keyframes envelope-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

@keyframes envelope-open {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px) rotateX(10deg);
    }
}

/* Phone Ring Animation */
@keyframes phone-ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Info Pulse Animation */
@keyframes info-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Page Specific Decorations Override */
.hero.contact-page .hero-decoration-1::before {
    content: '📧';
    font-size: 100px;
}

.hero.contact-page .hero-decoration-2::before {
    content: '📞';
    font-size: 70px;
}

.hero.about-page .hero-decoration-1::before {
    content: '👥';
    font-size: 100px;
}

.hero.about-page .hero-decoration-2::before {
    content: '🏆';
    font-size: 70px;
}

.hero.gallery-page .hero-decoration-1::before {
    content: '📷';
    font-size: 100px;
}

.hero.gallery-page .hero-decoration-2::before {
    content: '🎬';
    font-size: 70px;
}

.hero.services-page .hero-decoration-1::before {
    content: '🔧';
    font-size: 100px;
}

.hero.services-page .hero-decoration-2::before {
    content: '⚙️';
    font-size: 70px;
}

.hero.news-page .hero-decoration-1::before {
    content: '📰';
    font-size: 100px;
}

.hero.news-page .hero-decoration-2::before {
    content: '📡';
    font-size: 70px;
}

/* Responsive adjustments for page headers */
@media (max-width: 768px) {
    .hero.page-header {
        min-height: 220px !important;
        padding: var(--spacing-xl) 0 !important;
    }
    
    .hero.page-header h1 {
        font-size: 32px;
    }
    
    .hero.page-header p {
        font-size: 16px;
    }
    
    .hero.page-header .hero-decoration {
        display: none;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-family: 'Expose', sans-serif;
    font-size: 15px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.btn-blue {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn i {
    transition: var(--transition-base);
}

.btn:hover i {
    transform: translateX(4px);
}

/* ========================================
   SECTION TITLE
   ======================================== */
.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--light-bg);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Expose', sans-serif;
    margin-bottom: var(--spacing-sm);
}

.section-title h2 {
    font-size: 42px;
    font-weight: 900;
    font-family: 'Expose', sans-serif;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.section-title .highlight {
    color: var(--primary-blue);
    position: relative;
}

.section-title p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ========================================
   SERVICES / FEATURES GRID
   ======================================== */
.services-section-home {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 50%, #f0f7fb 100%);
}

.services-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Large curved circles */
        radial-gradient(circle at 15% 25%, rgba(0, 86, 157, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(0, 163, 224, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 86, 157, 0.03) 0%, transparent 60%),
        /* Visible grid pattern */
        repeating-linear-gradient(
            0deg,
            rgba(0, 86, 157, 0.04) 0px,
            transparent 2px,
            transparent 80px,
            rgba(0, 86, 157, 0.04) 82px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 86, 157, 0.04) 0px,
            transparent 2px,
            transparent 80px,
            rgba(0, 86, 157, 0.04) 82px
        );
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.services-section-home::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
    z-index: 0;
}

/* Decorative curves - Bottom left */
.services-section-home .container {
    position: relative;
    z-index: 2;
}

.services-section-home .container::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(0, 86, 157, 0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* Metal rotating animations */
@keyframes rotateClockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateCounterClockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Decorative curves - Bottom left */
.services-section-home .container {
    position: relative;
    z-index: 2;
}

.services-section-home .container::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(0, 86, 157, 0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Industrial Icons Pattern - Removed per user request */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: var(--radius-lg);
    font-size: 30px;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Expose', sans-serif;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.service-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

.services-feature-visual {
    margin-top: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 86, 157, 0.2);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
    background: #0d2338;
}

.services-feature-visual img {
    display: block;
    width: 100%;
    height: clamp(240px, 36vw, 470px);
    object-fit: cover;
    object-position: center;
}

/* ========================================
   STATISTICS / COUNTER SECTION
   ======================================== */
.stats-section {
    background: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: var(--radius-full);
    font-size: 24px;
    color: var(--white);
    margin: 0 auto var(--spacing-sm);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Expose', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-feature-settings: 'tnum';
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 500;
}

/* Stats Mobile Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }
    
    /* Metal discs - smaller on mobile */
    .services-section-home .section-title::before {
        width: 120px;
        height: 120px;
        top: -60px;
        left: -60px;
    }
    
    .services-section-home .services-grid::after {
        width: 100px;
        height: 100px;
        bottom: -50px;
        right: -50px;
    }
    
    .services-section-home .section-badge::after {
        width: 70px;
        height: 70px;
        right: -100px;
    }
}

/* ========================================
   NEWS / BLOG CARDS
   ======================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.news-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.news-image > a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card .news-badge {
    pointer-events: none;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

/* ========================================
   GALLERY SPECIFIC STYLES
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-md);
}

.gallery-item {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 3px solid var(--border-color);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.gallery-item .news-image {
    height: 280px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--light-bg);
}

.gallery-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
}

.gallery-item:hover .news-image img {
    transform: scale(1.15);
}

.gallery-item .news-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition-base);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(0, 86, 157, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.gallery-item:hover .news-badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-item .news-content {
    padding: var(--spacing-md);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-item .news-badge {
    pointer-events: none;
}

/* Responsive Gallery Grid */
@media (max-width: 1200px) {
    .gallery-grid {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        padding: var(--spacing-sm);
    }
    
    .gallery-item .news-image {
        height: 260px;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .gallery-item .news-image {
        height: 220px;
    }
    
    .gallery-item .news-content {
        padding: var(--spacing-sm);
        min-height: 60px;
    }
}

.news-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    padding: 6px 16px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.news-content {
    padding: var(--spacing-lg);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 14px;
    color: var(--text-light);
}

.news-meta i {
    color: var(--primary-blue);
}

.news-card h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Expose', sans-serif;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.news-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: visible;
    padding: var(--spacing-3xl) 0 0 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    z-index: 0;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.cta-image {
    flex: 0 0 auto;
    width: 360px;
    position: relative;
    margin-left: -50px;
    margin-top: 50px;
    margin-bottom: -65px;
    align-self: flex-end;
}

.engineer-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    object-position: bottom;
    position: relative;
    display: block;
    z-index: 3;
    display: block;
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: left;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 900;
    font-family: 'Expose', sans-serif;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: var(--white);
    padding-top: var(--spacing-3xl);
    position: relative;
    overflow: hidden;
}

/* Modern Grid Pattern + Gradient Circles */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Gradient circles */
        radial-gradient(circle at 20% 30%, rgba(0, 163, 224, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 86, 157, 0.08) 0%, transparent 50%),
        /* Subtle grid */
        repeating-linear-gradient(
            0deg,
            rgba(0, 163, 224, 0.03) 0px,
            transparent 1px,
            transparent 40px,
            rgba(0, 163, 224, 0.03) 41px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 163, 224, 0.03) 0px,
            transparent 1px,
            transparent 40px,
            rgba(0, 163, 224, 0.03) 41px
        );
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

/* Diagonal Lines Pattern */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.15'%3E%3Cline x1='0' y1='0' x2='100' y2='100' stroke='%2300A3E0' stroke-width='0.5'/%3E%3Cline x1='0' y1='50' x2='50' y2='100' stroke='%2300A3E0' stroke-width='0.5'/%3E%3Cline x1='50' y1='0' x2='100' y2='50' stroke='%2300A3E0' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Expose', sans-serif;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 120px;
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    display: block;
    color: var(--light-gray);
    margin-bottom: 12px;
    transition: var(--transition-fast);
    padding-left: 0;
}

.footer-section a:hover {
    color: var(--accent-blue);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: var(--spacing-sm);
    color: var(--light-gray);
}

.footer-contact-item i {
    color: var(--accent-blue);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: var(--spacing-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    color: var(--white);
}

.footer-social a:hover {
    background: var(--accent-blue);
    transform: translateY(-4px);
    color: var(--white);
}

.footer-social a i {
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    color: var(--white);
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg) 0;
    text-align: center;
    color: var(--light-gray);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    /* Hide top header bar completely on mobile */
    .top-header {
        display: none !important;
    }
    
    /* Increase mobile nav width and push to bottom */
    .mobile-nav {
        width: 320px;
        height: 100vh;
        overflow-y: auto;
        padding-top: var(--spacing-lg);
        padding-bottom: 100px;
    }
    
    /* Increase mobile menu item sizes */
    .mobile-nav a {
        font-size: 16px;
        padding: 12px 15px;
        font-weight: 600;
    }
    
    .mobile-nav .submenu a {
        font-size: 15px;
        padding: 10px 15px;
    }
    
    .mobile-nav .submenu-level-2 a {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    :root {
        --spacing-3xl: 60px;
        --spacing-2xl: 48px;
    }
    
    .cta-image {
        width: 380px;
        margin-left: -40px;
        margin-top: auto;
        margin-bottom: -70px !important;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 1px;
        text-align: center;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero {
        min-height: 500px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-top: 15px;
    }
    
       
    
    .hero-features {
        justify-content: center;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .services-feature-visual {
        margin-top: var(--spacing-xl);
        border-radius: var(--radius-lg);
    }

    .services-feature-visual img {
        height: clamp(220px, 48vw, 360px);
    }
    
    .cta-section {
        padding: var(--spacing-3xl) 0 0 0 !important;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-wrapper {
        flex-direction: column;
        gap: var(--spacing-xl);
        align-items: center;
    }
    
    .cta-image {
        display: none;
    }
    
    .cta-content {
        order: 1;
    }
    
    .engineer-image {
        display: block;
        margin-bottom: 0 !important;
    }
    
    .cta-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .service-card,
    .news-card {
        padding: var(--spacing-md);
    }

    .services-feature-visual img {
        height: 210px;
    }
    
    .cta-section {
        padding: var(--spacing-2xl) 0 0 0 !important;
    }
    
    .cta-image {
        display: none !important;
    }
    
    .engineer-image {
        margin-bottom: 0 !important;
    }
    
    .cta-section h2 {
        font-size: 22px;
    }
    
    .cta-section p {
        font-size: 15px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.bg-light { 
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1588%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='url(%26quot%3b%23SvgjsLinearGradient1589%26quot%3b)'%3e%3c/rect%3e%3cpath d='M1267.6813279006758 599.1081098101082L1307.890223035142 475.75797330172105 1196.5622858820257 497.39793214120834z' fill='rgba(28%2c 83%2c 142%2c 0.3)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M400.8649107450451 196.00796378342568L494.12634320551365 303.2929692981246 508.14991625974403 102.74653132295711z' fill='rgba(28%2c 83%2c 142%2c 0.3)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M301.7123106959468 188.70896817390107L430.10825817955526 278.6127784775017 520.0120684831559 150.21683099389327 391.61612099954743 60.31302069029263z' fill='rgba(28%2c 83%2c 142%2c 0.3)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M150.1697317732021 298.4346744079075L115.42575784944793 220.3984313035865 37.389514745126945 255.1424052273407 72.13348866888113 333.1786483316617z' fill='rgba(28%2c 83%2c 142%2c 0.3)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M924.9570957076562-37.21146732770647L826.859696376598-28.62905696486332 835.4421067394411 69.46834236619492 933.5395060704993 60.88593200335177z' fill='rgba(28%2c 83%2c 142%2c 0.3)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M1042.1593009777955 511.2532672434637L1044.4225723841955 388.3054663962474 949.5110716114358 438.7708065302695z' fill='rgba(28%2c 83%2c 142%2c 0.3)' class='triangle-float1'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1588'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='15.28%25' y1='139.29%25' x2='84.72%25' y2='-39.29%25' gradientUnits='userSpaceOnUse' id='SvgjsLinearGradient1589'%3e%3cstop stop-color='%23f9fafb' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(92%2c 144%2c 211%2c 0.05)' offset='0.57'%3e%3c/stop%3e%3cstop stop-color='rgba(102%2c 155%2c 223%2c 0.08)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3cstyle%3e %40keyframes float1 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-10px%2c 0)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float1 %7b animation: float1 5s infinite%3b %7d %40keyframes float2 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-5px%2c -5px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float2 %7b animation: float2 4s infinite%3b %7d %40keyframes float3 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(0%2c -10px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float3 %7b animation: float3 6s infinite%3b %7d %3c/style%3e%3c/defs%3e%3c/svg%3e");
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.bg-light > * {
    position: relative;
    z-index: 1;
}

/* Services Page Circle Pattern */
.services-bg-pattern {
    background-color: #ffffff !important;
}

.services-bg-pattern::before {
    background-image: url("data:image/svg+xml,%3Csvg id='visual' viewBox='0 0 1800 900' width='1800' height='900' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1'%3E%3Cg fill='none' stroke='%23cdcdcd' stroke-width='2'%3E%3Ccircle r='187' cx='29' cy='882'%3E%3C/circle%3E%3Ccircle r='81' cx='244' cy='154'%3E%3C/circle%3E%3Ccircle r='183' cx='1710' cy='69'%3E%3C/circle%3E%3Ccircle r='124' cx='1124' cy='126'%3E%3C/circle%3E%3Ccircle r='83' cx='468' cy='890'%3E%3C/circle%3E%3Ccircle r='102' cx='1376' cy='713'%3E%3C/circle%3E%3Ccircle r='115' cx='929' cy='485'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E") !important;
    opacity: 0.4 !important;
}

.bg-white { background: var(--white); }
.bg-blue { background: var(--primary-blue); }
.bg-gradient { background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue)); }

.text-blue { color: var(--primary-blue); }
.text-gray { color: var(--text-medium); }
.text-white { color: var(--white); }

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.lightbox.show {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: fadeInUp 0.3s ease;
}

.lightbox-content img {
    max-width: 1200px;
    max-height: 800px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1400px) {
    .lightbox-content img {
        max-width: 90vw;
        max-height: 80vh;
    }
}

@media (max-width: 768px) {
    .lightbox-content img {
        max-width: 95vw;
        max-height: 70vh;
    }
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    background: rgba(0, 86, 157, 0.9);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10001;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover {
    background: var(--accent-blue);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 163, 224, 0.4);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    background: rgba(0, 86, 157, 0.9);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10001;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lightbox-nav:hover {
    background: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 163, 224, 0.4);
}

.lightbox-nav-prev {
    left: 30px;
}

.lightbox-nav-next {
    right: 30px;
}

.lightbox-caption {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    color: var(--white);
    text-align: center;
    z-index: 10001;
}

@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
    }
    
    .lightbox-nav-prev {
        left: 15px;
    }
    
    .lightbox-nav-next {
        right: 15px;
    }
    
    .lightbox-caption {
        bottom: 15px;
        max-width: 90%;
        font-size: 14px;
        padding: 12px 16px;
    }
}

/* ========================================
   NOTIFICATION
   ======================================== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: translateX(400px);
    transition: var(--transition-base);
    z-index: 9999;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-success {
    border-left: 4px solid var(--success);
}

.notification-success i {
    color: var(--success);
    font-size: 24px;
}

/* ========================================
   FOOTER RESPONSIVE
   ======================================== */
/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .footer-logo img {
        height: 90px;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    .footer-logo img {
        height: 90px;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .footer-logo img {
        height: 60px;
    }
}

.notification-error {
    border-left: 4px solid var(--error);
}

.notification-error i {
    color: var(--error);
    font-size: 24px;
}

/* ===========================
   GENERIC PAGE CONTENT STYLES
   =========================== */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Expose-Black', sans-serif;
}

.page-content h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--accent-blue);
    padding-bottom: 1rem;
}

.page-content h2 {
    font-size: 2rem;
}

.page-content h3 {
    font-size: 1.5rem;
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-content blockquote {
    border-left: 4px solid var(--accent-blue);
    padding: 1.5rem;
    margin: 2rem 0;
    background: rgba(0, 86, 157, 0.05);
    border-radius: 8px;
    font-style: italic;
    color: var(--text-dark);
}

.page-content a {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.page-content a:hover {
    border-bottom-color: var(--accent-blue);
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.page-content table th {
    background: var(--primary-blue);
    color: white;
    padding: 1rem;
    text-align: left;
    font-family: 'Expose-Bold', sans-serif;
}

.page-content table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.page-content table tr:last-child td {
    border-bottom: none;
}

.page-content table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

/* Responsive for page content */
@media (max-width: 768px) {
    .page-content {
        font-size: 1rem;
    }
    
    .page-content h1 {
        font-size: 1.8rem;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
    }
    
    .page-content h3 {
        font-size: 1.3rem;
    }
}

/* ===========================
   POPUP MODAL STYLES
   =========================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-small {
    width: 400px;
}

.popup-medium {
    width: 600px;
}

.popup-large {
    width: 800px;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: var(--primary-blue);
    transform: rotate(90deg);
}

.popup-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.popup-image img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-content {
    padding: 30px;
    color: var(--text-dark);
    line-height: 1.8;
}

.popup-content h1,
.popup-content h2,
.popup-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.popup-content p {
    margin-bottom: 15px;
}

.popup-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.popup-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 86, 157, 0.3);
}

.popup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 86, 157, 0.4);
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {
    .popup-small,
    .popup-medium,
    .popup-large {
        width: 95%;
        max-width: none;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .popup-footer {
        padding: 0 20px 20px;
    }
}

/* ============================================
   METAL EFFECT PROMO BANNER (Inline - Desktop Only)
   ============================================ */
.metal-promo-inline {
    position: relative;
    overflow: hidden;
    padding: 8px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    border-radius: 25px;
    margin-left: 20px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ============================================
   MOBILE PROMO BANNER (Small Text)
   ============================================ */
.mobile-promo-banner {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: linear-gradient(135deg, #00569D 0%, #00A3E0 100%);
    color: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 86, 157, 0.2);
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.mobile-promo-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 157, 0.3);
}

.metal-promo-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.metal-promo-inline .metal-text {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #e0e0e0 30%,
        #b0b0b0 50%,
        #d0d0d0 70%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    animation: metalPulse 2s ease-in-out infinite;
}

@keyframes metalPulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)) brightness(1.15);
    }
}

/* Hide on mobile and tablet */
@media (max-width: 1024px) {
    .metal-promo-inline {
        display: none;
    }
}

/* Show mobile banner on mobile and tablet only */
@media (max-width: 1024px) {
    .mobile-promo-banner {
        display: flex !important;
    }
}

/* Hide mobile banner on desktop */
@media (min-width: 1025px) {
    .mobile-promo-banner {
        display: none !important;
    }
}

/* ============================================
   PAGE HERO SECTION (Corporate Design)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.page-breadcrumb a:hover {
    color: #fff;
}

.page-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.page-breadcrumb .current {
    color: #fff;
    font-weight: 600;
}

/* ============================================
   PAGE CONTENT SECTION (Pattern Enhanced)
   ============================================ */
.page-content-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.content-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.pattern-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.05;
    pointer-events: none;
}

.pattern-left {
    top: -30px;
    left: -50px;
    background: 
        radial-gradient(circle at 50% 50%, #2a5298 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, #2a5298 2px, transparent 2px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
}

.pattern-right {
    bottom: -30px;
    right: -50px;
    background: 
        linear-gradient(45deg, transparent 48%, #2a5298 48%, #2a5298 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, #2a5298 48%, #2a5298 52%, transparent 52%);
    background-size: 30px 30px;
}

.page-content-box {
    background: #fff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.page-content-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.page-content-box:hover::before {
    opacity: 0.1;
}

/* Content Typography */
.page-content-box h1,
.page-content-box h2 {
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-content-box h1 {
    font-size: 36px;
    border-bottom: 3px solid #2a5298;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.page-content-box h2 {
    font-size: 28px;
    margin-top: 40px;
}

.page-content-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.page-content-box img {
    border-radius: 4px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Default: full width responsive */
.page-content-box img:not([style*="width"]) {
    max-width: 100%;
    height: auto;
}

/* Respect inline width from TinyMCE but keep responsive */
.page-content-box img[style*="width"] {
    max-width: 100%;
    height: auto;
}

.page-content-box ul,
.page-content-box ol {
    margin: 20px 0 20px 30px;
    color: #444;
}

.page-content-box li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* ============================================
   CALL TO ACTION SECTION
   ============================================ */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(255, 255, 255, 0.08) 30px,
            rgba(255, 255, 255, 0.08) 31px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 30px,
            rgba(255, 255, 255, 0.08) 30px,
            rgba(255, 255, 255, 0.08) 31px
        );
    z-index: 0;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 50px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    z-index: 1;
}

.cta-icon {
    font-size: 48px;
    color: #fff;
    flex-shrink: 0;
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    }

.cta-button .btn-light {
    background: #fff;
    color: #1e3c72;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-content-box {
        padding: 40px;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .pattern-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-content-box {
        padding: 30px 20px;
    }
    
    .page-content-box h1 {
        font-size: 28px;
    }
    
    .page-content-box h2 {
        font-size: 24px;
    }
    
    .page-content-box p {
        font-size: 16px;
    }
    
    .cta-content h3 {
        font-size: 22px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Page Content Section */
.contact-page-content {
    padding: 60px 0;
    background: #fff;
}

.contact-page-content .page-content-box {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-page-content .page-content-box h2 {
    color: #1e3c72;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2a5298;
}

.contact-page-content .page-content-box h3 {
    color: #2a5298;
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.contact-page-content .page-content-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.contact-page-content .page-content-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.contact-page-content .page-content-box ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-page-content .page-content-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.contact-page-content .page-content-box strong {
    color: #1e3c72;
    font-weight: 600;
}

.contact-page-content .page-content-box em {
    color: #666;
    font-style: italic;
}

/* Contact Info Cards Section */
.contact-info-section {
    padding: 80px 0 60px;
    background: #f8f9fa;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2a5298, #1e3c72);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2a5298;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    color: #1e3c72;
    gap: 12px;
}

.contact-info-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.contact-info-link:hover i {
    transform: translateX(3px);
}

/* Contact Form Intro Section */
.contact-form-intro {
    padding: 40px 0 20px;
    background: #fff;
}

.contact-form-intro .section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 15px;
}

.contact-form-intro .section-header p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* Contact Map Intro Section */
.contact-map-intro {
    padding: 60px 0 40px;
    background: #f8f9fa;
}

.contact-map-intro .section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 15px;
}

.contact-map-intro .section-header p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* Contact Form Section */
.contact-form-section {
    padding: 40px 0 80px;
    background: #fff;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-column {
    position: relative;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2a5298, #1e3c72);
    border-radius: 2px;
}

.section-header p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-top: 20px;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 5px solid #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
    animation: slideInDown 0.5s ease-out;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 5px solid #dc3545;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert i {
    font-size: 20px;
}

/* Contact Form Styles */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #2a5298;
    font-size: 14px;
}

.required {
    color: #dc3545;
    font-weight: 700;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 0 4px rgba(42, 82, 152, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.field-error {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #ffe0e0 0%, #ffd0d0 100%);
    border-left: 5px solid #dc3545;
    border-radius: 8px;
    color: #c92a2a;
    font-size: 14px;
    font-weight: 700;
    animation: fadeInShake 0.5s ease-out;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.15);
}

.field-error i {
    color: #dc3545;
    font-size: 16px;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes fadeInShake {
    0% { 
        opacity: 0;
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(5px);
    }
    100% { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.form-submit {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
}

.form-note {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.form-note i {
    color: #2a5298;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-sidebar-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.sidebar-card-header {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-card-header i {
    font-size: 24px;
}

.sidebar-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.contact-details-list {
    padding: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-detail-item:first-child {
    padding-top: 0;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1) 0%, rgba(30, 60, 114, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 20px;
    color: #2a5298;
}

.contact-detail-content {
    flex: 1;
}

.contact-detail-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-detail-content p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.contact-detail-content a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-detail-content a:hover {
    color: #1e3c72;
}

/* Social Links in Sidebar */
.contact-social-links {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-social-link i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-social-link.facebook {
    color: #1877f2;
    background: rgba(24, 119, 242, 0.05);
}

.contact-social-link.facebook i {
    background: #1877f2;
    color: #fff;
}

.contact-social-link.facebook:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.contact-social-link.instagram {
    color: #e4405f;
    background: rgba(228, 64, 95, 0.05);
}

.contact-social-link.instagram i {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: #fff;
}

.contact-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: #fff;
    border-color: #e4405f;
}

.contact-social-link.linkedin {
    color: #0077b5;
    background: rgba(0, 119, 181, 0.05);
}

.contact-social-link.linkedin i {
    background: #0077b5;
    color: #fff;
}

.contact-social-link.linkedin:hover {
    background: #0077b5;
    color: #fff;
    border-color: #0077b5;
}

.contact-social-link.twitter {
    color: #1da1f2;
    background: rgba(29, 161, 242, 0.05);
}

.contact-social-link.twitter i {
    background: #1da1f2;
    color: #fff;
}

.contact-social-link.twitter:hover {
    background: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

/* Map Section */
.contact-map-section {
    padding: 0 0 80px;
    background: #f8f9fa;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===================================
   Services Page - Modern Design
   =================================== */

/* Services Hero Section */
.services-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.05) 40px,
            rgba(255, 255, 255, 0.05) 41px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.05) 40px,
            rgba(255, 255, 255, 0.05) 41px
        );
    z-index: 1;
}

.services-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge-modern i {
    color: #FFD700;
}

.services-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.deco-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #FFD700;
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #FFA500;
    bottom: -50px;
    left: 10%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #FF69B4;
    top: 50%;
    left: -50px;
}

/* Service Content Styling (Admin Editable Content) */
.service-showcase-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.service-showcase-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 2px;
}

.service-showcase-section.alt-section .service-showcase-content h2::after {
    background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
}

.service-showcase-grid.reverse-grid .service-showcase-content h2::after {
    background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
}

.service-showcase-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 25px 0 15px 0;
}

.service-showcase-content p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-showcase-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-showcase-content ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.service-showcase-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.service-showcase-section.alt-section .service-showcase-content ul li::before {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.service-showcase-grid.reverse-grid .service-showcase-content ul li::before {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.service-showcase-content ul li strong {
    color: var(--heading-color);
    font-weight: 600;
}

.service-showcase-content img {
    display: none !important; /* Görseller kart içinde gösteriliyor */
}

/* Service Showcase Section */
.service-showcase-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.service-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(42, 82, 152, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(243, 156, 18, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(42, 82, 152, 0.03) 40px,
            rgba(42, 82, 152, 0.03) 41px
        );
    pointer-events: none;
    z-index: 0;
}

.service-showcase-section.alt-section {
    background: #f8f9fa;
}

.service-showcase-section.alt-section::before {
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(46, 204, 113, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(42, 82, 152, 0.04) 30px,
            rgba(42, 82, 152, 0.04) 31px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 30px,
            rgba(243, 156, 18, 0.03) 30px,
            rgba(243, 156, 18, 0.03) 31px
        );
}

.service-showcase-section:first-of-type {
    padding-top: 80px;
}

.service-showcase-section:last-of-type {
    padding-bottom: 80px;
}

.service-showcase-section .container {
    position: relative;
    z-index: 1;
}

.service-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-showcase-grid.reverse-grid {
    grid-template-columns: 1fr 1fr;
}

.service-showcase-grid.reverse-grid .service-showcase-content {
    order: 2;
}

.service-showcase-grid.reverse-grid .service-showcase-image {
    order: 1;
}

/* Image Frame with Decorations */
.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(42, 82, 152, 0.02) 10px,
            rgba(42, 82, 152, 0.02) 11px
        );
    border-radius: 25px;
    z-index: -2;
    pointer-events: none;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
    position: relative;
    z-index: 1;
}

.frame-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}

.deco-purple {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    top: -30px;
    left: -30px;
    animation: float 6s ease-in-out infinite;
}

.deco-orange {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    bottom: -30px;
    right: -30px;
    animation: float 6s ease-in-out infinite 3s;
}

.deco-blue {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    bottom: -30px;
    right: -30px;
    animation: float 6s ease-in-out infinite 3s;
}

.deco-green {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    top: -30px;
    left: -30px;
    animation: float 6s ease-in-out infinite;
}

.deco-pink {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    bottom: -30px;
    right: -30px;
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -10px) rotate(5deg); }
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-badge.badge-orange {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.image-badge.badge-green {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

/* Service Content */
.service-showcase-content {
    padding: 20px;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.1) 0%, rgba(42, 82, 152, 0.1) 100%);
    border-radius: 50px;
    margin-bottom: 25px;
    border: 2px solid rgba(30, 60, 114, 0.2);
}

.content-badge.badge-orange {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
    border-color: rgba(243, 156, 18, 0.2);
}

.content-badge.badge-green {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    border-color: rgba(46, 204, 113, 0.2);
}

.badge-number {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-badge.badge-orange .badge-number {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-badge.badge-green .badge-number {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 2px;
}

.service-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 2px;
}

.title-underline.underline-orange {
    background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
}

.title-underline.underline-green {
    background: linear-gradient(90deg, #2ecc71 0%, #27ae60 100%);
}

.service-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Service Highlights */
.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #1e3c72;
}

.service-showcase-section.alt-section .highlight-card {
    background: var(--white);
}

.highlight-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.highlight-icon.icon-orange {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.highlight-icon.icon-green {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.highlight-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.highlight-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Modern Button */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.3);
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 60, 114, 0.4);
    gap: 18px;
}

.btn-modern.btn-orange {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.btn-modern.btn-orange:hover {
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4);
}

.btn-modern.btn-green {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.btn-modern.btn-green:hover {
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
}

/* Why Choose Modern Section */
.why-choose-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(155, 89, 182, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(243, 156, 18, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(46, 204, 113, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 60px,
            rgba(42, 82, 152, 0.02) 60px,
            rgba(42, 82, 152, 0.02) 61px
        );
    pointer-events: none;
    z-index: 0;
}

.why-choose-modern .container {
    position: relative;
    z-index: 1;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 80px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.1) 0%, rgba(42, 82, 152, 0.1) 100%);
    border-radius: 50px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title-big {
    font-size: 52px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.why-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-card-modern {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.why-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

.card-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.why-card-modern:hover .card-icon-modern {
    transform: scale(1.1) rotate(-5deg);
}

.icon-purple { background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%); }
.icon-orange { background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%); }
.icon-blue { background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); }
.icon-green { background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%); }
.icon-pink { background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%); }
.icon-yellow { background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%); }

.why-card-modern h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.why-card-modern p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.card-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    bottom: -30px;
    right: -30px;
    transition: all 0.3s ease;
}

.why-card-modern:hover .card-decoration {
    transform: scale(1.5);
    opacity: 0.15;
}

.deco-purple { background: #9b59b6; }
.deco-orange { background: #f39c12; }
.deco-blue { background: #3498db; }
.deco-green { background: #2ecc71; }
.deco-pink { background: #e91e63; }
.deco-yellow { background: #f1c40f; }

/* Responsive Design */
@media (max-width: 992px) {
    .service-showcase-section {
        padding: 50px 0;
    }
    
    .service-showcase-section:first-of-type {
        padding-top: 60px;
    }
    
    .service-showcase-section:last-of-type {
        padding-bottom: 60px;
    }
    
    .service-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-showcase-grid.reverse-grid {
        grid-template-columns: 1fr;
    }
    
    .service-showcase-grid.reverse-grid .service-showcase-content {
        order: 1;
    }
    
    .service-showcase-grid.reverse-grid .service-showcase-image {
        order: 2;
    }
    
    .services-hero-title {
        font-size: 42px;
    }
    
    .service-title {
        font-size: 36px;
    }
    
    .section-title-big {
        font-size: 38px;
    }
    
    .why-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 0 40px;
    }
    
    .services-hero-title {
        font-size: 28px;
    }
    
    .services-hero-desc {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .service-showcase-section {
        padding: 40px 0;
    }
    
    .service-showcase-section:first-of-type {
        padding-top: 50px;
    }
    
    .service-showcase-section:last-of-type {
        padding-bottom: 50px;
    }
    
    .service-showcase-grid {
        gap: 30px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .service-description {
        font-size: 15px;
    }
    
    .service-showcase-content {
        padding: 10px;
    }
    
    .highlight-card {
        padding: 15px;
        gap: 15px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .highlight-content h4 {
        font-size: 16px;
    }
    
    .highlight-content p {
        font-size: 14px;
    }
    
    .frame-decoration {
        width: 80px;
        height: 80px;
    }
    
    .image-badge {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .btn-modern {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .section-title-big {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .why-choose-modern {
        padding: 60px 0;
    }
    
    .section-header-modern {
        margin-bottom: 50px;
    }
    
    .why-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card-modern {
        padding: 30px 20px;
    }
    
    .card-icon-modern {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .card-number {
        font-size: 50px;
    }
    
    .contact-page-content {
        padding: 40px 0;
    }
    
    .contact-page-content .page-content-box {
        padding: 30px 20px;
    }
    
    .contact-page-content .page-content-box h2 {
        font-size: 24px;
    }
    
    .contact-page-content .page-content-box h3 {
        font-size: 20px;
    }
    
    .contact-info-section {
        padding: 60px 0 40px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-submit {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   Service Detail Page Styles
   =================================== */

/* Service Detail Hero */
.service-detail-hero {
    padding: 40px 0 30px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
}

.service-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.03) 40px,
            rgba(255, 255, 255, 0.03) 41px
        );
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-base);
}

.breadcrumb-nav a:hover {
    color: var(--white);
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-nav .current {
    color: var(--white);
    font-weight: 600;
}

/* Service Detail Content */
.service-detail-content {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* Service Detail Header */
.service-detail-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-medium);
}

.meta-item i {
    color: var(--primary-blue);
    font-size: 16px;
}

/* Service Detail Image */
.service-detail-image {
    margin: 40px 0;
}

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Service Main Image with Pattern */
.service-main-image-wrapper {
    margin: 40px auto;
    max-width: 700px;
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.05) 0%, rgba(42, 82, 152, 0.05) 100%);
    border-radius: 20px;
}

.service-main-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(30, 60, 114, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(30, 60, 114, 0.03) 20px,
            rgba(30, 60, 114, 0.03) 21px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(255, 107, 0, 0.03) 20px,
            rgba(255, 107, 0, 0.03) 21px
        );
    border-radius: 20px;
    z-index: 0;
}

.service-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
    display: block;
}

/* Service Gallery Grid */
.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.service-gallery-grid .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.05) 0%, rgba(42, 82, 152, 0.05) 100%);
    padding: 15px;
}

.service-gallery-grid .gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(30, 60, 114, 0.04) 15px,
            rgba(30, 60, 114, 0.04) 16px
        );
    z-index: 0;
}

.service-gallery-grid .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.service-gallery-grid .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}

/* Service Detail Typography */
.service-detail-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 50px 0 25px 0;
    position: relative;
    padding-bottom: 15px;
}

.service-detail-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 2px;
}

.service-detail-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 30px 0 15px 0;
}

.service-detail-wrapper h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 20px 0 10px 0;
}

.service-detail-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Service Highlights Grid */
.service-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.highlight-box {
    padding: 35px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid;
    transition: var(--transition-base);
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.highlight-purple {
    border-color: #9b59b6;
}

.highlight-orange {
    border-color: #f39c12;
}

.highlight-blue {
    border-color: #3498db;
}

.highlight-box i {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.highlight-purple i {
    color: #9b59b6;
}

.highlight-orange i {
    color: #f39c12;
}

.highlight-blue i {
    color: #3498db;
}

.highlight-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.highlight-box p {
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* Service Features List */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-features-list li {
    padding: 18px 0 18px 45px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    border-bottom: 1px solid #e0e0e0;
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 18px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.service-features-list li strong {
    color: var(--heading-color);
    font-weight: 600;
}

/* Service Process */
.service-process {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 20px;
    margin: 50px 0;
}

.service-process h2 {
    margin-top: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.process-step h4 {
    font-size: 18px;
    margin: 0 0 10px 0;
}

.process-step p {
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

/* Service Benefits */
.service-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 40px;
    border-radius: 20px;
    margin: 50px 0;
}

.service-benefits h3 {
    font-size: 28px;
    margin: 0 0 30px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 24px;
    color: #2ecc71;
}

.benefit-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
}

/* Service Detail CTA */
.service-detail-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 40px 50px;
    border-radius: 20px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.service-detail-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(255, 255, 255, 0.05) 30px,
            rgba(255, 255, 255, 0.05) 31px
        );
}

.service-detail-cta > * {
    position: relative;
    z-index: 1;
}

.service-detail-cta .cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.service-detail-cta .cta-text {
    flex: 1;
}

.service-detail-cta h3 {
    font-size: 28px;
    color: var(--white);
    margin: 0 0 8px 0;
}

.service-detail-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Related Services */
.related-services {
    margin-top: 80px;
}

.related-services h2 {
    text-align: center;
    margin-bottom: 50px;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.related-service-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    text-decoration: none;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.related-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.related-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    transition: var(--transition-base);
}

.related-service-card:hover .related-icon {
    transform: scale(1.1) rotate(-5deg);
}

.related-service-card h4 {
    font-size: 22px;
    color: var(--heading-color);
    margin: 0 0 12px 0;
}

.related-service-card p {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0 0 20px 0;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-base);
}

.related-service-card:hover .read-more {
    gap: 12px;
}

/* Responsive - Service Detail */
@media (max-width: 1200px) {
    .service-detail-wrapper {
        max-width: 95%;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .service-detail-wrapper {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .service-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-gallery-grid .gallery-item:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 30px 0 20px;
    }
    
    .service-detail-content {
        padding: 50px 0;
    }
    
    .service-detail-header h1 {
        font-size: 32px;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-detail-wrapper h2 {
        font-size: 28px;
    }
    
    .service-main-image-wrapper {
        max-width: 100%;
        padding: 20px;
        margin: 30px 0;
    }
    
    .service-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-gallery-grid .gallery-item:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    
    .service-gallery-grid .gallery-item img {
        height: 220px;
    }
    
    .service-detail-cta {
        flex-direction: column;
        padding: 30px 25px;
        text-align: center;
    }
    
    .service-detail-cta h3 {
        font-size: 22px;
    }
    
    .service-process {
        padding: 30px 20px;
    }
    
    .service-benefits {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .service-detail-wrapper {
        padding: 0 10px;
    }
    
    .service-main-image-wrapper {
        padding: 15px;
        margin: 20px 0;
    }
    
    .service-gallery-grid .gallery-item img {
        height: 180px;
    }
}

/* ========================================
   PATTERN THEME SYSTEM
   ========================================
   
   Tutarlı arka plan desenleri sağlayan merkezi sistem.
   Kullanım: {pattern-name}-pattern class'ını ilgili elemente ekleyin.
   
   Örnekler:
   <div class="hero-section dry-pattern">...</div>
   <div class="content-section grid-pattern">...</div>
*/

/* Temel Pattern Yapısı */
.pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* 1. Dry Pattern - Otomotiv sayfasında kullanılan */
.dry-pattern {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
}

/* 2. Grid Pattern - Kare grid desen */
.grid-pattern {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* 3. Dot Pattern - Nokta desen */
.dot-pattern {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 15px 15px;
}

/* 4. Hexagonal Pattern - Altıgen desen */
.hex-pattern {
    background-image: 
        url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="hexagons" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M10,5 L15,2.5 L20,5 L20,10 L15,12.5 L10,10 Z" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.8"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>');
}

/* 5. Cross Pattern - Çarpı desen */
.cross-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

/* 6. Wave Pattern - Dalga desen */
.wave-pattern {
    background-image: 
        url('data:image/svg+xml,<svg width="100" height="20" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q25,0 50,10 T100,10" stroke="rgba(255,255,255,0.08)" stroke-width="1" fill="none"/></pattern></defs><rect width="100%" height="100%" fill="url(%23waves)"/></svg>');
}

/* 7. Circle Pattern - Daire desen */
.circle-pattern {
    background-image: 
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="circles" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="45" cy="45" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="15" cy="45" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="45" cy="15" r="1" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23circles)"/></svg>');
}

/* 8. Industrial Pattern - Endüstriyel desen */
.industrial-pattern {
    background-image: 
        url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="industrial" width="80" height="80" patternUnits="userSpaceOnUse"><rect width="80" height="80" fill="none"/><path d="M0,20 L80,20 M20,0 L20,80 M40,0 L40,80 M60,0 L60,80 M0,40 L80,40 M0,60 L80,60" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23industrial)"/></svg>');
}

/* 9. Diamond Pattern - Elmas desen */
.diamond-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%) -8px 0,
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%) -8px 0,
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%) -8px 0,
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%) -8px 0;
    background-size: 16px 16px;
}

/* 10. Noise Pattern - Gürültü desen */
.noise-pattern {
    background-image: 
        url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.1 0"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.4;
}

/* Özel Renkli Pattern'lar */
.dry-pattern-blue {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 86, 157, 0.03) 10px,
        rgba(0, 86, 157, 0.03) 20px
    );
}

.dry-pattern-green {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(16, 185, 129, 0.03) 10px,
        rgba(16, 185, 129, 0.03) 20px
    );
}

.dry-pattern-purple {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(139, 92, 246, 0.03) 10px,
        rgba(139, 92, 246, 0.03) 20px
    );
}
