﻿.mega-column h4, .mega-column h3 {
    background: linear-gradient(145deg, #E5C97A, #C8A75A, #8A6A2F) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    border-bottom-color: rgba(200, 167, 90, 0.3) !important;
}
.mega-column h4::after, .mega-column h3::after {
    background: linear-gradient(90deg, #E5C97A, #8A6A2F) !important;
}

.video-section {
    background: rgba(0,0,0,0.7);
    padding: 60px 0;
    text-align: center;
}
.video-section .section-title {
    font-family: 'Syne', sans-serif;
    background: linear-gradient(145deg, #E5C97A, #C8A75A, #8A6A2F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.625rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.video-section video {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(200,167,90,0.2);
    outline: none;
}
.video-section p {
    font-family: 'Jost', sans-serif;
    color: #fff;
    margin-top: 20px;
    font-size: 1.325rem;
    letter-spacing: 0.5px;
}

.service-hero {
	min-height: 125vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
	background-attachment: scroll;
}

.service-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(10, 30, 60, 0.3) 0%, rgba(20, 40, 80, 0.2) 100%);
	z-index: 1;
}

.service-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 0 20px;
}

.service-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 30px;
	background: linear-gradient(145deg, #E5C97A, #C8A75A, #8A6A2F);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	color: #1a1a1a;
	box-shadow: 0 10px 30px rgba(200, 167, 90, 0.3);
}

.service-title {
	font-family: 'Syne', sans-serif;
	font-size: 3.625rem;
	font-weight: 700;
	background: linear-gradient(145deg, #E5C97A, #C8A75A, #8A6A2F);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	line-height: 1.2;
}

.service-subtitle {
	font-family: 'Jost', sans-serif;
	font-size: 1.425rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
	line-height: 1.6;
}

.service-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(145deg, #E5C97A, #C8A75A, #8A6A2F);
	color: #000000 !important;
	padding: 15px 35px;
	border-radius: 50px;
	text-decoration: none;
	font-family: 'Jost', sans-serif;
	font-weight: 600;
	font-size: 1.225rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.service-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s ease;
}

.service-cta:hover::before {
	left: 100%;
}

.service-cta:hover {
	transform: translateY(-3px);
	background: linear-gradient(145deg, #C8A75A, #E5C97A, #C8A75A);
}

.service-content {
	padding: 100px 0;
	background: rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
box-sizing: border-box;
}
                
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(200, 167, 90, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(145deg, #E5C97A, #C8A75A, #8A6A2F);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: #1a1a1a;
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.525rem;
            font-weight: 600;
            background: linear-gradient(145deg, #E5C97A, #C8A75A);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }
        
        .feature-description {
            font-family: 'Jost', sans-serif;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }
        
        .benefits-section {
            background: rgba(255, 255, 255, 0.03);
            padding: 80px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: 2.625rem;
            font-weight: 700;
            background: linear-gradient(145deg, #E5C97A, #C8A75A, #8A6A2F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            list-style: none;
            padding: 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .benefit-check {
            width: 24px;
            height: 24px;
            background: linear-gradient(145deg, #E5C97A, #C8A75A, #8A6A2F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #1a1a1a;
            font-weight: bold;
        }
        
        .benefit-text {
            font-family: 'Jost', sans-serif;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }
        
        .contact-section {
            padding: 80px 0;
            text-align: center;
        }
        
        .contact-content {
            flex-direction: column;
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-title {
            font-family: 'Syne', sans-serif;
            font-size: 2.325rem;
            font-weight: 600;
            background: linear-gradient(145deg, #E5C97A, #C8A75A, #8A6A2F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        
        .contact-text {
            font-family: 'Jost', sans-serif;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .contact-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Jost', sans-serif;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .contact-btn.primary {
            background: linear-gradient(145deg, #E5C97A, #C8A75A, #8A6A2F);
            color: #1a1a1a;
        }
        
        .contact-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .service-title {
                font-size: 2.625rem;
            }
            
            .service-subtitle {
                font-size: 1.225rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
        }