/* ==========================================================================
   VTG Consultancy — Theme Stylesheet
   ========================================================================== */

:root{
	--navy-deep:   #120d29;
	--navy:        #1b1642;
	--navy-light:  #241d54;
	--navy-card:   #211a4a;
	--navy-border: #35306a;
	--gold:        #f0c84b;
	--gold-light:  #f8dd85;
	--gold-dark:   #d9a91f;
	--text-light:  #eceafc;
	--text-muted:  #b3aed6;
	--white:       #ffffff;
	--font-head:   'Baloo 2', 'Poppins', sans-serif;
	--font-body:   'Poppins', sans-serif;
	--radius-lg:   22px;
	--radius-md:   16px;
	--radius-pill: 999px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
	margin:0;
	font-family:var(--font-body);
	background:var(--navy-deep);
	color:var(--text-light);
	line-height:1.6;
	overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-head); margin:0 0 .5em; color:var(--white); line-height:1.15; }
p{ margin:0 0 1em; }
.container{ max-width:1200px; margin:0 auto; padding:0 24px; }
section{ position:relative; padding:100px 0; }
.section-tight{ padding:60px 0; }

/* Eyebrow pill */
.eyebrow{
	display:inline-block;
	padding:8px 22px;
	border:1px solid var(--gold);
	border-radius:var(--radius-pill);
	color:var(--gold);
	font-weight:600;
	font-size:.8rem;
	letter-spacing:.06em;
	text-transform:uppercase;
	margin-bottom:22px;
}

/* Buttons */
.btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	padding:16px 34px;
	border-radius:var(--radius-pill);
	font-weight:700;
	font-size:1rem;
	cursor:pointer;
	border:2px solid transparent;
	transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
	white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-gold{
	background:linear-gradient(180deg,var(--gold-light),var(--gold-dark));
	color:var(--navy-deep);
	box-shadow:0 8px 24px rgba(240,200,75,.25);
}
.btn-gold:hover{ box-shadow:0 12px 30px rgba(240,200,75,.4); }
.btn-outline{
	background:transparent;
	border-color:var(--gold);
	color:var(--gold-light);
}
.btn-outline:hover{ background:rgba(240,200,75,.08); }
.btn-block{ width:100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
	position:sticky;
	top:0;
	z-index:100;
	background:rgba(18,13,41,.85);
	backdrop-filter:blur(10px);
	border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:16px 24px;
	max-width:1300px;
	margin:0 auto;
}
.site-logo{ display:flex; align-items:center; gap:12px; font-family:var(--font-head); font-weight:800; font-size:1.25rem; color:var(--white); }
.site-logo .logo-mark{
	width:38px; height:38px; border-radius:10px;
	background:linear-gradient(135deg,var(--gold-light),var(--gold-dark));
	color:var(--navy-deep); display:flex; align-items:center; justify-content:center;
	font-size:1rem; font-weight:800;
}
.site-logo span{ color:var(--gold); }
.site-logo img{ max-height:52px; width:auto; }
.site-logo .logo-icon{ height:52px; width:auto; border-radius:8px; }
.site-logo .logo-wordmark{ line-height:1.15; }
.site-logo .custom-logo-link img{ max-height:52px; width:auto; }

.main-nav ul{ display:flex; align-items:center; gap:34px; }
.main-nav a{
	font-weight:600; font-size:.98rem; color:var(--text-light);
	border-bottom:2px solid transparent; padding-bottom:4px; transition:color .2s, border-color .2s;
}
.main-nav a:hover{ color:var(--gold-light); border-color:var(--gold); }

.header-cta{ display:flex; align-items:center; gap:24px; }
.header-cta .btn{ padding:12px 26px; font-size:.92rem; }

.menu-toggle{ display:none; background:none; border:0; color:var(--white); font-size:1.6rem; cursor:pointer; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
	padding:90px 0 70px;
	background:
		radial-gradient(ellipse 900px 500px at 75% 20%, rgba(240,200,75,.10), transparent 60%),
		radial-gradient(ellipse 700px 600px at 10% 80%, rgba(120,90,220,.18), transparent 60%),
		linear-gradient(180deg,var(--navy-deep),var(--navy) 60%,var(--navy-deep));
}
.hero-inner{ max-width:760px; }
.hero h1{ font-size:3.4rem; font-weight:800; }
.hero h1 .highlight{ color:var(--gold); }
.hero-tagline{ color:var(--gold-light); font-style:italic; font-weight:500; letter-spacing:.03em; margin:-10px 0 18px; font-size:1rem; }
.hero-desc{ color:var(--text-muted); font-size:1.08rem; max-width:640px; }
.hero-actions{ display:flex; gap:18px; margin:32px 0 50px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:56px; flex-wrap:wrap; }
.hero-stat b{ display:block; font-family:var(--font-head); font-size:2.1rem; color:var(--gold); }
.hero-stat span{ color:var(--text-muted); font-size:.92rem; }

/* ==========================================================================
   Section headings
   ========================================================================== */
.section-head{ text-align:center; max-width:720px; margin:0 auto 60px; }
.section-head .eyebrow{ }
.section-head h2{ font-size:2.5rem; }
.section-head p{ color:var(--text-muted); }

/* ==========================================================================
   Services
   ========================================================================== */
.services{ background:var(--navy-deep); }
.services-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:24px;
}
.service-card{
	background:var(--navy-card);
	border:1px solid var(--navy-border);
	border-radius:var(--radius-lg);
	padding:30px;
	transition:transform .25s ease, border-color .25s ease;
}
.service-card:hover{ transform:translateY(-6px); border-color:var(--gold); }
.service-icon{
	width:52px; height:52px; border-radius:14px;
	background:linear-gradient(135deg,var(--gold-light),var(--gold-dark));
	display:flex; align-items:center; justify-content:center;
	font-size:1.5rem; margin-bottom:18px;
}
.service-card h3{ font-size:1.15rem; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.service-card h3 .arrow{ color:var(--gold); font-weight:400; }
.service-card p{ color:var(--text-muted); font-size:.95rem; margin:0; }

.services-banner{
	margin-top:40px;
	display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap;
}
.stat-pill{
	background:var(--navy-card); border:1px solid var(--navy-border);
	border-radius:var(--radius-md); padding:20px 40px; text-align:center;
}
.stat-pill b{ display:block; font-family:var(--font-head); font-size:2rem; color:var(--gold); }
.stat-pill span{ color:var(--text-muted); font-size:.88rem; }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why{ background:linear-gradient(180deg,var(--navy),var(--navy-deep)); }
.why-inner{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.why-left h2{ font-size:2.3rem; }
.why-left p{ color:var(--text-muted); }
.why-list{ margin-top:26px; display:flex; flex-direction:column; gap:16px; }
.why-item{
	display:flex; gap:16px; align-items:flex-start;
	background:var(--navy-card); border:1px solid var(--navy-border);
	border-radius:var(--radius-md); padding:18px 20px;
}
.why-item .ico{
	flex:0 0 auto; width:36px; height:36px; border-radius:10px;
	background:linear-gradient(135deg,var(--gold-light),var(--gold-dark));
	display:flex; align-items:center; justify-content:center; color:var(--navy-deep); font-weight:800;
}
.why-item h4{ font-size:1.02rem; margin:0 0 4px; }
.why-item p{ color:var(--text-muted); font-size:.92rem; margin:0; }

.why-stats{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.why-stat{
	background:var(--navy-card); border:1px solid var(--navy-border); border-radius:var(--radius-md);
	padding:26px; text-align:center;
}
.why-stat .ico{ font-size:1.6rem; margin-bottom:8px; }
.why-stat b{ display:block; font-family:var(--font-head); font-size:1.7rem; color:var(--white); }
.why-stat span{ color:var(--text-muted); font-size:.85rem; }

/* ==========================================================================
   Destinations / Gallery
   ========================================================================== */
.destinations{ background:var(--navy-deep); }
.dest-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.dest-card{
	position:relative; border-radius:var(--radius-lg); overflow:hidden; height:220px;
	background:linear-gradient(135deg,var(--navy-light),var(--navy-card));
	border:1px solid var(--navy-border);
	display:flex; align-items:flex-end; padding:20px;
}
.dest-card::before{
	content:""; position:absolute; inset:0;
	background:radial-gradient(circle at 30% 20%, rgba(240,200,75,.18), transparent 60%);
}
.dest-card h3{ position:relative; z-index:1; font-size:1.2rem; margin:0; }
.dest-card span{ position:relative; z-index:1; color:var(--gold-light); font-size:.85rem; font-weight:600; }

/* ==========================================================================
   Success stories / testimonials
   ========================================================================== */
.stories{ background:linear-gradient(180deg,var(--navy-deep),var(--navy)); }
.stories-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.story-card{
	background:var(--navy-card); border:1px solid var(--navy-border); border-radius:var(--radius-lg);
	padding:28px;
}
.story-stars{ color:var(--gold); letter-spacing:2px; margin-bottom:12px; }
.story-card p{ color:var(--text-muted); font-size:.95rem; }
.story-person{ display:flex; align-items:center; gap:12px; margin-top:16px; }
.story-avatar{
	width:44px; height:44px; border-radius:50%;
	background:linear-gradient(135deg,var(--gold-light),var(--gold-dark));
	display:flex; align-items:center; justify-content:center; color:var(--navy-deep); font-weight:800;
}
.story-person b{ display:block; color:var(--white); font-size:.92rem; }
.story-person span{ color:var(--text-muted); font-size:.8rem; }

/* ==========================================================================
   Contact / Consultation form
   ========================================================================== */
.contact{
	background:linear-gradient(180deg,#fbf8f1,#ffffff);
	color:#1c1638;
}
.contact-inner{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.contact-left{ position:relative; }
.contact-badge{
	position:absolute; background:#fff; border-radius:var(--radius-md);
	box-shadow:0 20px 40px rgba(20,10,60,.12); padding:18px 24px;
}
.contact-badge.badge-years{ top:10%; left:0; border-left:4px solid var(--gold); }
.contact-badge.badge-years b{ display:block; font-family:var(--font-head); font-size:1.8rem; color:var(--gold-dark); }
.contact-badge.badge-support{ top:45%; left:35%; display:flex; align-items:center; gap:12px; }
.contact-badge .ico{
	width:40px; height:40px; border-radius:10px; background:linear-gradient(135deg,var(--gold-light),var(--gold-dark));
	display:flex; align-items:center; justify-content:center; color:#1c1638;
}
.contact-badge b{ font-size:.95rem; color:#1c1638; }
.contact-badge span{ font-size:.78rem; color:#7a7492; }
.contact-visual{
	min-height:420px; border-radius:var(--radius-lg);
	background:
		radial-gradient(circle at 20% 20%, rgba(240,200,75,.35), transparent 55%),
		linear-gradient(135deg,#efe6ff,#fff7e0);
}

.contact-card{
	background:#fff; border-radius:var(--radius-lg); padding:44px;
	box-shadow:0 30px 60px rgba(20,10,60,.12);
}
.contact-card .eyebrow{ border-color:var(--gold-dark); color:var(--gold-dark); }
.contact-card h2{ color:#1c1638; font-size:2rem; }
.contact-card h2 .accent{ color:var(--gold-dark); }
.contact-card > p{ color:#6c6685; }

.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-field{
	width:100%; padding:14px 16px; border-radius:12px;
	border:1px solid #e2ddf0; background:#faf9fd; color:#1c1638; font-family:var(--font-body); font-size:.95rem;
}
select.form-field{ appearance:none; background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9'><path d='M1 1l6 6 6-6' stroke='%23847e9c' stroke-width='2' fill='none'/></svg>"); background-repeat:no-repeat; background-position:right 16px center; }
textarea.form-field{ resize:vertical; min-height:110px; }
.form-field:focus{ outline:none; border-color:var(--gold-dark); }
.form-note{ font-size:.78rem; color:#8b84a6; margin-top:10px; text-align:center; }
.form-success{ background:#eafaf0; border:1px solid #b7e9c9; color:#237a4a; padding:14px 18px; border-radius:12px; margin-bottom:20px; font-size:.9rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background:var(--navy-deep); border-top:1px solid var(--navy-border); padding:60px 0 24px; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; margin-bottom:40px; }
.footer-brand .footer-logo-icon{ height:64px; width:auto; border-radius:10px; margin-bottom:10px; }
.footer-brand .footer-tagline{ color:var(--gold-light); font-style:italic; font-size:.88rem; margin-bottom:10px; }
.footer-brand p{ color:var(--text-muted); font-size:.92rem; }
.footer-col h4{ font-size:1rem; margin-bottom:16px; color:var(--white); }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ color:var(--text-muted); font-size:.92rem; }
.footer-col a:hover{ color:var(--gold-light); }
.social-row{ display:flex; gap:10px; margin-top:16px; }
.social-row a{
	width:36px; height:36px; border-radius:50%; border:1px solid var(--navy-border);
	display:flex; align-items:center; justify-content:center; font-size:.85rem;
}
.social-row a:hover{ border-color:var(--gold); color:var(--gold); }
.footer-bottom{
	border-top:1px solid var(--navy-border); padding-top:22px;
	display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
	color:var(--text-muted); font-size:.85rem;
}
.back-to-top{
	position:fixed; right:26px; bottom:26px; width:46px; height:46px; border-radius:50%;
	background:var(--gold); color:var(--navy-deep); display:flex; align-items:center; justify-content:center;
	box-shadow:0 10px 24px rgba(0,0,0,.3); opacity:0; pointer-events:none; transition:opacity .3s, transform .3s; z-index:99;
}
.back-to-top.show{ opacity:1; pointer-events:auto; }
.back-to-top:hover{ transform:translateY(-4px); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:980px){
	.hero h1{ font-size:2.5rem; }
	.services-grid{ grid-template-columns:repeat(2,1fr); }
	.why-inner, .contact-inner{ grid-template-columns:1fr; }
	.dest-grid{ grid-template-columns:repeat(2,1fr); }
	.stories-grid{ grid-template-columns:1fr; }
	.footer-top{ grid-template-columns:1fr 1fr; }
	.contact-visual, .contact-left{ display:none; }
}
@media (max-width:760px){
	.main-nav, .header-cta .btn-outline{ display:none; }
	.menu-toggle{ display:block; }
	.main-nav.open{
		display:flex; position:absolute; top:100%; left:0; right:0;
		background:var(--navy); flex-direction:column; padding:20px; border-bottom:1px solid var(--navy-border);
	}
	.main-nav.open ul{ flex-direction:column; gap:18px; }
	.services-grid{ grid-template-columns:1fr; }
	.hero-stats{ gap:30px; }
	.form-row{ grid-template-columns:1fr; }
	.footer-top{ grid-template-columns:1fr; }
	section{ padding:70px 0; }
}
